/* Banner Search Box */
.banner-section .inner-box .banner-search-box {
    position: relative;
    max-width: 600px;
    margin: 30px auto 0;
}

.banner-section .inner-box .banner-search-box .form-group {
    position: relative;
    margin: 0;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px;
    border: 2px solid #e1e1e1;
    /* Default border */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.banner-section .inner-box .banner-search-box .form-group:focus-within {
    border-color: var(--secondary-color);
    /* Pink border on focus */
}

.banner-section .inner-box .banner-search-box input[type="search"] {
    position: relative;
    height: 50px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    outline: none;
    border-radius: 50px;
}

.banner-section .inner-box .banner-search-box button {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    /* Yellow background */
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
    margin-left: 5px;
}

.banner-section .inner-box .banner-search-box button:hover {
    background: var(--secondary-color);
}

/* Search Suggestions */
.banner-section .inner-box .banner-search-box .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    z-index: 100;
    overflow: hidden;
    text-align: left;
    padding-bottom: 5px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggestions-header {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
}

.search-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-tab {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.suggestion-tab:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
}

.suggestion-tab.active {
    border-color: var(--secondary-color);
    color: #fff;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(209, 0, 90, 0.3);
}

.suggestion-tab i {
    font-size: 11px;
}

.suggestions-list {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}

.suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.suggestions-list li {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.suggestions-list li:hover {
    background: #fff0f5;
    padding-left: 20px;
    /* Slight movement effect */
}

.suggestion-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #888;
    background: #fff;
    font-size: 12px;
    transition: all 0.2s ease;
}

.suggestions-list li:hover .suggestion-icon {
    border-color: var(--secondary-color);
    color: #fff;
    background: var(--secondary-color);
}

.suggestion-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.suggestion-subtitle {
    font-size: 11px;
    color: #999;
}

.suggestion-arrow {
    color: #ddd;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.suggestions-list li:hover .suggestion-arrow {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateX(0);
}


/* Banner Carousel Override */
.banner-carousel {
    overflow: visible !important;
}