/**
 * Lisenziya.az - Header Minimization & Mobile-First Override
 * Version: 1.0.0
 * Date: 2026-01-17
 * 
 * Bu faylı header.tpl-də yükləyin və istənilməyən elementləri gizlədər
 */

/* ============================================
   HIDE UNNECESSARY HEADER ELEMENTS
   ============================================ */

/* Login/Register/Account links - gizlət */
.userWelcome,
.fbAccountBox,
.facebook-login,
#top-links .dropdown,
#top-links .list-inline {
    display: none !important;
}

/* Shopping Cart - gizlət */
#cart,
.cart-btn,
button[data-toggle="dropdown"]:has(.fa-shopping-cart) {
    display: none !important;
}

/* Wishlist - gizlət */
#wishlist-total,
a[href*="wishlist"] {
    display: none !important;
}

/* Compare - gizlət */
#compare-total,
a[href*="compare"] {
    display: none !important;
}

/* Checkout link - gizlət */
a[href*="checkout"] {
    display: none !important;
}

/* ============================================
   MINIMAL HEADER LAYOUT
   ============================================ */

/* Hide header-top-bar completely */
.header-top-bar {
    display: none !important;
}

/* Remove body padding since header is gone */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Header container optimization */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 0;
    overflow: visible;
}

/* Header Top Bar - Logo + Language */
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background: #fff;
}

/* Logo - Left side */
#logo {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

#logo a {
    display: block;
}

#logo svg,
#logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Language Switcher - Right side */
#language-switcher {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin: 0;
}

#language-switcher .btn-link,
#language-switcher .dropdown-toggle {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    text-decoration: none;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

#language-switcher .btn-link:hover,
#language-switcher .dropdown-toggle:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
}

#language-switcher .dropdown-menu {
    background: #ffffff;
    border: 2px solid #667eea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 8px;
    min-width: 140px;
}

#language-switcher .dropdown-menu li a {
    color: #2c3e50;
    padding: 10px 16px;
    display: block;
    transition: all 0.2s ease;
    font-weight: 500;
}

#language-switcher .dropdown-menu li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

#language-switcher img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Top bar - Hide completely (language moved to menu) */
#top {
    display: none !important;
}

/* Old header-main-container - No longer used */
.header-main-container {
    display: none !important;
}

/* Search - Hide from header (moved to separate location if needed) */
#search {
    display: none !important;
}

/* ============================================
   MOBILE-FIRST SEARCH BAR (HIDDEN)
   ============================================ */
#search .form-control {
    padding-left: 20px;
}

#search .form-control:focus {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

#search .btn {
    height: 45px;
    border-radius: 0 25px 25px 0;
    background: #e74c3c;
    border: 2px solid #e74c3c;
    color: #fff;
    padding: 0 25px;
    transition: all 0.3s ease;
}


#search .btn:hover {
    background: #c0392b;
    border-color: #c0392b;
}

#search .btn i {
    font-size: 18px;
}

/* Cart - Right side element */
#cart {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

#cart .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#cart .btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}


/* ============================================
   HAMBURGER MENU STYLE
   ============================================ */

/* Hamburger button visible */
.navbar-toggle {
    display: block !important;
    margin: 0;
    padding: 10px;
    border: none;
    background: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #2c3e50;
    height: 3px;
    width: 25px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   MOBILE HEADER LAYOUT
   ============================================ */

@media (max-width: 767px) {
    /* Header stays at top */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    /* Body padding for fixed header */
    body {
        padding-top: 80px;
    }
    
    /* Mobile logo smaller */
    #logo svg,
    #logo img {
        height: 35px !important;
    }
    
    /* Show hamburger on mobile */
    .mobile-menu-hamburger {
        display: flex !important;
    }
}
    
    #logo svg,
    #logo img {
        height: 32px !important;
        margin: 0;
    }
    
    /* Language switcher mobile - Right side, same row as logo */
    #language-switcher {
        order: 2;
        flex: 0 0 auto;
        justify-content: center;
        margin: 0 0 0 12px;
    }
    
    #language-switcher .btn-link,
    #language-switcher .dropdown-toggle {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    #language-switcher .dropdown-menu {
        right: 0;
        left: auto;
    }
    
    /* Search mobile - Full width, second row */
    #search {
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    #search .form-control {
        font-size: 14px;
        height: 40px;
    }
    
    #search .btn {
        height: 40px;
        padding: 0 20px;
    }
    
    /* Cart mobile - Hidden on mobile */
    #cart {
        display: none;
    }
    
    /* Menu collapse styling */
    .navbar-collapse {
        background: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    
    .navbar-nav {
        margin: 0;
    }
    
    .navbar-nav > li > a {
        padding: 15px 20px;
        border-bottom: 1px solid #ecf0f1;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .navbar-nav > li > a:hover {
        background: #f8f9fa;
        color: #e74c3c;
    }
}

/* ============================================
   TABLET OPTIMIZATION (768px - 1024px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1024px) {
    .header-main-container {
        padding: 12px 20px;
        gap: 15px;
    }
    
    #logo svg,
    #logo img {
        height: 60px;
    }
    
    #language-switcher {
        margin-left: 15px;
    }
    
    #search {
        max-width: 400px;
    }
}

/* ============================================
   TABLET & DESKTOP OPTIMIZATION
   ============================================ */

@media (min-width: 768px) {
    /* Desktop header - no top bar */
    header {
        top: 0;
    }
    
    #logo {
        padding: 0;
        margin: 0 auto;
    }
    
    #language-switcher {
        margin-left: 20px;
    }
    
    #search {
        max-width: 500px;
    }
    
    /* Menu horizontal */
    .navbar-collapse {
        padding: 0;
    }
    
    .navbar-nav > li > a {
        padding: 15px 20px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav > li > a:hover {
        background: #e74c3c;
        color: #fff;
    }
    
    /* Dropdown styling */
    .dropdown-menu {
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin-top: 0;
    }
}

/* ============================================
   LANGUAGE/CURRENCY SWITCHER (if needed)
   ============================================ */

.language-switcher,
.currency-switcher {
    display: inline-block;
    margin: 0 10px;
}

.language-switcher select,
.currency-switcher select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* ============================================
   CLEAN UNUSED SPACES
   ============================================ */

/* Remove extra paddings and margins */
.header-middle,
.header-bottom {
    padding: 0;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Reduce repaints */
.navbar,
header {
    will-change: transform;
    backface-visibility: hidden;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus styles */
a:focus,
button:focus,
input:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

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

@media (max-width: 768px) {
    /* Ensure header-top-bar is hidden on mobile */
    .header-top-bar,
    #logo,
    #language-switcher {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Remove all body padding on mobile */
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Header should not take space */
    header {
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    /* Hamburger button positioning */
    .mobile-menu-hamburger {
        position: fixed !important;
        top: 8px !important;
        left: 8px !important;
        z-index: 10000 !important;
    }
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 0;
}
/**
 * Mobile Navigation Menu - Styles
 * Lisenziya.az - Mobile-First Redesign
 * Author: AI Assistant
 * Date: 2026-01-18
 * 
 * Components:
 * 1. Hamburger Button
 * 2. Overlay Menu
 * 3. Backdrop
 * 4. Menu Items & Submenus
 * 5. WhatsApp Sticky Button
 * 6. Animations
 */

/* ========== HAMBURGER BUTTON ========== */
.mobile-menu-hamburger {
    display: flex !important; /* Show on all screens */
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-hamburger:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.mobile-menu-hamburger:hover .hamburger-line {
    background: #fff;
}

.mobile-menu-hamburger:active {
    transform: scale(0.95);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.mobile-menu-hamburger.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-menu-hamburger.active .hamburger-line {
    background: #fff;
}

.mobile-menu-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== BACKDROP ========== */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* ========== OVERLAY MENU ========== */
.mobile-menu-overlay {
    /* Header section styling */
}

.mobile-menu-top-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo svg,
.mobile-menu-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-menu-language {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-language .btn-group,
.mobile-menu-language form {
    margin: 0;
}

.mobile-menu-language .btn-link {
    color: #333;
    font-size: 14px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mobile-menu-language .btn-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 16px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active {
    left: 0;
}

/* ========== MENU HEADER ========== */
.mobile-menu-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* Logo and Language in Menu Header */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.mobile-menu-logo a {
    display: block;
}

.mobile-menu-logo svg,
.mobile-menu-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.mobile-menu-language {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-language .language {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu-language .btn-group {
    width: auto;
    position: relative;
}

.mobile-menu-language .btn-link {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

.mobile-menu-language .btn-link img {
    width: 20px;
    height: auto;
    border-radius: 3px;
}

.mobile-menu-language .btn-link .fa {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mobile-menu-language .btn-group.open .btn-link .fa {
    transform: rotate(180deg);
}

.mobile-menu-language .btn-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.mobile-menu-language .dropdown-menu {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    margin-top: 5px !important;
    min-width: 150px !important;
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1000 !important;
    padding: 5px 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.mobile-menu-language .btn-group.open .dropdown-menu {
    display: block !important;
}

.mobile-menu-language .dropdown-menu li {
    list-style: none;
}

.mobile-menu-language .dropdown-menu li a {
    color: #333 !important;
    padding: 10px 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.2s ease !important;
}

.mobile-menu-language .dropdown-menu li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
}

.mobile-menu-language .dropdown-menu li a img {
    width: 18px;
    height: auto;
}

/* ========== NAVIGATION ========== */
.mobile-menu-nav {
    padding: 10px 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #667eea;
}

.mobile-menu-link:active {
    background: #e9ecef;
}

.mobile-menu-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.mobile-menu-text {
    flex: 1;
}

.mobile-menu-item-toggle {
    font-size: 24px;
    color: #999;
    transition: transform 0.3s ease;
    cursor: pointer;
    padding: 5px 10px;
    margin-right: -10px;
}

.mobile-menu-item-toggle.active {
    transform: rotate(90deg);
    color: #667eea;
}

/* ========== SUBMENU ========== */
.mobile-menu-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-submenu.active {
    max-height: 500px;
}

.mobile-menu-subitem {
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-subitem:last-child {
    border-bottom: none;
}

.mobile-menu-sublink {
    display: block;
    padding: 14px 20px 14px 65px;
    color: #555;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.mobile-menu-sublink:hover {
    background: #fff;
    color: #667eea;
    padding-left: 70px;
}

.mobile-menu-sublink:active {
    background: #e9ecef;
}

/* ========== WHATSAPP STICKY BUTTON ========== */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9996;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ========== BODY LOCK ========== */
body.mobile-menu-open {
    overflow: hidden !important;
}

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

/* ALL SCREENS - Show hamburger, hide header elements */
.mobile-menu-hamburger {
    display: flex !important;
}

.header-top-bar,
header .header-top-bar,
#logo,
#language-switcher {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
}

#menu.navbar,
.navbar-ex1-collapse,
.navbar-toggle {
    display: none !important;
}

@media screen and (max-width: 768px) {
    /* Mobile specific adjustments */
    .mobile-menu-overlay {
        width: 85%;
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-menu-overlay {
        width: 90%;
    }
    
    .mobile-menu-hamburger {
        top: 12px;
        left: 12px;
        width: 42px;
        height: 42px;
    }
    
    .hamburger-line {
        width: 22px;
    }
    
    .whatsapp-sticky {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-sticky svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-overlay,
    .mobile-menu-backdrop,
    .hamburger-line,
    .mobile-menu-link,
    .mobile-menu-submenu,
    .whatsapp-sticky {
        transition: none;
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.mobile-menu-hamburger:focus,
.mobile-menu-close:focus,
.mobile-menu-link:focus,
.mobile-menu-sublink:focus,
.whatsapp-sticky:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-menu-overlay {
        border: 2px solid #000;
    }
    
    .mobile-menu-item {
        border-bottom-width: 2px;
    }
}
/**
 * Modern Hero Carousel Styles - Lisenziya.az
 * Mobile-First Responsive Design
 * Date: 2026-01-18
 */

/* ========== HERO CAROUSEL CONTAINER ========== */
.lz-hero-carousel {
    position: relative;
    width: 100%;
    min-height: 250px;
    background: #1a1a2e;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: block;
    clear: both;
}

.lz-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* ========== SVG LOGO OVERLAY ========== */
.lz-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lz-logo-overlay svg {
    width: 400px;
    height: auto;
    max-width: 90vw;
}

.lz-hero-carousel:hover .lz-logo-overlay {
    opacity: 0.12;
}

/* ========== CAROUSEL WRAPPER ========== */
.lz-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lz-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== CAROUSEL SLIDES ========== */
.lz-carousel-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.lz-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.lz-slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ========== SLIDE CONTENT ========== */
.lz-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.lz-slide-text {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-carousel-slide:not(.lz-slide-active) .lz-slide-text {
    opacity: 0;
    transform: translateX(-30px);
}

.lz-carousel-slide.lz-slide-active .lz-slide-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lz-slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.lz-slide-description {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ========== SLIDE BUTTON ========== */
.lz-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.lz-slide-btn:hover {
    background: rgba(255,255,255,0.95);
    color: #667eea;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.lz-slide-btn svg {
    transition: transform 0.3s ease;
}

.lz-slide-btn:hover svg {
    transform: translateX(4px);
}

/* ========== SLIDE IMAGE ========== */
.lz-slide-image {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-carousel-slide:not(.lz-slide-active) .lz-slide-image {
    opacity: 0;
    transform: translateX(30px);
}

.lz-carousel-slide.lz-slide-active .lz-slide-image {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lz-image-placeholder {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.lz-image-placeholder svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========== CAROUSEL CONTROLS ========== */
.lz-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lz-carousel-prev,
.lz-carousel-next {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.lz-carousel-prev:hover,
.lz-carousel-next:hover {
    background: rgba(255,255,255,0.95);
    border-color: #ffffff;
    color: #667eea;
    transform: scale(1.1);
}

.lz-carousel-prev:active,
.lz-carousel-next:active {
    transform: scale(0.95);
}

.lz-carousel-prev {
    margin-left: -28px;
}

.lz-carousel-next {
    margin-right: -28px;
}

/* ========== CAROUSEL INDICATORS ========== */
.lz-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.lz-indicator {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-indicator:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.2);
}

.lz-indicator-active {
    width: 40px;
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    border-color: #ffffff;
}

/* ========== RESPONSIVE - TABLET ========== */
@media screen and (max-width: 1024px) {
    .lz-hero-carousel {
        min-height: 450px;
        margin-top: 0;
    }

    .lz-carousel-slide {
        min-height: 450px;
        padding: 60px 20px;
    }

    .lz-slide-content {
        gap: 40px;
    }

    .lz-slide-title {
        font-size: 40px;
    }

    .lz-slide-description {
        font-size: 18px;
    }

    .lz-slide-image {
        flex: 0 0 280px;
    }

    .lz-logo-overlay svg {
        width: 500px;
    }

    .lz-carousel-prev,
    .lz-carousel-next {
        width: 48px;
        height: 48px;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media screen and (max-width: 768px) {
    .lz-hero-carousel {
        min-height: 280px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .lz-carousel-slide {
        min-height: 280px;
        padding: 25px 15px 50px 15px;
    }

    .lz-slide-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .lz-slide-text {
        max-width: 100%;
    }

    .lz-slide-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .lz-slide-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .lz-slide-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .lz-slide-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 240px;
        order: -1;
    }

    .lz-logo-overlay svg {
        width: 350px;
    }

    .lz-carousel-controls {
        padding: 0 10px;
    }

    .lz-carousel-prev,
    .lz-carousel-next {
        width: 44px;
        height: 44px;
    }

    .lz-carousel-prev {
        margin-left: 0;
    }

    .lz-carousel-next {
        margin-right: 0;
    }

    .lz-carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .lz-indicator {
        width: 10px;
        height: 10px;
    }

    .lz-indicator-active {
        width: 32px;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE ========== */
@media screen and (max-width: 480px) {
    .lz-hero-carousel {
        min-height: 260px;
    }

    .lz-carousel-slide {
        min-height: 260px;
        padding: 20px 15px 45px 15px;
    }

    .lz-slide-title {
        font-size: 26px;
    }

    .lz-slide-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .lz-slide-btn {
        padding: 12px 24px;
        font-size: 15px;
        gap: 8px;
    }

    .lz-slide-btn svg {
        width: 16px;
        height: 16px;
    }

    .lz-slide-image {
        max-width: 200px;
    }

    .lz-logo-overlay svg {
        width: 280px;
    }

    .lz-carousel-prev,
    .lz-carousel-next {
        width: 40px;
        height: 40px;
    }

    .lz-carousel-prev svg,
    .lz-carousel-next svg {
        width: 20px;
        height: 20px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .lz-carousel-track,
    .lz-slide-text,
    .lz-slide-image,
    .lz-slide-btn,
    .lz-carousel-prev,
    .lz-carousel-next,
    .lz-indicator {
        animation: none;
        transition: none;
    }

    .lz-slide-background::after {
        animation: none;
    }

    .lz-image-placeholder {
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.lz-carousel-prev:focus,
.lz-carousel-next:focus,
.lz-indicator:focus,
.lz-slide-btn:focus {
    outline: 3px solid rgba(255,255,255,0.8);
    outline-offset: 4px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .lz-slide-title {
        text-shadow: none;
    }

    .lz-slide-description {
        text-shadow: none;
    }

    .lz-carousel-prev,
    .lz-carousel-next {
        border-width: 3px;
    }

    .lz-indicator {
        border-width: 3px;
    }
}

/* ========== LOADING STATE ========== */
.lz-hero-carousel.lz-loading {
    min-height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lz-hero-carousel.lz-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: carouselSpin 0.8s linear infinite;
    z-index: 100;
}

@keyframes carouselSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .lz-hero-carousel {
        min-height: auto;
        page-break-inside: avoid;
    }

    .lz-carousel-controls,
    .lz-carousel-indicators {
        display: none;
    }

    .lz-carousel-slide {
        page-break-inside: avoid;
    }
}
/**
 * Modern Menu Styles - Desktop & Mobile
 * Lisenziya.az Professional Design
 * Date: 2026-01-18
 */

/* ========== DESKTOP MENU MODERN DESIGN ========== */
#menu.navbar {
    display: none !important;
}

#menu .nav > li {
    position: relative;
    margin: 0;
    list-style: none;
}

#menu .nav > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

#menu .nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: #fff;
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s ease;
}

#menu .nav > li > a:hover,
#menu .nav > li.open > a,
#menu .nav > li.active > a {
    background: rgba(255,255,255,0.15);
}

#menu .nav > li > a:hover::after,
#menu .nav > li.open > a::after,
#menu .nav > li.active > a::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Arrow */
#menu .nav > li.dropdown > a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

#menu .nav > li.dropdown.open > a::before,
#menu .nav > li.dropdown:hover > a::before {
    transform: rotate(180deg);
}

/* ========== DROPDOWN MENU ========== */
#menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 280px;
    background: #fff;
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 15px 0;
    margin: 0;
    z-index: 1000;
    animation: dropdownFadeIn 0.3s ease;
}

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

#menu .dropdown:hover .dropdown-menu {
    display: block;
}

#menu .dropdown-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
}

#menu .dropdown-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 200px;
    flex: 1;
}

#menu .dropdown-inner ul li {
    margin: 0;
    padding: 0;
}

#menu .dropdown-inner ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

#menu .dropdown-inner ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    color: #667eea;
    font-weight: bold;
}

#menu .dropdown-inner ul li a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding-left: 25px;
    transform: translateX(5px);
}

#menu .dropdown-inner ul li a:hover::before {
    opacity: 1;
    transform: translateX(10px);
}

/* See All Link */
#menu .see-all {
    display: block;
    text-align: center;
    padding: 12px 20px;
    margin: 15px 15px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#menu .see-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ========== MOBILE OPTIMIZATIONS ========== */
@media (max-width: 991px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    #menu #logo svg,
    #menu #logo img {
        height: 35px;
    }
    
    #menu .nav > li > a {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    /* Hide desktop menu on mobile - show hamburger instead */
    #menu.navbar {
        display: none !important;
    }
}

/* ========== MOBILE BURGER MENU REDESIGN ========== */
@media (max-width: 768px) {
    .mobile-menu-hamburger {
        display: flex !important;
    }
}

/* Enhanced Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active {
    left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-menu-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 10px 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #667eea;
    padding-left: 25px;
}

.mobile-menu-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.mobile-menu-text {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.mobile-menu-item-toggle {
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease, color 0.2s ease;
    cursor: pointer;
    padding: 5px 10px;
    margin-right: -5px;
    font-weight: bold;
}

.mobile-menu-item-toggle.active {
    transform: rotate(90deg);
    color: #667eea;
}

/* Mobile Submenu */
.mobile-menu-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-submenu.active {
    max-height: 1000px;
}

.mobile-menu-subitem {
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-subitem:last-child {
    border-bottom: none;
}

.mobile-menu-sublink {
    display: block;
    padding: 14px 20px 14px 65px;
    color: #555;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-sublink::before {
    content: '→';
    position: absolute;
    left: 45px;
    opacity: 0;
    transition: all 0.2s ease;
    color: #667eea;
}

.mobile-menu-sublink:hover {
    background: #fff;
    color: #667eea;
    padding-left: 70px;
}

.mobile-menu-sublink:hover::before {
    opacity: 1;
    left: 50px;
}

/* ========== ANIMATION & TRANSITIONS ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== FOCUS STATES (ACCESSIBILITY) ========== */
#menu .nav > li > a:focus,
#menu .dropdown-inner a:focus,
#menu .see-all:focus,
.mobile-menu-link:focus,
.mobile-menu-sublink:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
    #menu .dropdown-menu {
        border: 2px solid #000;
    }
    
    #menu .dropdown-inner ul li a:hover {
        border: 2px solid #fff;
    }
}
/* ============================================
   Footer Minimal Modern Design
   ============================================ */

:root {
    --footer-primary: #667eea;
    --footer-secondary: #764ba2;
    --footer-bg: #0a0a0a;
    --footer-card-bg: #141414;
    --footer-text: #e8e8e8;
    --footer-text-muted: #888888;
    --footer-border: rgba(255, 255, 255, 0.06);
}

/* Main Footer Container */
.footer-modern {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 0;
    margin-top: 0;
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    clear: both;
}

/* Footer Top Section */
.footer-top {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 0;
}

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--footer-primary) 0%, var(--footer-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 14px;
    color: var(--footer-text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--footer-text-muted);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--footer-primary) 0%, var(--footer-secondary) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--footer-primary);
}

.footer-social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.footer-social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Footer Column Title */
.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--footer-text);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--footer-primary) 0%, var(--footer-secondary) 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--footer-primary) 0%, var(--footer-secondary) 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-text);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--footer-primary);
    font-size: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: 12px;
    color: var(--footer-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    font-size: 14px;
    color: var(--footer-text);
}

.footer-contact-value a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-value a:hover {
    color: var(--footer-primary);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-bg);
    padding: 25px 0;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--footer-text-muted);
    margin: 0;
}

.footer-copyright strong {
    color: var(--footer-text);
    font-weight: 600;
}

.footer-payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-payment-label {
    font-size: 12px;
    color: var(--footer-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

.footer-payment-icons {
    display: flex;
    gap: 10px;
}

.footer-payment-icon {
    width: 45px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--footer-text-muted);
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.footer-payment-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--footer-primary);
}

/* WhatsApp Floating Button */
.footer-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.footer-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.footer-whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-col-title {
        font-size: 14px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-payment-methods {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo {
        font-size: 22px;
    }
    
    .footer-social-icons {
        gap: 10px;
    }
    
    .footer-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    
    .footer-contact-value {
        font-size: 13px;
    }
    
    .footer-payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ============================================
   MODERN CATEGORY PAGE - OPTIMIZED & CLEAN
   Last Updated: January 18, 2026
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    --color-primary: #2c3e50;
    --color-secondary: #667eea;
    --color-tertiary: #a0aec0;
    --color-white: #ffffff;
    --color-success: #25D366;
    --card-radius: 12px;
    --card-height: 180px;
    --transition-speed: 0.3s;
}

/* ============================================
   CATEGORY HEADER - GRADIENT DESIGN
   ============================================ */

.category-header-gradient-wrap {
    margin: 40px auto 35px auto;
    max-width: 800px;
    padding: 0 20px;
}

.category-header-gradient-border {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    padding: 3px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.category-header-gradient-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 18px;
    padding: 30px 35px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   SUBCATEGORY GRADIENT CARDS
   ============================================ */

.category-gradient-section {
    margin: 0 0 30px 0;
    padding: 0 20px;
}

.category-gradient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.ccs-traceWrap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ccs-traceWrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.ccs-traceCard {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 14px;
    padding: 18px 14px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card-text {
    color: #fff;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}

.ccs-traceWrap:hover .category-card-text {
    color: #f093fb;
}

/* Gradient Animation */
@keyframes ccs-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.ccs-traceWrap:hover {
    animation: ccs-rotate 3s linear infinite;
}

/* Register gradient as animatable property */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-color-1 {
    syntax: "<color>";
    initial-value: #667eea;
    inherits: false;
}

@property --gradient-color-2 {
    syntax: "<color>";
    initial-value: #764ba2;
    inherits: false;
}

/* ============================================
   MATERIAL DESIGN GRID LAYOUT
   ============================================ */

#content .row.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 0 0 40px 0;
}

#content .row.product-grid::before,
#content .row.product-grid::after {
    content: none;
    display: none;
}

/* Force product cards to work with CSS Grid */
.product-layout,
.product-layout.product-list,
.product-layout.col-xs-12,
#content .product-layout {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    display: block !important;
}

.card-info .card-title-link {
    color: inherit;
    text-decoration: none;
}

.card-info .card-title-link:hover {
    color: var(--color-secondary);
}

/* ============================================
   MATERIAL DESIGN HORIZONTAL CARD
   ============================================ */

.mdc-card.bottom-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: var(--card-height);
    border-radius: var(--card-radius);
    background-color: var(--color-primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    animation: revealCard 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation-fill-mode: backwards;
    position: relative;
}

.mdc-card.bottom-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

/* Card First Half (Image Section) */
.bottom-card .first-half {
    height: 100%;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--card-radius);
    position: relative;
    overflow: hidden;
}

/* Top Card (Floating Image) */
.media-image.top-card {
    width: 140px;
    height: 140px;
    z-index: 2;
    margin-left: -70px;
    background-color: var(--color-secondary);
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.bottom-card:hover .media-image.top-card {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.media-image.top-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Last Half (Info Section) */
.bottom-card .last-half {
    height: 100%;
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Card Info */
.card-info {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-info h2 {
    font-weight: 700;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-secondary);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

.card-info h4 {
    font-weight: 600;
    font-size: 20px;
    font-family: 'Barlow', sans-serif;
    color: var(--color-white);
    margin: 0;
}

/* WhatsApp Button */
.card-info .btn-whatsapp {
    background: var(--color-success);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.card-info .btn-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
    text-decoration: none;
}

.card-info .btn-whatsapp i {
    font-size: 16px;
}

/* ============================================
   LEGACY SUPPORT (Hidden - Not Used)
   ============================================ */

.product-thumb {
    display: none !important;
}

.result-pagination {
    display: none !important;
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */

.load-more-section {
    margin: 50px 0 40px 0;
    text-align: center;
}

.load-more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.load-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

.load-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.load-more-button:active {
    transform: translateY(-1px);
}

.load-more-button svg {
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.load-more-spinner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
}

.load-more-spinner .spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealCard {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.product-layout:nth-child(1) .mdc-card { animation-delay: 0.05s; }
.product-layout:nth-child(2) .mdc-card { animation-delay: 0.1s; }
.product-layout:nth-child(3) .mdc-card { animation-delay: 0.15s; }
.product-layout:nth-child(4) .mdc-card { animation-delay: 0.2s; }
.product-layout:nth-child(5) .mdc-card { animation-delay: 0.25s; }
.product-layout:nth-child(6) .mdc-card { animation-delay: 0.3s; }
.product-layout:nth-child(7) .mdc-card { animation-delay: 0.35s; }
.product-layout:nth-child(8) .mdc-card { animation-delay: 0.4s; }

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

/* Override responsive.css for 590-767px */
@media (min-width: 590px) and (max-width: 767px) {
    #content .row.product-grid,
    #content .row.product-grid.row {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    .product-layout,
    .product-layout.product-list,
    .product-layout.product-grid,
    .product-layout.col-xs-12 {
        width: 100% !important;
        float: none !important;
        display: block !important;
    }
}

/* Override responsive.css for 480-590px */
@media (min-width: 480px) and (max-width: 589px) {
    #content .row.product-grid,
    #content .row.product-grid.row {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    .product-layout,
    .product-layout.product-list,
    .product-layout.product-grid,
    .product-layout.col-xs-12 {
        width: 100% !important;
        float: none !important;
        display: block !important;
    }
}

/* Mobile: Single column - Same design as desktop */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #content {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Force single column */
    #content .row.product-grid,
    #content .row.product-grid.row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .product-layout,
    .product-layout.col-xs-12,
    .product-layout.col-sm-12,
    #content .product-layout {
        width: 100% !important;
        float: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Keep same design as desktop - only stack vertically */
    .mdc-card.bottom-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: var(--card-height);
        border-radius: var(--card-radius);
        background-color: var(--color-primary);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        min-height: 180px;
    }

    .mdc-card.bottom-card:hover {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
        transform: translateY(-4px);
    }
    
    .bottom-card .first-half {
        height: 100%;
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--card-radius);
        position: relative;
        overflow: hidden;
    }
    
    .media-image.top-card {
        width: 140px;
        height: 140px;
        z-index: 2;
        margin-left: -70px;
        background-color: var(--color-secondary);
        border-radius: var(--card-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: all var(--transition-speed) ease;
    }

    .bottom-card:hover .media-image.top-card {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }
    
    .media-image.top-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .bottom-card .last-half {
        height: 100%;
        width: 55%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px;
        position: relative;
    }
    
    .card-info {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .card-info h2 {
        font-weight: 700;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        color: var(--color-secondary);
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 44px;
    }
    
    .card-info h4 {
        font-weight: 600;
        font-size: 20px;
        font-family: 'Barlow', sans-serif;
        color: var(--color-white);
        margin: 0;
    }
    
    .card-info .btn-whatsapp {
        background: var(--color-success);
        color: var(--color-white);
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition-speed) ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        text-decoration: none;
        width: auto;
        max-width: 100%;
    }
    
    .card-info .btn-whatsapp:hover {
        background: #20ba5a;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        color: var(--color-white);
        text-decoration: none;
    }
    
    .card-info .btn-whatsapp i {
        font-size: 16px;
    }
    
    /* Category header - Mobile */
    .category-header-gradient-wrap {
        margin: 25px auto 22px auto;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .category-header-gradient-border {
        border-radius: 16px;
        padding: 2.5px;
    }
    
    .category-header-gradient-card {
        border-radius: 14px;
        padding: 20px 18px;
        min-height: 60px;
    }
    
    .category-header-title {
        font-size: clamp(18px, 5vw, 26px);
        letter-spacing: 0.3px;
    }
    
    /* Subcategory cards - Mobile */
    .category-gradient-section {
        margin: 0 0 20px 0;
        padding: 0;
    }
    
    .category-gradient-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .ccs-traceWrap {
        border-radius: 14px;
        padding: 2px;
    }
    
    .ccs-traceCard {
        border-radius: 13px;
        padding: 14px 10px;
        min-height: 55px;
    }
    
    .category-card-text {
        font-size: clamp(11px, 2.5vw, 13px);
        font-weight: 600;
    }
    
    #content {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Load More Button - Mobile */
    .load-more-section {
        margin: 30px 10px 40px 10px;
    }
    
    .load-more-button {
        padding: 14px 28px;
        font-size: 13px;
        min-width: 200px;
    }
    
    .load-more-button svg {
        width: 18px;
        height: 18px;
    }
    
    .load-more-spinner {
        font-size: 14px;
    }
    
    .load-more-spinner .spinner {
        width: 20px;
        height: 20px;
        border-width: 2.5px;
    }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    #content .row.product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Desktop: 2 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    #content .row.product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Large Desktop: 2-3 columns */
@media (min-width: 1200px) {
    #content .row.product-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 24px;
    }
    
    /* Sidebar Active */
    #column-left + #content .row.product-grid,
    #content + #column-right .row.product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sidebar Active: Base styles */
#column-left + #content .row.product-grid,
#content + #column-right .row.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.card-info .btn-whatsapp:focus {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

/* ============================================
   EMPTY STATE
   ============================================ */

#content p:only-child {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    font-size: 18px;
    color: #757575;
}
