/* ============================================
   ZENDOTECH AUDIO — PREMIUM AUDIO STORE STYLESHEET
   ============================================ */

/* --- CSS Variables (60-30-10 Color System) ---
   60% = Blue (#3B3B98) — header, nav, footer, structural backgrounds
   30% = Red (#ea1d22) — CTA buttons, badges, promo strip, interactive
   10% = Gold (#C78A2E) — star ratings, special highlights
--- */
:root {
    --primary: #3B3B98;
    --primary-dark: #2D2D7A;
    --cta: #ea1d22;
    --cta-dark: #c81a1e;
    --secondary: #0F0F1A;
    --accent: #C78A2E;
    --accent-red: #ea1d22;
    --success: #10B981;

    --bg: #F4F5F7;
    --white: #FFFFFF;
    --card-bg: #FFFFFF;
    --border: #E0E2E8;

    --text-dark: #121218;
    --text-body: #555566;
    --text-muted: #8E8EA0;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, .06);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: .25s cubic-bezier(.4, 0, .2, 1);
    --container: 1280px;

    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Base Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Elementor full-width containment */
.elementor-section.elementor-section-stretched,
.elementor-section-wrap,
.elementor .elementor-section {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
}

input {
    font-family: inherit;
    font-size: inherit;
}

/* Sticky Header Effect */
body.is-header-sticky .main-header.is-sticky-enabled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
    animation: slideDown 0.3s ease;
    box-shadow: var(--shadow-lg);
}

body.is-header-sticky .main-header.is-sticky-enabled .header-inner {
    min-height: 60px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Mobile Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility var(--transition);
}

.mobile-drawer.active {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: left 0.3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active .drawer-content {
    left: 0;
}

.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.drawer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.drawer-close {
    font-size: 20px;
    color: var(--text-dark);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.drawer-search {
    margin-bottom: 25px;
}

.drawer-search form {
    position: relative;
}

.drawer-search input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
}

.drawer-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.mobile-nav-menu {
    margin-bottom: 30px;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu li a {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.drawer-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mobile-cat-list li a {
    display: block;
    padding: 8px 0;
    color: var(--text-body);
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta);
    color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    font-weight: 700;
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    :root {
        --container: 1140px;
    }
}

@media (max-width: 991px) {
    :root {
        --container: 960px;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container: 720px;
    }

    body {
        font-size: 13px;
    }

    .section {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    :root {
        --container: 540px;
    }

    .container {
        padding: 0 15px;
    }
}

/* --- Utility --- */
.section {
    padding: 50px 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.mt-30 {
    margin-top: 30px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--cta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--cta-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(234, 29, 34, .35);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .7);
    color: var(--white);
    background: transparent;
    padding: 10px 26px;
    border-radius: var(--radius-xl);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ===================================================
   MOBILE NAV TRIGGER
   =================================================== */
.mobile-nav-trigger {
    display: none;
}

@media (max-width: 991px) {
    .mobile-nav-trigger {
        display: block;
    }

    .mobile-nav-trigger button {
        font-size: 24px;
        color: var(--white);
    }
}

/* ===================================================
   TOP BAR
   =================================================== */
.top-bar {
    background: #3B3B98;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-text {
    font-weight: 400;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.top-links a:hover {
    color: var(--white);
}

.top-links a i {
    font-size: 11px;
}

@media (max-width: 991px) {
    .top-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Hide top bar on mobile for cleaner look */
    }
}

/* ===================================================
   MAIN HEADER
   =================================================== */
.main-header {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-inner {
        gap: 15px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 36px;
    }
}

.logo-text {
    font-size: 0;
    width: 0;
    overflow: hidden;
}

.footer-logo .logo-img {
    height: 50px;
}

.footer-logo .logo-text {
    font-size: 0;
    width: 0;
}

/* Search */
.search-bar {
    flex: 1;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    /* overflow: hidden; -- Removed to allow dropdown visibility */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
    max-width: 620px;
    border: 1px solid var(--border);
    position: relative;
}

.search-category {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
    border-right: 1px solid var(--border);
    cursor: pointer;
}

.search-cat-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.search-cat-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-cat-dropdown li {
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-dark);
    transition: background var(--transition);
    text-align: left;
}

.search-cat-dropdown li:hover {
    background: var(--bg);
    color: var(--primary);
}

.search-category i {
    font-size: 10px;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    outline: none;
    font-size: 14px;
    border-radius: 50px;
    color: var(--text-dark);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    background: var(--accent-red);
    color: var(--white);
    padding: 0 22px;
    font-size: 16px;
    transition: background var(--transition);
    border-radius: 0 50px 50px 0;
}

/* AJAX Search Results */
.ajax-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.ajax-search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.asr-loading, .asr-no-results, .asr-error {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

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

.asr-item {
    border-bottom: 1px solid var(--border);
}

.asr-item:last-child {
    border-bottom: none;
}

.asr-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    transition: background var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.asr-item a:hover {
    background: var(--bg);
}

.asr-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.asr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asr-info {
    flex: 1;
}

.asr-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
    line-height: 1.3;
    color: var(--text-dark);
}

.asr-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.asr-price del {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 5px;
}

.asr-price .woocommerce-Price-amount {
    font-weight: 800;
}

.asr-price .woocommerce-Price-currencySymbol {
    font-size: 0.75em;
    font-weight: 800;
    opacity: 0.9;
    margin-right: 1px;
    vertical-align: 0.15em;
}

/* Search Bar Wrap (Mobile) */
.search-bar-wrap {
    flex: 1;
    max-width: 620px;
}

@media (max-width: 991px) {
    .search-bar-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 33, 54, 0.98) !important;
        backdrop-filter: blur(15px);
        z-index: 9999 !important;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .search-bar-wrap.active {
        display: flex !important;
    }

    .search-bar-wrap .search-bar {
        display: flex !important;
        /* Ensure form is visible inside overlay */
        width: 100% !important;
        max-width: 500px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    }
}

@media (max-width: 991px) {
    .search-bar {
        display: none;
        /* Hide main search on tablet/mobile to use toggle */
    }

    .mobile-search-toggle {
        display: flex;
        /* Show on mobile */
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: var(--primary);
        cursor: pointer;
    }
}

/* Default state for toggle */
.mobile-search-toggle {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {

    .header-actions,
    .main-header .header-actions,
    .header-inner .header-actions {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.h-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3B3B98;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
    font-size: 18px;
}

.h-action:hover {
    background: rgba(255, 255, 255, .12);
}

@media (max-width: 768px) {
    .header-actions {
        gap: 0;
    }

    .h-action {
        padding: 8px;
        font-size: 16px;
    }

    .cart-label {
        display: none;
        /* Hide price labels on mobile */
    }
}

.badge-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cta);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-action .badge-count {
    right: auto;
    left: 24px;
    top: 2px;
}

.cart-label {
    font-size: 13px;
    font-weight: 600;
}

/* --- Shop Loading State --- */
.shop-grid {
    position: relative;
    transition: opacity 0.3s ease;
}

.shop-grid.loading::before {
    content: "\f110";
    /* fa-spinner */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: var(--primary);
    z-index: 10;
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* --- Fix Lints --- */
/* Nav Actions (Moved from Header) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
}

.qv-extra-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.nav-ac-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.2s;
    font-size: 18px;
}

.nav-ac-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.nav-ac-btn .badge-count {
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.nav-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-left: 6px;
    transition: all 0.2s;
    color: var(--text-dark);
}

.nav-cart-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-cart-icon {
    position: relative;
    font-size: 18px;
}

.nav-cart-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 74px;
    z-index: 99;
}

.nav-inner {
    display: flex;
    align-items: stretch;
}

.categories-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #3b3b98;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 0;
    white-space: nowrap;
}

.categories-trigger:hover {
    background: #1a2136;
}

.categories-trigger .chevron {
    font-size: 10px;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
}

.nav-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--accent-red);
    color: var(--white);
    padding: 2px 7px;
    border-radius: 10px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 10px;
}

.nav-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
    padding: 24px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 300px;
    gap: 20px;
    min-height: 380px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 200px minmax(0, 1fr) 250px;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-sidebar,
    .side-banners {
        display: none;
        /* Hide sidebars on mobile hero */
    }
}

/* Sidebar */
.hero-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 13px;
    color: var(--text-body);
    transition: all var(--transition);
}

.sidebar-menu li a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.sidebar-menu li a:hover {
    background: var(--bg);
    color: var(--primary);
}

.sidebar-menu li a:hover i {
    color: var(--primary);
}

.sidebar-menu li.more-link a {
    color: var(--primary);
    font-weight: 600;
    border-top: 1px solid var(--border);
}

.main-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

/* Force Swiper slides to stay within the container */
.heroSlider .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    overflow: hidden;
}

.banner-bg {
    background: linear-gradient(135deg, #1A1025 0%, #2D1B4E 50%, #1A1025 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    /* Reduced from 80px */
    position: relative;
    overflow: hidden;
    gap: 30px;
}

/* Premium Gradient Variants */
.banner-bg.bg-variant-1 {
    background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #24243E 100%);
}

.banner-bg.bg-variant-2 {
    background: linear-gradient(135deg, #16222A 0%, #3A6073 100%);
}

.banner-bg.bg-variant-3 {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.banner-img-container {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.banner-hero-img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    /*filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6));*/
    transition: transform 12s linear;
    /* Continuous movement */
}

/* Ken Burns Effect */
.swiper-slide-active .banner-hero-img {
    transform: scale(1.15) rotate(2deg);
}

.banner-content {
    flex: 1;
    z-index: 3;
    position: relative;
    color: var(--white);
}

.banner-tag {
    display: inline-block;
    background: var(--cta);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(234, 29, 34, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 35px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Staggered Animations */
.swiper-slide-active .banner-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.swiper-slide-active .banner-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.swiper-slide-active .banner-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.swiper-slide-active .banner-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.banner-price {
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 600;
}

/* Make hero slider price more conspicuous (badge + larger type). */
.heroSlider .banner-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.heroSlider .banner-price strong {
    color: var(--accent);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-left: 0;
    text-shadow: 0 0 24px rgba(199, 138, 46, 0.35);
}

/* WooCommerce price HTML (sale prices, currency, etc.) inside the hero banner. */
.heroSlider .banner-price del,
.heroSlider .banner-price del .woocommerce-Price-amount {
    opacity: 0.65;
    font-size: 0.7em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: none;
}

.heroSlider .banner-price ins,
.heroSlider .banner-price ins .woocommerce-Price-amount {
    text-decoration: none;
    color: var(--accent);
}

.heroSlider .banner-price .woocommerce-Price-amount {
    font-weight: 900;
}

/* Swiper Controls Navigation */
.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.heroSlider:hover .swiper-button-next,
.heroSlider:hover .swiper-button-prev {
    opacity: 1;
}

.heroSlider .swiper-button-next:after,
.heroSlider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}

.heroSlider .swiper-button-next:hover,
.heroSlider .swiper-button-prev:hover {
    background: var(--cta);
    border-color: var(--cta);
    box-shadow: 0 0 25px rgba(234, 29, 34, 0.4);
}

.heroSlider .swiper-button-prev {
    left: 30px;
}

.heroSlider .swiper-button-next {
    right: 30px;
}

/* Swiper Pagination */
.heroSlider .swiper-pagination {
    bottom: 40px !important;
    left: 40px !important;
    /* Adjusted from 80px */
    right: auto !important;
    width: auto !important;
}

.heroSlider .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: 0;
}

.heroSlider .swiper-pagination-bullet-active {
    background: var(--cta);
    width: 60px;
}

@media (max-width: 991px) {
    .banner-bg {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 30px;
    }

    .banner-content {
        order: 2;
    }

    .banner-img-container {
        order: 1;
        flex: 0 0 auto;
    }

    .banner-hero-img {
        max-height: 240px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-cta {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .heroSlider .swiper-pagination {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 20px !important;
    }

    .heroSlider .swiper-button-next,
    .heroSlider .swiper-button-prev {
        display: none;
    }
}

/* Side Banners */
.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    flex: 1;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition);
}

.side-card:hover {
    transform: translateY(-3px);
}

.side-yellow {
    background: linear-gradient(135deg, #EBF0FF, #D6DFFF);
}

.side-blue {
    background: linear-gradient(135deg, #EDE9FE, #C4B5FD);
}

.sc-text {
    z-index: 2;
}

.sc-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.sc-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.sc-price {
    font-size: 13px;
    color: var(--text-body);
}

.sc-price strong {
    color: var(--accent-red);
}

.side-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* ===================================================
   COMMON SECTION HEADER
   =================================================== */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    padding-left: 16px;
}

.section-head h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 4px;
    background: var(--primary);
}

.sh-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.link-arrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    gap: 10px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 4px;
}

.cd-box {
    background: var(--secondary);
    color: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 48px;
}

.cd-box span {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.cd-box small {
    font-size: 10px;
    opacity: .7;
    text-transform: uppercase;
}

.cd-sep {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 16px;
}

/* Tab Filters */
.tab-filters {
    display: flex;
    gap: 6px;
}

.tab-filters button {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    background: transparent;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.tab-filters button.active,
.tab-filters button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===================================================
   PRODUCT CARDS
   =================================================== */
.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.recent-products-section {
    padding: 50px 0;
}

.recent-products-empty {
    font-size: 15px;
    color: var(--text-muted);
    background: var(--white);
    border: 1px dashed var(--border);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.recent-products-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.recent-products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.recent-products-row--slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    flex: 1;
}

.recent-grid-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .08);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.recent-grid-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.recent-grid-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
    .recent-products-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recent-products-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .recent-products-row {
        grid-template-columns: 1fr;
    }

    .recent-products-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .recent-grid-btn {
        align-self: center;
    }
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: visible;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Image */
.pc-img {
    position: relative;
    padding: 24px;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pc-img img {
    width: 100%;
    height: 220px !important;
    object-fit: contain !important;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .pc-img img {
    transform: scale(1.08);
}

/* Tags */
.sale-tag,
.new-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
}

.sale-tag {
    background: var(--accent-red);
    color: var(--white);
}

.new-tag {
    background: var(--success);
    color: var(--white);
}

/* Overlay Actions */
.pc-overlay {
    position: absolute;
    top: 12px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.product-card:hover .pc-overlay {
    right: 12px;
    opacity: 1;
    pointer-events: auto;
}

.pc-overlay button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform: translateX(10px) scale(0.9);
}

.product-card:hover .pc-overlay button {
    transform: translateX(0) scale(1);
}

.pc-overlay button:hover {
    background: var(--cta);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(234, 29, 34, 0.25);
}

/* Stagger Animation */
.pc-overlay button:nth-child(1) {
    transition-delay: 0s;
}

.pc-overlay button:nth-child(2) {
    transition-delay: 0.05s;
}

.pc-overlay button:nth-child(3) {
    transition-delay: 0.1s;
}

/* Tooltips — positioned to the left of buttons */
.pc-overlay button::after {
    content: attr(title);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #121218;
    color: var(--white);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pc-overlay button::before {
    content: '';
    position: absolute;
    right: calc(100% + 0px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    border: 5px solid transparent;
    border-left-color: #121218;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.pc-overlay button:hover::after,
.pc-overlay button:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* Body */
.pc-body {
    padding: 16px 18px 20px;
}

.pc-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    font-weight: 600;
}

.pc-body h4 {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-body h4 a {
    color: inherit;
}

.pc-body h4 a:hover {
    color: var(--primary);
}

.pc-stars {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.pc-stars i {
    font-size: 12px;
    color: #FFC107;
}

.pc-stars span {
    margin-left: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.pc-pricing {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Premium WooCommerce price styling inside product cards (supports sale HTML). */
.pc-pricing .price {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.pc-pricing .woocommerce-Price-amount {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.pc-pricing ins {
    text-decoration: none;
}

.pc-pricing ins .woocommerce-Price-amount {
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 59, 152, .10), rgba(59, 59, 152, .04));
    border: 1px solid rgba(59, 59, 152, .12);
    box-shadow: 0 10px 22px rgba(59, 59, 152, .10);
}

.pc-pricing del,
.pc-pricing del .woocommerce-Price-amount {
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0.9;
}

.pc-pricing del {
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(142, 142, 160, .65);
}

.pc-pricing .woocommerce-Price-currencySymbol {
    font-size: 0.72em;
    font-weight: 800;
    opacity: 0.9;
    margin-right: 1px;
    vertical-align: 0.2em;
}

.new-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.atc-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-xl);
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-body);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
}

.atc-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pc-actions-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.pc-actions-grid .atc-btn {
    margin-top: 0;
    flex: 1;
    min-width: 0;
    width: auto;
}

/* Circular WhatsApp — icon only; label on hover popover */
.wa-order-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-top: 14px;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    border: 1.5px solid #25D366;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
}

.pc-actions-grid .wa-order-btn {
    margin-top: 0;
}

.wa-order-btn:hover {
    background: #128C7E;
    color: var(--white);
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-order-btn--icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 30;
}

.wa-order-btn--icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.wa-order-btn--icon:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.wa-order-btn--icon:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===================================================
   PROMO STRIP
   =================================================== */
.promo-strip {
    background: linear-gradient(90deg, var(--cta), var(--cta-dark));
    padding: 20px 0;
}

.promo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.promo-left i {
    font-size: 32px;
}

.promo-left h3 {
    font-size: 16px;
    font-weight: 600;
}

/* ===================================================
   CATEGORIES GRID
   =================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================================
   DUAL BRAND BANNERS
   =================================================== */
.dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 240px;
    transition: transform var(--transition);
}

.brand-card:hover {
    transform: translateY(-3px);
}

.bc-gradient-1 {
    background: linear-gradient(135deg, #ea1d22, #C62828);
}

.bc-gradient-2 {
    background: linear-gradient(135deg, #3B3B98, #2D2D7A);
}

.bc-info {
    z-index: 2;
    max-width: 55%;
}

.bc-brand {
    font-size: 13px;
    font-weight: 500;
    opacity: .85;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bc-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bc-info p {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 22px;
}

.brand-card img {
    position: absolute;
    right: 24px;
    bottom: 20px;
    width: 180px;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .2));
}

/* ===================================================
   TRI BANNERS
   =================================================== */
.tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tri-card {
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    overflow: hidden;
    transition: transform var(--transition);
}

.tri-card:hover {
    transform: translateY(-3px);
}

.tri-pink {
    background: linear-gradient(135deg, #EBF0FF, #D6DFFF);
}

.tri-gold {
    background: linear-gradient(135deg, #FFF0E6, #FFE0CC);
}

.tri-cyan {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
}

.tri-info span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.tri-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.tri-info a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tri-info a:hover {
    gap: 10px;
}

.tri-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* ===================================================
   NEWSLETTER CTA STRIP
   =================================================== */
.newsletter-strip {
    background: linear-gradient(135deg, var(--secondary), #2D3555);
    padding: 50px 0;
}

.ns-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ns-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ns-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

.ns-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ns-content p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

/* ===================================================
   BRAND LOGOS
   =================================================== */
.brands-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    opacity: .5;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
}

.brand-logo:hover {
    opacity: 1;
}

/* ===================================================
   FEATURES BAR
   =================================================== */
.features-bar {
    background: var(--white);
    padding: 40px 0;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.feat-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.feat-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 68, 0.85), rgba(15, 17, 68, 0.9)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&h=900&auto=format&fit=crop&q=80') center/cover;
    padding: 120px 0 80px;
    color: var(--white);
    margin-bottom: 40px;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 40, 0.4);
}

.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 0 20px;
}

.about-banner h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.about-banner p {
    max-width: 600px;
}

.about-banner .breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.about-intro {
    padding: 80px 0 60px;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: block;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-intro p {
    color: var(--text-muted);
    line-height: 1.7;
}

.about-highlights {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.about-highlights article {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.about-highlights h3 {
    margin-top: 0;
    font-size: 18px;
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.experience-badge span {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.about-focus {
    padding: 80px 0;
    background: var(--bg);
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.about-focus-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: block;
}

.about-focus-text h2 {
    font-size: 32px;
    margin-top: 0;
}

.about-focus-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.about-focus-list {
    margin: 24px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-focus-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 600;
}

.about-focus-list li::before {
    content: '\\2022';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(8, 15, 88, 0.9), rgba(12, 85, 172, 0.85)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&h=900&auto=format&fit=crop&q=80') center/cover;
    padding: 140px 0 80px;
    color: var(--white);
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 35, 0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.contact-hero p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-panel-section {
    padding: 60px 0;
}

.contact-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow: hidden;
}

.contact-panel-left,
.contact-panel-right {
    padding: 40px;
}

.contact-panel-left h2,
.contact-panel-right h2 {
    margin-top: 0;
}

.contact-panel-left .text-muted {
    margin-bottom: 20px;
}

.contact-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-panel-list li {
    display: flex;
    gap: 18px;
}

.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 97, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-panel-list strong {
    display: block;
}

.social-follow {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(13, 97, 255, 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
}

.card-form .form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom:10px;
}
.contact-form{
  background: #f4f5f7;
  padding: 25px;
  border-radius: 15px;
}
.form-row button{
    display:block !important;
}
.card-form input,
.card-form textarea {
    flex: 1;
    min-width: 200px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 16px;
    font-size: 14px;
    background: #FFF;
}

.card-form textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
}

.map-section {
    width: 100%;
}

.map-iframe iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}
/* ===================================================
   FOOTER
   =================================================== */
.main-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, .7);
}

/* Newsletter */
.footer-newsletter {
    background: var(--primary);
    padding: 0;
    position: relative;
    top: -30px;
    margin-bottom: -30px;
    border-radius: var(--radius-lg);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px);
}

.fn-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
}

.fn-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.fn-text i {
    font-size: 28px;
}

.fn-text h4 {
    font-size: 17px;
    font-weight: 700;
}

.fn-text p {
    font-size: 13px;
    opacity: .85;
}

.fn-form {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    width: 400px;
}

.fn-form input {
    flex: 1;
    border: none;
    padding: 0 18px;
    outline: none;
    border-radius: 50px 0 0 50px;
    font-size: 13px;
}

.fn-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--transition);
}

.fn-form button:hover {
    background: #e5592a;
}

/* Footer Grid */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr .8fr;
    gap: 40px;
}



.foot-desc {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
    max-width: 300px;
}

.foot-contact {
    margin-top: 20px;
}

.fc-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 8px;
}

.fc-line i {
    color: var(--primary);
}

.fc-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}

.foot-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
}

.foot-col ul li {
    margin-bottom: 12px;
}

.foot-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    transition: all var(--transition);
}

.foot-col ul li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 28px;
    color: rgba(255, 255, 255, .4);
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-inner p {
    font-size: 13px;
}

.fb-links {
    display: flex;
    gap: 24px;
}

.fb-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.fb-links a:hover {
    color: var(--white);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 300px;
    }

    .hero-sidebar {
        display: none;
    }

    .products-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        margin-top: 12px;
    }

    .products-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .side-banners {
        flex-direction: row;
    }

    .fn-inner {
        flex-direction: column;
        gap: 20px;
    }

    .fn-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header {
        padding: 12px 0;
    }

    .main-nav {
        top: 66px;
    }

    .nav-menu {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .categories-trigger {
        flex: 1;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dual-grid,
    .tri-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-logos {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .section-head {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .tab-filters {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .side-banners {
        flex-direction: column;
    }

    .section {
        padding: 30px 0;
    }

    .section-head h2 {
        font-size: 18px;
    }

    .banner-content h1 {
        font-size: 22px;
    }

    .banner-bg {
        padding: 30px;
    }

    .fb-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===================================================
   TOAST NOTIFICATIONS (JS-generated)
   =================================================== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    font-size: 14px;
    color: var(--text-dark);
    pointer-events: all;
    transform: translateX(120%);
    opacity: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border-left: 4px solid transparent;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i:first-child {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-success {
    border-left-color: #10B981;
}

.toast-success i:first-child {
    color: #10B981;
}

.toast-error {
    border-left-color: var(--cta);
}

.toast-error i:first-child {
    color: var(--cta);
}

.toast-info {
    border-left-color: var(--primary);
}

.toast-info i:first-child {
    color: var(--primary);
}

.toast-warning {
    border-left-color: #F59E0B;
}

.toast-warning i:first-child {
    color: #F59E0B;
}

.toast span {
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--text-dark);
}

/* ===================================================
   LIGHTBOX OVERLAY (JS-generated)
   =================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    background:#fff;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: transform var(--transition);
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* ===================================================
   BACK-TO-TOP BUTTON (JS-generated)
   =================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(59, 59, 152, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cta);
    box-shadow: 0 4px 14px rgba(234, 29, 34, .3);
    transform: translateY(-2px);
}

/* ===================================================
   MOBILE HAMBURGER MENU (JS-generated)
   =================================================== */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-hamburger {
        display: flex;
        align-items: center;
    }
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 40px 0 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--primary);
}

/* ===================================================
   SEARCH CATEGORY DROPDOWN (JS-generated)
   =================================================== */
.search-category {
    position: relative;
    cursor: pointer;
}

.search-cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    list-style: none;
    margin: 0;
}

.search-cat-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-cat-dropdown li {
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-body);
    cursor: pointer;
    transition: background var(--transition);
}

.search-cat-dropdown li:hover {
    background: var(--bg);
    color: var(--primary);
}

/* ===================================================
   FORM FIELD ERROR (JS-generated)
   =================================================== */
.field-error {
    display: block;
    font-size: 12px;
    color: var(--cta);
    margin-top: 6px;
    font-weight: 500;
    animation: shakeError .4s ease;
}

@keyframes shakeError {

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

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* ===================================================
   PREMIUM MINI-CART DROPDOWN (JS-generated)
   =================================================== */
.mini-cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mini-cart-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: -10px;
    width: 400px;
    max-height: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2), 0 0 0 1px rgba(0, 0, 0, .04);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.mini-cart-panel::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: var(--white);
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, .06);
    border-top: 1px solid rgba(0, 0, 0, .06);
    z-index: 1;
}

.mini-cart-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header */
.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.mc-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-header h4 i {
    color: var(--primary);
    font-size: 16px;
}

.mc-close-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--text-muted);
    font-size: 13px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.mc-close-btn:hover {
    background: var(--cta);
    color: var(--white);
}

/* Empty State */
.mc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    gap: 14px;
}

.mc-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-muted);
}

.mc-empty-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mc-empty-desc {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    max-width: 260px;
}

.mc-empty p.mc-empty-desc {
    font-weight: 500;
}

.mc-shop-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.mc-shop-link:hover {
    gap: 10px;
}

/* Cart Items Body */
.mc-body {
    overflow-y: auto;
    max-height: 260px;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .12) transparent;
}

.mc-body::-webkit-scrollbar {
    width: 5px;
}

.mc-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .12);
    border-radius: 10px;
}

/* Single Cart Item */
.mc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    transition: background var(--transition);
    position: relative;
}

.mc-item:hover {
    background: #f8f9ff;
}

.mc-item+.mc-item {
    border-top: 1px solid var(--border);
}

.mc-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--border);
}

.mc-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-item-info {
    flex: 1;
    min-width: 0;
}

.mc-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.mc-item-variant {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.mc-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

.mc-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.mc-qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: none;
    cursor: pointer;
    font-size: 9px;
    color: var(--text-body);
    transition: all var(--transition);
}

.mc-qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.mc-qty-val {
    width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    line-height: 26px;
}

.mc-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.mc-item-remove {
    position: absolute;
    top: 8px;
    right: 12px;
    opacity: 0;
    background: none;
    border: none;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    padding: 4px;
}

.mc-item:hover .mc-item-remove {
    opacity: 1;
}

.mc-item-remove:hover {
    color: var(--cta);
    transform: scale(1.15);
}

/* Footer */
.mc-footer {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    background: linear-gradient(180deg, #fafbff 0%, var(--white) 100%);
}

.mc-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mc-subtotal-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mc-count {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.mc-subtotal-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.mc-subtotal-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.mc-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #ecfdf5;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    color: #059669;
}

.mc-shipping-note i {
    font-size: 14px;
}

.mc-actions {
    display: flex;
    gap: 10px;
}

.mc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.mc-btn-outline {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
}

.mc-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0f0ff;
}

.mc-btn-primary {
    background: linear-gradient(135deg, var(--cta) 0%, #c41920 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(234, 29, 34, .25);
}

.mc-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(234, 29, 34, .35);
    transform: translateY(-1px);
}

.mc-btn-primary i {
    font-size: 11px;
    opacity: .85;
}

/* Responsive */
@media (max-width: 480px) {
    .mini-cart-panel {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        transform: translateX(100%);
    }

    .mini-cart-panel::before {
        display: none;
    }

    .mini-cart-panel.open {
        transform: translateX(0);
    }

    .mc-body {
        max-height: calc(100vh - 250px);
        flex: 1;
    }
}

/* ============================================
   COMPARE BAR & MODAL
   ============================================ */

/* ---- Compare Bar (Bottom Floating) ---- */
.compare-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, .08);
    z-index: 990;
    padding: 15px 0;
    transition: bottom .4s cubic-bezier(.4, 0, .2, 1);
    border-top: 1px solid var(--border);
}

.compare-bar.visible {
    bottom: 0;
}

.cb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cb-slots {
    display: flex;
    gap: 15px;
}

.cb-slot {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg);
    flex-shrink: 0;
}

.cb-slot.filled {
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
}

.cb-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-slot.empty i {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.cb-slot.empty span {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.cb-slot-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cta);
    color: var(--white);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s;
    z-index: 2;
}

.cb-slot:hover .cb-slot-remove {
    opacity: 1;
}

.cb-slot-name {
    display: none;
}

.cb-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-compare-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .3s;
    font-size: 14px;
}

.cb-compare-btn:hover {
    background: var(--primary-dark);
}

.cb-compare-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: .7;
}

.cb-clear-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .3s;
}

.cb-clear-btn:hover {
    color: var(--cta);
}

/* ---- Compare Modal ---- */
.compare-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.compare-modal.open {
    opacity: 1;
    visibility: visible;
}

.cm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.cm-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.compare-modal.open .cm-content {
    transform: translateY(0);
}

.cm-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cm-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cm-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .3s;
}

.cm-close:hover {
    color: var(--cta);
}

.cm-body {
    padding: 30px;
    overflow-y: auto;
}

.cm-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.cm-table th {
    text-align: left;
    padding: 20px;
    vertical-align: top;
    position: relative;
    border-bottom: 2px solid var(--primary);
}

.cm-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    transition: color .3s;
}

.cm-remove:hover {
    color: var(--cta);
}

.cm-product-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cm-product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.4;
}

.cm-row-label {
    background: #f8f9fa;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cm-table td {
    padding: 15px 20px;
    text-align: center;
    color: var(--text-body);
    font-size: 14px;
    border-right: 1px solid var(--border);
}

.cm-table td:last-child {
    border-right: none;
}

.cm-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.cm-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    margin-left: 6px;
}

.cm-in-stock {
    color: #10B981;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cm-add-cart {
    padding: 10px 20px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.cm-add-cart:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.cm-add-cart:disabled {
    background: #10B981;
    cursor: default;
    transform: none;
}

@media (max-width: 768px) {
    .compare-bar {
        bottom: -150px;
        padding: 10px 0;
    }

    .cb-slot {
        width: 50px;
        height: 50px;
    }

    .cb-compare-btn {
        padding: 10px;
        font-size: 0;
    }

    .cb-compare-btn i {
        font-size: 16px;
    }

    .cm-table th,
    .cm-table td {
        padding: 10px;
    }

    .cm-product-img {
        width: 80px;
        height: 80px;
    }
}

/* ===================================================
   QUICK VIEW MODAL (JS-generated)
   =================================================== */
/* ===================================================
   QUICK VIEW MODAL (JS-generated)
   =================================================== */
.qv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.qv-modal.active {
    opacity: 1;
    visibility: visible;
}

.qv-content {
    background: var(--white);
    width: 900px;
    max-width: 95%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qv-modal.active .qv-content {
    transform: scale(1);
    opacity: 1;
}

.qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f5f7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    transition: all 0.2s;
}

.qv-close:hover {
    background: var(--cta);
    color: #fff;
}

/* 1/2 + 1/2: image left, details right */
.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    width: 100%;
}

/* Left column: image */
.qv-gallery {
    padding: 30px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--border, #E0E2E8);
    min-width: 0;
}

.qv-main-image {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.qv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.qv-nav:hover {
    background: #eee;
}

.qv-prev {
    left: 0;
}

.qv-next {
    right: 0;
}

.qv-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.qv-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
}

.qv-thumb.active {
    border-color: var(--primary);
}

.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right column: details */
.qv-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.qv-title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    word-wrap: break-word;
}

.qv-sku-label {
    font-size: 13px;
    color: #999;
}

.qv-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.qv-rating-row .star-rating {
    font-size: 14px;
    color: var(--accent);
}

.qv-review-count {
    font-size: 13px;
    color: var(--text-muted);
    background: #f4f5f7;
    padding: 2px 8px;
    border-radius: 4px;
}

.qv-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.qv-in-stock {
    background: #e6f7ef;
    color: #10B981;
}

.qv-out-stock {
    background: #fee2e2;
    color: #ef4444;
}

.qv-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.qv-price-large ins {
    text-decoration: none;
}

.qv-price-large ins .woocommerce-Price-amount {
    font-weight: 900;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 59, 152, .10), rgba(59, 59, 152, .04));
    border: 1px solid rgba(59, 59, 152, .12);
    box-shadow: 0 14px 30px rgba(59, 59, 152, .12);
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.qv-price-large .woocommerce-Price-amount {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.qv-price-large .woocommerce-Price-currencySymbol {
    font-size: 0.72em;
    font-weight: 800;
    opacity: 0.9;
    margin-right: 2px;
    vertical-align: 0.2em;
}

.qv-price-large del {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    margin-left: 10px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(153, 153, 153, .65);
}

.qv-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 30px;
}

.qv-actions-box {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}

.qv-qty-wrapper {
    flex-shrink: 0;
}

.qv-qty-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 48px;
}

.qv-qty-input button {
    width: 36px;
    height: 100%;
    border: none;
    background: none;
    font-size: 18px;
    color: #666;
}

.qv-qty-input input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.qv-add-btn {
    flex: 1 1 auto;
    min-width: 140px;
    white-space: nowrap;
    background: var(--cta, #00a651);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qv-add-btn:hover {
    background: #008f45;
}

.qv-extra-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.qv-extra-actions button {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.qv-extra-actions button:hover {
    color: var(--primary);
}

.qv-info-box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.qv-info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.qv-info-item i {
    font-size: 20px;
    color: #333;
}

.qv-info-item div {
    display: flex;
    flex-direction: column;
}

.qv-info-item strong {
    font-size: 14px;
    color: #111;
}

.qv-info-item span {
    font-size: 13px;
    color: #666;
}

.qv-meta-bottom {
    font-size: 13px;
    color: #666;
    margin-top: auto;
}

@media (max-width: 991px) {
    .qv-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .qv-content {
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        width: 95%;
    }

    .qv-gallery {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }
}

.qv-qty button {
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.qv-qty button:hover {
    background: #f8f9fa;
}

.qv-qty input {
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    appearance: none;
}

.qv-add-btn {
    flex: 1 1 auto;
    min-width: 140px;
    white-space: nowrap;
    background: var(--cta);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

/* ===================================================
   MOBILE BOTTOM NAVIGATION
   =================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: none;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: grid;
    }

    body {
        padding-bottom: 70px;
        /* Space for bottom nav */
    }
}

.bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #444;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bn-item i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.bn-item:active i {
    transform: scale(0.9);
}

.bn-item.active {
    color: var(--cta);
}

.bn-item.active i {
    color: var(--cta);
}

.bn-item.bn-cart {
    position: relative;
}

.bn-item .badge-count {
    top: -6px;
    right: 22%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    background: var(--cta);
    border: 2px solid var(--white);
}

/* --- Responsive Shop Grid --- */
@media (max-width: 991px) {

    .products.columns-4,
    .products.columns-3,
    .products.columns-5 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {

    .products.columns-4,
    .products.columns-3,
    .products.columns-5 {
        grid-template-columns: 1fr !important;
    }
}

.qv-qty input {
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    appearance: none;
}

.qv-add-btn {
    flex: 1 1 auto;
    min-width: 140px;
    white-space: nowrap;
    background: var(--cta);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(234, 29, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qv-add-btn:hover {
    background: #d41419;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 29, 34, 0.3);
}

.qv-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.qv-meta p {
    margin-bottom: 5px;
}

.qv-meta strong {
    color: var(--text-dark);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .qv-content {
        max-width: 95%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .qv-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .qv-gallery {
        padding: 20px;
    }

    .qv-main-image {
        height: 250px;
    }

    .qv-details {
        padding: 20px 25px 30px;
    }
}

/* ===================================================
   HOMEPAGE CATEGORIES
   =================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    cursor: pointer;
}

.cat-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cat-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}

/* Product Card Additions */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .pc-img {
    flex: 0 0 auto;
    position: relative;
    padding: 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pc-img img {
    max-width: 100%;
    /* Fix #4: Enforce consistent image height */
    height: 220px !important;
    object-fit: contain !important;
    transition: transform 0.4s ease;
}

.product-card:hover .pc-img img {
    transform: scale(1.05);
}

.cat-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

/* Hover Effects */
.cat-card:hover .cat-icon {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(234, 29, 34, 0.15);
    transform: translateY(-5px);
}

.cat-card:hover .cat-icon img {
    transform: scale(1.1);
}

.cat-card:hover span {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cat-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .cat-icon {
        width: 100px;
        height: 100px;
    }

    .cat-card span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================================
   CHECKOUT PAGE
   =================================================== */
.checkout-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-col {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group:not(.half) {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .req {
    color: var(--cta);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 59, 152, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Order Summary */
.order-summary-box {
    position: sticky;
    top: 100px;
}

.co-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.co-img {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-img img {
    max-width: 100%;
    max-height: 100%;
}

.co-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.co-price {
    font-size: 13px;
    color: var(--text-muted);
}

.checkout-totals {
    margin: 20px 0;
}

.ct-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.ct-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
}

.payment-methods {
    margin-bottom: 25px;
}

.pm-item {
    border: 1px solid var(--border);
    border-bottom: none;
    padding: 15px;
    background: var(--white);
}

.pm-item:first-child {
    border-radius: 6px 6px 0 0;
}

.pm-item:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 6px 6px;
}

.pm-item input {
    margin-right: 8px;
}

.pm-item label {
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.pm-desc {
    padding-left: 24px;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.pm-item input:checked~.pm-desc {
    display: block;
}

.privacy-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.place-order-btn {
    width: 100%;
    background: var(--cta);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.place-order-btn:hover {
    background: #d41419;
    box-shadow: 0 4px 15px rgba(234, 29, 34, 0.3);
}

.place-order-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-box {
        position: static;
    }

    .checkout-products {
        max-height: 300px;
        overflow-y: auto;
    }
}

/* ===================================================
   BREADCRUMBS & PAGE TITLE
   =================================================== */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--text-muted);
    font-size: 9px;
}

.breadcrumb .current {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 22px;
    }
}

/* ===================================================
   HEADER CATEGORIES DROPDOWN
   =================================================== */
.categories-trigger {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.header-cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border-top: 2px solid var(--primary);
}

.categories-trigger.active .header-cat-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-trigger.active .chevron {
    transform: rotate(180deg);
}

.header-cat-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-cat-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-body);
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.header-cat-dropdown li a i.arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-muted);
}

.header-cat-dropdown li.has-children {
    position: relative;
}

.header-cat-dropdown li.has-children>.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 250px;
    background: var(--white);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    border-left: 2px solid var(--primary);
    z-index: 101;
}

.header-cat-dropdown li.has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-cat-dropdown li a i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

.header-cat-dropdown li a:hover {
    background: #f8f9fa;
    color: var(--primary);
    padding-left: 25px;
}

.header-cat-dropdown li a:hover i {
    color: var(--primary);
}

.header-cat-dropdown li.extra-cat {
    display: none;
}

.header-cat-dropdown.show-all li.extra-cat {
    display: block;
}

.view-more-cats a {
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-top: 1px solid var(--border);
    margin-top: 5px;
}

.view-more-cats a i {
    color: var(--primary) !important;
}

.header-cat-dropdown.show-all .view-more-cats {
    display: none;
}

/* Homepage Sidebar Category Limit */
.hero-sidebar ul li.extra-cat,
.hero-sidebar ul li.extra-cat-js {
    display: none !important;
}

.view-more-cats-sidebar a {
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    display: block;
    border-top: 1px solid var(--border);
}

.view-more-cats-sidebar a i {
    color: var(--primary) !important;
    margin-right: 10px;
}

/* ===================================================
   FAQ PAGE
   =================================================== */
.faq-section {
    padding: 60px 0 80px;
    background: var(--bg);
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

.faq-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.faq-category-title i {
    color: var(--primary);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-header:hover {
    background: #fcfcfc;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 89, 42, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================================================
   FOOTER (FIXED)
   =================================================== */
.main-footer {
    background: #0b0c10;
    color: #c5c6c7;
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
    padding-right: 40px;
}

.newsletter-col {
    flex: 1.2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #8c8d90;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #c5c6c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

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

.newsletter-form {
    display: flex;
    margin: 20px 0;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.payment-methods {
    display: flex;
    gap: 10px;
    color: #8c8d90;
    font-size: 24px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #8c8d90;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #8c8d90;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-top {
        gap: 30px;
    }

    .brand-col {
        flex: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

.foot-contact {
    margin-top: 24px;
}

.fc-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #8c8d90;
    font-size: 14px;
}

.fc-line i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.fc-phone {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 5px 0 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.fc-phone:hover {
    color: var(--primary);
}

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

/* ===================================================
   HOME BANNERS WIDGET (BWP Banner Layout)
   =================================================== */
.bwp-widget-banner.layout-1 {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.bwp-widget-banner.layout-1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bwp-widget-banner.layout-1 .bg-banner {
    padding: 30px;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.bwp-widget-banner.layout-1 .banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.bwp-widget-banner.layout-1 .banner-wrapper-infor {
    flex: 1;
    z-index: 2;
    max-width: 50%;
}

.bwp-widget-banner.layout-1 .bwp-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
    pointer-events: none;
    text-align: right;
}

.bwp-widget-banner.layout-1 .bwp-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.bwp-widget-banner.layout-1 .bwp-image-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.bwp-widget-banner.layout-1 .title-banner {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.bwp-widget-banner.layout-1 .button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none !important;
    transition: var(--transition);
}

.bwp-widget-banner.layout-1 .button::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 32px;
    height: 32px;
    background: var(--cta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.bwp-widget-banner.layout-1 .button:hover {
    color: var(--cta);
}

.bwp-widget-banner.layout-1 .button:hover::after {
    transform: translateX(5px);
    background: var(--cta-dark);
}
.sidebar-menu li{
    border-bottom:1px solid #ccc;
}
@media (max-width: 1199px) {
    .bwp-widget-banner.layout-1 .title-banner {
        font-size: 18px;
    }
    .bwp-widget-banner.layout-1 .bg-banner {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .bwp-widget-banner.layout-1 {
        margin-bottom: 20px;
    }
    .bwp-widget-banner.layout-1 .bg-banner {
        min-height: 180px;
    }
}
