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


/* Large Laptop (1200-1399) */
@media (max-width: 1399px) {
    .header-search {
        flex: 0 1 280px;
        max-width: 280px;
    }
    
    .header-nav-link {
        padding: 10px 14px;
        font-size: 12px;
    }
}


/* Small Laptop (992-1199) */
@media (max-width: 1199px) {
    .header-inner {
        gap: 15px;
    }
    
    .header-search {
        display: none;
    }
    
    .header-search-toggle {
        display: flex !important;
    }
    
    .header-nav-link {
        padding: 8px 12px;
        font-size: 11px;
    }
}


/* Tablet (768-991) */
@media (max-width: 991px) {
    .header-inner {
        height: 65px;
        padding: 0 15px;
    }
    
    .site-header.is-sticky + .header-spacer {
        height: 65px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo img {
        height: 45px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .header-action-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .header-badge {
        min-width: 18px;
        height: 18px;
        font-size: 9px;
    }
}


/* Mobile Large (576-767) */
@media (max-width: 767px) {
    .header-inner {
        height: 60px;
        padding: 0 12px;
        gap: 8px;
    }
    
    .site-header.is-sticky + .header-spacer {
        height: 60px;
    }
    
    .header-logo img {
        height: 38px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
        .logo-sub {
        display: block;
        font-size: 8px;
        letter-spacing: 2px;
        margin-top: 2px;
    }
    
    .header-action-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }
    
    .mobile-menu {
        width: 300px;
    }
    
    .search-overlay {
        padding-top: 70px;
    }
    
    .search-overlay-content {
        width: 95%;
        padding: 20px;
    }
}


/* Mobile Small (Below 576) */
@media (max-width: 575px) {
    .header-inner {
        height: 56px;
        padding: 0 10px;
    }
    
    .site-header.is-sticky + .header-spacer {
        height: 56px;
    }
    
    .header-logo img {
        height: 34px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .header-action-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .header-badge {
        min-width: 16px;
        height: 16px;
        font-size: 8px;
        top: 0;
        right: 0;
    }
    
    .mobile-menu-toggle {
        width: 34px;
        height: 34px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
    
    /* Hide wishlist on small screens */
    .header-actions .header-action-btn[aria-label="Wishlist"] {
        display: none;
    }
}


/* Extra Small (Below 360) */
@media (max-width: 359px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .logo-main {
        font-size: 14px;
    }
}
/* Mobile Small - keep Decorations visible but tiny */
@media (max-width: 575px) {
    .logo-sub {
        display: block;
        font-size: 7px;
        letter-spacing: 1.5px;
        margin-top: 2px;
    }
}