.evara-img {
    height: 228px;
    width: 100%;
    object-fit: cover;
}
/* Mobile Search Popup */
.mobile-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    padding: 20px;
    display: none;
}

.mobile-search-popup.active {
    display: block;
}

.mobile-search-popup .form-group {
    margin-top: 50px;
    position: relative;
}

.mobile-search-popup .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
}

/* Desktop Search */
.header-middle-search .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    display: none;
}

.suggestion-box a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

.suggestion-box a:hover {
    background-color: #f5f5f5;
}
.suggestion-box {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    display: none; /* Initially hidden */
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-box a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.suggestion-box a:hover {
    background-color: #f5f5f5;
}

/* Mobile specific styles */
.mobile-search-popup .suggestion-box {
    top: 100%;
    left: 0;
    right: 0;
}

/* Desktop specific styles */
.header-middle-search .suggestion-box {
    top: calc(100% + -42px);
    left: 0;
}
/* Mobile Search Popup */
.mobile-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7fdfcf2;
    z-index: 9999;
    padding: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-search-popup.active {
    display: block;
    opacity: 1;
}

.mobile-search-popup .form-group {
    margin-top: 50px;
    position: relative;
}

/* Suggestion box for mobile */
#mobile-suggestions {
    position: absolute;
    top: 6%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 10000;
    display: none;
}

/* Make sure nothing covers the search */
.mobile-search-popup .form-control {
    padding: 12px 20px;
    font-size: 16px;
}

/* Close button styling */
.close-mobile-search {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}