/* ===== Search Wrapper ===== */
.innov-search-wrap {
    position: relative;
    max-width: 520px;margin:auto;
    width: 100%;
}

/* ===== Search Box ===== */
.innov-search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

/* Input */
.innov-product-search {
    flex: 1;
    padding: 12px 14px;
    font-size: 15px;
    border: none;
    outline: none;
}

/* Search Button */
.innov-search-btn {
    background: #9b1c1c; /* change color if needed */
    border: none;
    padding: 18px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innov-search-btn img {
    width: 18px;
    height: 18px;
}

/* Hover */
.innov-search-btn:hover {
    background: #7d1414;
}

/* ===== Results Box ===== */
.innov-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

/* ===== Results List ===== */
.innov-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.innov-search-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.innov-search-list li:last-child {
    border-bottom: none;
}

.innov-search-list li:hover {
    background: #f6f6f6;
}

/* Product Image */
.innov-search-list img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
}

/* Product Title */
.innov-search-list a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    line-height: 1.3;
}

.innov-search-list a:hover {
    color: #9b1c1c;
}

/* No Results */
.innov-no-result {
    padding: 12px;
    font-size: 14px;
    color: #777;
    text-align: center;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
    .innov-search-wrap {
        max-width: 100%;
    }

    .innov-product-search {
        font-size: 14px;
        padding: 10px;
    }
}
.modal-body input {
    width: 100%;
    align-items: center;
    outline: 0;
    box-shadow: none;
    border: 0px solid #dbe0e9;
    border-radius: 4px;
    background: #fff;
    padding: 0px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
    line-height: normal;
    color: #001931;
    transition: .3s;
    height: auto;
}