/* ============================================
   HERB ON NATURALS - PREMIUM HEADER 2026
   Clean Modern Ayurvedic Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   PROMO BAR - PREMIUM GREEN
   ============================================ */

.promo-bar {
    background: linear-gradient(90deg, #1B4332 0%, #2D6A4F 50%, #1B4332 100%) !important;
    padding: 0 !important;
    height: 26px !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
    overflow: hidden;
    border-bottom: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Promo Bar - Stable View */
.promo-bar.hide-on-scroll {
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-100%);
}

.promo-bar::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, 0.1) 50%, transparent 75%);
    animation: promoShimmer 4s infinite linear;
}

.promo-bar::after {
    display: none !important;
}

@keyframes promoShimmer {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.promo-slider {
    flex: 1;
    text-align: center;
    position: relative;
    height: 20px !important;
    max-width: none !important;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    width: 100%;
    color: white !important;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    /* Option 2: Balanced - Consistent with nav */
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.promo-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.promo-slide b {
    color: #7DFFB3 !important;
    font-weight: 700;
}

.promo-links {
    position: static !important;
    display: flex;
    gap: 20px;
}

.promo-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: none !important;
}

.promo-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* ============================================
   MAIN HEADER
   ============================================ */

.professional-header {
    position: relative !important;
    top: auto !important;
    z-index: 9998 !important;
    /* Just below cart overlay */
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.professional-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    /* Stabilized: Stay with promo bar */
}

.header-main-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 4px 0 !important;
    max-width: 1400px;
    margin: 0 auto;
    height: auto !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    background: #f0f4f2 !important;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: #1B4332 !important;
    transform: scale(1.05);
}

.mobile-menu-toggle:hover .hamburger-icon span {
    background: white !important;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger-icon span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #1B4332;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Brand Logo */
.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    height: 62px !important;
    /* Option 2: Balanced - Better visibility */
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.02);
}

/* ============================================
   SEARCH BAR - CENTERED
   ============================================ */

.search-container {
    flex: 1;
    max-width: 550px !important;
    height: 44px !important;
    /* Option 2: Balanced - Better touch targets */
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fbfa !important;
    border: 1px solid #e0e7e4 !important;
    border-radius: 10px !important;
    padding: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto !important;
}

.search-container:focus-within {
    background: #ffffff !important;
    border-color: #1B4332 !important;
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.1) !important;
    transform: translateY(-1px);
}

.search-icon {
    position: absolute !important;
    left: 16px !important;
    color: #999;
    width: 18px;
    height: 18px;
    stroke: #999 !important;
    display: block !important;
}

.search-container input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 0 15px 0 46px !important;
    font-size: 14px !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #333;
    outline: none;
    height: 100%;
}

.search-container input::placeholder {
    color: #aaa;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 22px !important;
    height: 100% !important;
    background: #1B4332 !important;
    color: white !important;
    border: none;
    border-radius: 0 10px 10px 0 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 13px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #2D6A4F !important;
}

.search-button svg {
    width: 14px;
    height: 14px;
    stroke: white !important;
}

/* Search Autocomplete */
.search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #eee;
    display: block !important;
}

.search-autocomplete.active,
.search-container:focus-within .search-autocomplete {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.autocomplete-header {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 8px 12px !important;
    background: #f8f9fa !important;
    border-radius: 8px;
    border-bottom: none !important;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.autocomplete-item:hover {
    background: #f5f7f6;
}

.autocomplete-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
}

/* ============================================
   HEADER ACTION BUTTONS
   ============================================ */

.header-actions-right {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    /* Increased gap for desktop */
}

@media (min-width: 1200px) {
    .header-actions-right {
        gap: 20px !important;
    }
}

.action-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px;
    padding: 6px 14px !important;
    border-radius: 10px;
    text-decoration: none;
    color: #444 !important;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    min-width: 70px;
}

.action-link:hover {
    background: #f5f7f6;
    color: #1B4332 !important;
}

.action-link svg {
    width: 22px !important;
    height: 22px !important;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.action-text {
    font-size: 10.5px !important;
    /* Option 2: Balanced - Slightly larger */
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .action-text {
        max-width: none;
    }
}

/* Cart Badge */
.cart-count-badge {
    position: absolute;
    top: -5px !important;
    right: 6px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 4px;
    background: #ef4444 !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: 700;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: badgePulse 2s infinite;
    z-index: 2;
}

@media (max-width: 768px) {
    .cart-count-badge {
        right: 8px !important;
        top: 4px !important;
    }
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Login Dropdown */
.login-dropdown-wrapper {
    position: relative;
}

.login-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.login-dropdown-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.login-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #eee;
}

.login-dropdown-wrapper:hover .login-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f5f7f6;
    color: #1B4332;
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    color: #888;
}

.dropdown-item:hover svg {
    color: #1B4332;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.login-btn-item {
    padding: 8px;
}

.dropdown-login-btn {
    width: 100%;
    padding: 12px;
    background: #1B4332 !important;
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-login-btn:hover {
    background: #2D6A4F !important;
}

/* ============================================
   NAVIGATION - CLEAN STYLE
   ============================================ */

.main-navigation {
    background: transparent !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.main-navigation .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 12px !important;
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.nav-links li {
    margin: 0;
}

.nav-links a,
.nav-links li a {
    display: inline-flex !important;
    align-items: center;
    padding: 3px 14px !important;
    /* Option 2: Balanced - Better spacing */
    font-family: 'Outfit', sans-serif;
    font-size: 14px !important;
    /* Option 2: Balanced - Better readability */
    font-weight: 600 !important;
    color: #1a1a1a !important;
    /* Darker for premium feel */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent !important;
    /* Removed grey bubbles */
    border-radius: 0 !important;
    position: relative;
}

.nav-links a::after,
.nav-links li a::after {
    content: '' !important;
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1B4332;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    display: block !important;
}

.nav-links a:hover,
.nav-links li a:hover {
    color: #1B4332 !important;
    background: transparent !important;
    transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links li a:hover::after,
.nav-links a.active::after,
.nav-links li a.active::after {
    width: 25px;
}

/* Active state */
.nav-links a.active,
.nav-links li a.active {
    color: #1B4332 !important;
    background: transparent !important;
    font-weight: 700 !important;
}

.nav-links a.active::after,
.nav-links li a.active::after {
    width: 100% !important;
    height: 3px !important;

}

/* NEW LAUNCHES - Highlighted Red Button */
.nav-links a.highlight,
.nav-links li a.highlight {
    background: linear-gradient(135deg, #FF5252 0%, #E53935 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    margin: 2px 8px !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.nav-links a.highlight::after,
.nav-links li a.highlight::after {
    display: none !important;
}

.nav-links a.highlight:hover,
.nav-links li a.highlight:hover {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px !important;
    width: 280px !important;
    max-width: 85vw;
    height: 100vh;
    background: white !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease !important;
}

.mobile-menu-drawer.active {
    display: flex !important;
    left: 0 !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #1B4332;
    color: white;
}

.mobile-menu-links {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.mobile-menu-links a:hover {
    background: #f5f7f6;
    color: #1B4332;
}

/* ============================================
   CART DRAWER
   ============================================ */

/* ============================================
   CART DRAWER - ULTRA MODERN
   ============================================ */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 15px;
    right: -420px;
    bottom: 15px;
    width: 400px;
    max-width: calc(100vw - 30px);
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-radius: 30px 0 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

@media (max-width: 768px) {
    .cart-drawer {
        top: 0;
        bottom: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}

.cart-drawer.active {
    right: 0;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1) !important;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-header h3::before {
    content: '🛒';
    font-size: 24px;
}

.close-drawer {
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 14px;
    font-size: 20px;
    color: #1B4332;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.close-drawer:hover {
    background: #1B4332;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(27, 67, 50, 0.2) transparent;
}

.drawer-footer {
    padding: 30px 25px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.drawer-total span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drawer-total span:last-child {
    font-size: 26px;
    font-weight: 900;
    color: #1B4332;
}

.drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-btn-fast {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%) !important;
    color: white !important;
    border: none;
    border-radius: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn-fast:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(27, 67, 50, 0.45) !important;
}

.view-cart-btn {
    width: 100%;
    padding: 16px;
    background: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.view-cart-btn:hover {
    background: #e5e7eb !important;
    color: #111827 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .header-main-row {
        gap: 10px !important;
        padding: 8px 0 !important;
        flex-wrap: nowrap !important;
        /* Keep mobile compact default */
    }

    /* Aggressive wrapping for tiny screens to prevent icon cut-off */
    @media (max-width: 340px) {
        .header-main-row {
            flex-wrap: wrap !important;
            justify-content: center !important;
            gap: 12px 5px !important;
        }

        .brand-logo {
            width: 100% !important;
            text-align: center !important;
            margin-bottom: 5px !important;
        }

        .search-container {
            order: 3 !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        .header-actions-right {
            order: 2 !important;
        }
    }

    .brand-logo img {
        height: 48px !important;
        /* Balanced for tablet */
    }

    .search-container {
        max-width: 450px !important;
        /* Increased from 350px */
        height: 40px !important;
    }

    .action-text-desktop {
        display: none !important;
    }

    .action-link {
        padding: 8px 10px !important;
    }

    .nav-links a,
    .nav-links li a {
        padding: 14px 14px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 768px) {
    .professional-header {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
        padding: 8px !important;
    }

    .search-container {
        display: flex !important;
        max-width: none !important;
        flex: 1;
        height: 40px !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        background: #f0f4f2 !important;
        margin-left: 8px !important;
    }

    .search-container:focus-within {
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }

    .search-icon {
        display: none !important;
    }

    .search-container input {
        padding-left: 12px !important;
        font-size: 13px !important;
    }

    .search-button {
        padding: 0 12px !important;
        font-size: 11px !important;
        border-radius: 0 8px 8px 0 !important;
    }

    .brand-logo img {
        height: 32px !important;
    }

    .header-main-row {
        padding: 4px 0 !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .nav-links {
        padding: 10px 0 15px !important;
        gap: 8px !important;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a,
    .nav-links li a {
        padding: 8px 16px !important;
        font-size: 10px !important;
        background: #f0f4f2 !important;
        box-shadow: none !important;
    }

    .nav-links a.highlight,
    .nav-links li a.highlight {
        margin: 0 !important;
        padding: 8px 16px !important;
        background: linear-gradient(135deg, #FF5252 0%, #E53935 100%) !important;
        animation: pulseHighlight 2s infinite;
    }

    @keyframes pulseHighlight {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0.85;
        }

        100% {
            opacity: 1;
        }
    }
}

/* ============================================
   PINCODE MODAL - ULTRA MODERN 2026
   ============================================ */

.pincode-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pincode-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pincode-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(27, 67, 50, 0.1);
}

.pincode-popup-overlay.active+.pincode-popup-modal,
.pincode-popup-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.popup-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.popup-close-btn:hover {
    background: #1B4332;
    color: white;
    transform: rotate(90deg);
}

/* Location Icon Animation */
.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: floatBounce 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.15);
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.pincode-popup-modal h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.popup-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Input Group */
.popup-input-group {
    margin-bottom: 20px;
}

.popup-input-group input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 4px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.popup-input-group input::placeholder {
    letter-spacing: 0;
    color: #bbb;
}

.popup-input-group input:focus {
    border-color: #1B4332;
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.1);
}

/* Buttons */
.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.popup-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}

.popup-btn span {
    font-size: 16px;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.35);
}

.popup-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 67, 50, 0.45);
}

.popup-btn-secondary {
    background: linear-gradient(135deg, #40916C 0%, #52B788 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(64, 145, 108, 0.35);
}

.popup-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(64, 145, 108, 0.45);
}

/* Result Message */
.pincode-result {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: none;
}

.pincode-result.success {
    display: block;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.pincode-result.error {
    display: block;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

/* Footer */
.popup-footer {
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.popup-footer p {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .pincode-popup-modal {
        padding: 30px 25px;
        border-radius: 24px;
    }

    .popup-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .pincode-popup-modal h3 {
        font-size: 22px;
    }

    .popup-input-group input {
        padding: 16px 20px;
    }
}

/* Override pincode selector */
.pincode-selector-btn {
    display: flex !important;
    flex-direction: column !important;
    padding: 4px 14px !important;
}