/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #222;
    padding-top: 72px;
    padding-bottom: 60px;
}

/* Header Styling (Fixed Steady on Scroll & Centered) */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    max-width: 650px;
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo Image Styling */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* Pill Search Bar */
.search-bar-container {
    flex: 1;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    overflow: hidden;
    background: #ffffff;
    padding: 4px 4px 4px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.search-form:focus-within {
    border-color: #00728f;
    box-shadow: 0 0 0 3px rgba(0, 114, 143, 0.12);
}

.search-input-wrap {
    flex: 1;
}

.search-form input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f2937;
    background: transparent;
}

.search-form input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background-color: #00728f;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.search-btn:hover {
    background-color: #005a71;
}

/* Wishlist Heart Icon */
.wishlist-icon {
    display: flex;
    align-items: center;
}

.wishlist-icon a {
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: color 0.2s, transform 0.2s;
}

.wishlist-icon a:hover {
    color: #e63946;
    transform: scale(1.1);
}

/* Desktop Navigation Area */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-nav a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
    color: #00728f;
    font-weight: 600;
}

/* --- HERO SECTION STYLING --- */
.hero-section {
    position: relative;
    background-image: url('../image/mainbackgroundimage.png');
    background-size: cover;
    background-position: center center;
    padding: 70px 20px 90px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    
    border-radius: 24px;
    margin: 16px 24px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #f3f4f6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Dark Translucent AI Search Box */
.ai-search-box {
    position: relative;
    z-index: 50;
    width: 100%;
    background: rgba(20, 30, 45, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ai-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
}

.ai-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ai-search-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.ai-filter-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

/* Destination Dropdown Popup Styling */
.filter-dropdown-wrapper {
    position: relative;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.22);
}

.destination-popup-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 240px;
    z-index: 9999;
    padding: 8px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.destination-popup-menu.show {
    display: block;
}

.popup-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 6px 12px;
    letter-spacing: 0.5px;
}

.destination-option {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.destination-option:hover {
    background: #f0fdf4;
    color: #00728f;
    font-weight: 600;
}

.filter-pill-plus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.filter-pill-plus:hover {
    background: rgba(255, 255, 255, 0.22);
}

.ai-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mic-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.mic-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.ai-submit-btn {
    background-color: #ffffff;
    color: #111827;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.2s;
}

.ai-submit-btn:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Prompt Suggestion Link Chips */
.prompt-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.suggestion-chip {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.suggestion-chip:hover {
    background: rgba(0, 114, 143, 0.85);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile Bottom Navigation (Hidden on Desktop) */
.mobile-bottom-nav {
    display: none;
}

/* Support Bar Styling */
.support-bar {
    background-color: #ffffff;
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #374151;
}

.support-container i {
    color: #00728f;
    font-size: 18px;
}

/* Escape Sale Promo Section */
.escape-sale-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-bottom: 1px solid #fee2e2;
    padding: 50px 24px;
}

.escape-sale-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.escape-sale-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.escape-sale-content h2 .highlight-red {
    color: #e63946;
}

.escape-sale-content p {
    font-size: 16px;
    color: #4b5563;
}

.book-tour-btn {
    background-color: #00728f;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 114, 143, 0.25);
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

.book-tour-btn:hover {
    background-color: #005a71;
    transform: translateY(-2px);
}

/* --- TOP SAFARI DESTINATIONS SECTION STYLING --- */
.top-destinations-section {
    padding: 50px 24px;
    background-color: #f9f9f9;
}

.top-destinations-section .section-header-container {
    max-width: 1300px;
    margin: 0 auto 24px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Centered Header Layout Modification */
.top-destinations-section .section-header-container.centered-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 30px;
}

.header-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.section-header-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.section-header-container p {
    color: #666;
    font-size: 15px;
}

/* Carousel Arrow Buttons */
.carousel-nav-arrows {
    display: flex;
    gap: 10px;
}

.carousel-arrow-btn {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.carousel-arrow-btn:hover {
    background-color: #00728f;
    border-color: #00728f;
    color: #ffffff;
}

/* Cards Wrapper with Hidden Scrollbar */
.safari-cards-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.safari-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.safari-cards-container {
    display: flex;
    gap: 20px;
}

.safari-card {
    min-width: 280px;
    max-width: 310px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.safari-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.safari-card-img-wrap {
    position: relative;
    height: 190px;
}

.safari-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.category-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.card-top-icons {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #4b5563;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #e63946;
}

.safari-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.safari-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.safari-meta-info, 
.safari-destinations-text, 
.safari-age-range {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

.safari-destinations-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 13px;
}

.current-price {
    font-size: 14px;
    color: #111827;
}

.current-price strong {
    font-size: 16px;
    color: #00728f;
}

.current-price small {
    font-size: 11px;
    color: #6b7280;
    font-weight: normal;
}

.card-book-btn {
    display: block;
    text-align: center;
    background: #00728f;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
    transition: background 0.2s;
}

.card-book-btn:hover {
    background: #005a71;
}

/* Responsive Styles for Mobile Devices */
@media screen and (max-width: 900px) {
    .site-header {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .header-container {
        padding: 0 12px;
        gap: 8px;
    }

    .header-left-group {
        gap: 10px;
        max-width: none;
    }

    .header-right-group {
        gap: 10px;
    }

    .logo-img {
        height: 36px;
    }

    .header-nav {
        display: none;
    }

    .search-bar-container {
        flex: 1;
        max-width: none;
    }

    .search-form {
        padding: 4px 4px 4px 12px;
    }

    .search-form input {
        font-size: 14px;
    }

    .wishlist-icon a {
        padding: 4px;
    }

    .hero-section {
        padding: 40px 16px 60px;
        min-height: auto;
        margin: 8px 10px;
        border-radius: 16px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .ai-search-box {
        padding: 10px 12px;
    }

    .ai-input-wrapper input {
        font-size: 15px;
    }

    .ai-search-controls {
        padding-top: 8px;
        gap: 6px;
    }

    .filter-pill {
        font-size: 11px;
        padding: 4px 10px;
        gap: 4px;
    }

    .filter-pill-plus {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .mic-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .ai-submit-btn {
        width: 32px;
        height: 32px;
    }

    .suggestion-chip {
        font-size: 12px;
        padding: 6px 12px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #6b7280;
        font-size: 10px;
        gap: 4px;
        flex: 1;
        transition: color 0.2s;
    }

    .mobile-nav-item i {
        font-size: 18px;
    }

    .mobile-nav-item.active,
    .mobile-nav-item:hover {
        color: #00728f;
    }

    body {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 768px) {
    .escape-sale-container {
        flex-direction: column;
        text-align: center;
    }
    .escape-sale-content h2 {
        font-size: 24px;
    }

    .support-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .support-container i {
        font-size: 22px;
        margin-bottom: 2px;
    }
    
    .top-destinations-section {
        padding: 35px 16px;
    }

    .top-destinations-section .section-header-container.centered-section-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .section-header-container h2 {
        font-size: 22px;
    }

    .section-header-container p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .carousel-arrow-btn {
        display: none;
    }
}

/* --- BEST SELLER SECTION STYLING (Chunk Scroll + White Splash Hover) --- */
.best-seller-section {
    background-color: #f9fbfd;
    padding: 50px 0;
}

.best-seller-container-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.best-seller-grid-container {
    display: grid;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px); /* 4 items layout row on desktop */
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
}

/* Card Style B (Reference Layout) */
.safari-card-style-b {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.safari-card-style-b:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-img-link {
    text-decoration: none;
}

.card-img-container {
    position: relative;
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card-style-b:hover .card-img-container img {
    transform: scale(1.06);
}

/* White Splash Screen Light Sweep Animation on Hover */
.splash-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.safari-card-style-b:hover .splash-effect {
    animation: splashSweep 0.8s ease-in-out forwards;
}

@keyframes splashSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Orange Top-Left Badge */
.orange-badge {
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #f59e0b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px 5px 10px;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Wishlist Icon Top-Right */
.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 4;
}

.wishlist-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Bottom Title Overlay with Dark Gradient */
.image-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 24px 16px 12px 16px;
    z-index: 3;
}

.image-title-overlay h3 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Clickable Content Body Link Styling */
.card-clickable-body {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-clickable-body:hover .tour-specs {
    color: #0056b3;
}

.card-content-body {
    padding: 16px;
    flex-grow: 1;
}

.tour-specs {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.2s;
}

.tour-route {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Dashed Footer Section */
.card-footer-meta {
    border-top: 1px dashed #cbd5e1;
    padding: 12px 16px;
    background: #f8fafc;
}

.operator-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.operator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #cbd5e1;
}

.operator-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 1px;
}

.rating-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #475569;
}

.rating-wrap .stars {
    color: #eab308;
    letter-spacing: 0.5px;
}

/* Responsive Grid Adaptations */
@media (max-width: 1200px) {
    .best-seller-grid-container {
        grid-auto-columns: calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .best-seller-grid-container {
        grid-auto-columns: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .best-seller-grid-container {
        grid-auto-columns: calc(85% - 10px);
    }
}