.search-results-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left !important;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f9f9f9;
}

.search-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.search-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-content {
    flex: 1;
    text-align: left !important;
}

.search-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    text-align: left !important;
}

.search-content span {
    font-size: 12px;
    color: #888;
    display: block;
    text-align: left !important;
}

.cs-intputwrap {
    position: relative;
}

/* Custom Multi-Select Dropdown */
.custom-select-box {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 50px;
    background: #f9f9f9;
    border-radius: 4px;
    padding: 0 15px;
    line-height: 50px;
}

.custom-select-box .select-display {
    color: #495057;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 35px;
    text-align: left;
}

.custom-select-box .select-options {
    position: absolute;
    top: 100%;
    /* Opens Downward */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    z-index: 99999;
    /* Higher than scroll down element */
    max-height: 250px;
    overflow-y: auto;
    display: none;
    padding: 5px 0 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.select-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #eee;
    text-align: center;
    z-index: 100000;
}

.done-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.done-btn:hover {
    background: #333;
}

.custom-select-box .select-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
    line-height: normal;
}

.custom-select-box .select-option:hover {
    background-color: #f5f5f5;
}

.custom-select-box .select-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #fcb03a;
    cursor: pointer;
}

.custom-select-box .select-option span {
    font-size: 14px;
    color: #333;
}

.custom-select-box.active .select-options {
    display: block;
}

.custom-select-box::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 15px;
    top: 0;
    font-size: 14px;
    color: #fcb03a;
    pointer-events: none;
    transition: transform 0.3s;
}

.custom-select-box.active::after {
    transform: rotate(180deg);
}

/* Fix Z-Index Stacking Issue */
.hero-section-container,
.container.small-container,
.list-searh-input-wrap {
    position: relative;
    z-index: 999 !important;
    overflow: visible !important;
}