  /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0073ED;
            --deep-blue: #00479D;
            --tech-green: #34CF00;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            --shadow-xl: 0 20px 50px -8px rgba(0, 0, 0, 0.10);
            --radius: 8px;
            --radius-lg: 12px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --header-height: 76px;
            --nav-height: 52px;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-light);
            color: var(--gray-800);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul {
            list-style: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 28px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: #005fc7;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 115, 237, 0.30);
        }

        .btn-deep {
            background: var(--deep-blue);
            color: #fff;
        }
        .btn-deep:hover {
            background: #003a7a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 71, 157, 0.30);
        }

        .btn-green {
            background: var(--tech-green);
            color: #fff;
        }
        .btn-green:hover {
            background: #2bb800;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(52, 207, 0, 0.30);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-white {
            background: #fff;
            color: var(--deep-blue);
        }
        .btn-white:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
        }

        .btn-sm {
            padding: 6px 16px;
            font-size: 0.85rem;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            height: var(--header-height);
            display: flex;
            align-items: center;
            transition: box-shadow 0.3s;
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-lg);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 20px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-img {
            height: 48px;
            width: auto;
            display: block;
        }
        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--deep-blue);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            font-family: var(--font-heading);
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, transparent 60%);
            pointer-events: none;
        }
        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--deep-blue);
            letter-spacing: -0.3px;
        }
        .logo-text span {
            color: var(--primary);
        }

        /* Search */
        .header-search {
            flex: 1;
            max-width: 480px;
            min-width: 160px;
            position: relative;
        }
        .header-search input {
            width: 100%;
            padding: 10px 18px 10px 44px;
            border: 1.5px solid var(--gray-200);
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.92rem;
            background: var(--gray-50);
            transition: var(--transition);
            outline: none;
        }
        .header-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 115, 237, 0.10);
            background: #fff;
        }
        .header-search .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }

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

        .currency-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 50px;
            padding: 4px 6px;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: var(--font-body);
        }
        .currency-switcher button {
            background: transparent;
            border: none;
            padding: 4px 10px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.78rem;
            transition: var(--transition);
            color: var(--gray-500);
        }
        .currency-switcher button.active {
            background: var(--primary);
            color: #fff;
        }
        .currency-switcher button:hover:not(.active) {
            background: var(--gray-200);
        }

        .header-action-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--gray-700);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .header-action-btn:hover {
            background: var(--gray-100);
            color: var(--primary);
        }
        .header-action-btn .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--tech-green);
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
        }

        .header-action-btn.account-btn {
            font-size: 1.1rem;
        }

        /* ===== NAVIGATION ===== */
        .main-nav {
            background: var(--deep-blue);
            border-bottom: 3px solid var(--primary);
            z-index: 999;
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .nav-links>li {
            position: relative;
        }
        .nav-links>li>a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 20px;
            height: var(--nav-height);
            color: rgba(255, 255, 255, 0.85);
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.88rem;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            letter-spacing: 0.2px;
        }
        .nav-links>li>a:hover,
        .nav-links>li>a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            border-bottom-color: var(--tech-green);
        }
        .nav-links>li>a i {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* Mega menu trigger */
        .nav-links .has-mega>a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
            margin-left: 4px;
            opacity: 0.6;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: calc(var(--nav-height) + 2px);
            left: 0;
            width: 780px;
            background: #fff;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            box-shadow: var(--shadow-xl);
            padding: 28px 32px;
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 24px 40px;
            border-top: 4px solid var(--primary);
            z-index: 100;
        }
        .nav-links .has-mega:hover .mega-menu {
            display: grid;
        }

        .mega-col h4 {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--deep-blue);
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        .mega-col ul li a {
            display: block;
            padding: 5px 0;
            font-size: 0.85rem;
            color: var(--gray-600);
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }
        .mega-col ul li a:hover {
            color: var(--primary);
            padding-left: 6px;
        }
        .mega-col .brand-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(0, 115, 237, 0.08);
            padding: 2px 10px;
            border-radius: 50px;
            margin: 2px 4px 2px 0;
        }

        /* Nav right */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-right .nav-cta {
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.10);
            padding: 4px 16px;
            border-radius: 50px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .nav-right .nav-cta:hover {
            background: rgba(255, 255, 255, 0.20);
            color: #fff;
        }
        .nav-right .nav-cta-high {
            font-size: 0.88rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }
        .nav-right .nav-cta-high:hover {
            color: #fff;
        }

        /* ===== HOMEPAGE ===== */

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #eef4ff 0%, #f8fafc 100%);
            border-bottom: 1px solid var(--gray-200);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.8rem;
            line-height: 1.15;
            color: var(--deep-blue);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .hero-content h1 .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero-content h1 .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 10px;
            background: rgba(0, 115, 237, 0.15);
            border-radius: 4px;
            z-index: -1;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 500px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hero-buttons .btn {
            padding: 14px 36px;
            font-size: 1rem;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .hero-visual .hero-card {
           
            width: 100%;
            max-width: 460px;
            /* border: 1px solid var(--gray-200); */
            position: relative;
            overflow: hidden;
        }
        .hero-visual .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            /* background: linear-gradient(90deg, var(--primary), var(--tech-green)); */
        }
        .hero-card .hc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-100);
        }
        .hero-card .hc-row:last-child {
            border-bottom: none;
        }
        .hero-card .hc-label {
            font-weight: 500;
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        .hero-card .hc-value {
            font-weight: 600;
            color: var(--gray-800);
        }
        .hero-card .hc-value .green {
            color: var(--tech-green);
        }
        .hero-card .hc-value .blue {
            color: var(--primary);
        }
        .hero-card .hc-tag {
            background: var(--tech-green);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        /* ===== MAIN LAYOUT: Categories left + content right ===== */
        .home-layout {
            display: flex;
            gap: 32px;
            padding: 36px 0 48px;
            align-items: flex-start;
        }

        /* Sidebar Categories */
        .category-sidebar {
               position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    height: 100vh;
        }
        .category-sidebar .cat-header {
            background: var(--deep-blue);
            color: #fff;
            padding: 14px 20px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .category-sidebar .cat-header i {
            font-size: 1.1rem;
        }

        .category-list>li {
            border-bottom: 1px solid var(--gray-100);
            position: relative;
        }
        .category-list>li:last-child {
            border-bottom: none;
        }
        .category-list>li>a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-weight: 500;
            font-size: 0.88rem;
            color: var(--gray-700);
            transition: var(--transition);
            cursor: pointer;
        }
        .category-list>li>a:hover {
            background: var(--gray-50);
            color: var(--primary);
        }
        .category-list>li>a i {
            color: var(--gray-400);
            font-size: 0.7rem;
        }

        /* Sub-menu inside sidebar */
        .cat-sub {
            display: none;
            padding: 6px 20px 14px 20px;
            background: var(--gray-50);
        }
        .category-list>li:hover .cat-sub {
            display: block;
        }
        .cat-sub a {
            display: block;
            padding: 4px 0 4px 12px;
            font-size: 0.82rem;
            color: var(--gray-600);
            transition: var(--transition);
            border-left: 2px solid transparent;
        }
        .cat-sub a:hover {
            color: var(--primary);
            border-left-color: var(--primary);
            padding-left: 16px;
        }
        .cat-sub .brand-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            padding-top: 4px;
        }
        .cat-sub .brand-pills span {
            font-size: 0.68rem;
            background: #eef4ff;
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 50px;
            font-weight: 500;
        }

        /* ===== MAIN CONTENT ===== */
        .main-content {
            flex: 1;
            min-width: 0;
        }

        /* Section Titles */
        .section-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--deep-blue);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        .section-sub {
            color: var(--gray-500);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .section-header .view-all {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .section-header .view-all:hover {
            color: var(--deep-blue);
        }

        /* Featured Categories Grid */
        .feat-cats {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }
        .feat-cat-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px 12px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            cursor: default;
        }
        .feat-cat-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .feat-cat-item .fc-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .feat-cat-item .fc-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-700);
        }

        /* Brands */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }
        .brand-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 16px 8px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .brand-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .brand-item .bi-logo {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--deep-blue);
            letter-spacing: -0.3px;
        }
        .brand-item .bi-logo small {
            font-weight: 400;
            font-size: 0.65rem;
            color: var(--gray-400);
            display: block;
        }
        .brand-item .bi-tag {
            font-size: 0.6rem;
            color: var(--gray-500);
            background: var(--gray-100);
            padding: 2px 10px;
            border-radius: 50px;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 20px;
            margin-bottom: 48px;
        }

        .product-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .product-card .pc-image {
            height: 160px;
            background: var(--gray-50);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--gray-300);
            border-bottom: 1px solid var(--gray-100);
            position: relative;
        }
        .product-card .pc-image .pc-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 2px 12px;
            border-radius: 50px;
            background: var(--tech-green);
            color: #fff;
        }
        .product-card .pc-image .pc-badge.hot {
            background: #f59e0b;
        }

        .product-card .pc-body {
            padding: 16px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card .pc-brand {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }
        .product-card .pc-name {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--gray-800);
            margin-bottom: 4px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-card .pc-sku {
            font-size: 0.7rem;
            color: var(--gray-400);
            margin-bottom: 8px;
        }

        .product-card .pc-pricing {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid var(--gray-100);
        }
        .product-card .pc-price {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--deep-blue);
        }
        .product-card .pc-price .currency {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray-500);
        }
        .product-card .pc-tax,
        .businessit-single-product .pc-tax {
            font-size: 0.65rem;
            color: var(--gray-500);
            background: var(--gray-100);
            padding: 2px 8px;
            border-radius: 50px;
            font-weight: 500;
        }
        .product-card .pc-tax.green,
        .product-card .pc-tax.blue,
        .businessit-single-product .pc-tax.green,
        .businessit-single-product .pc-tax.blue {
            background: rgba(0, 115, 237, 0.10);
            color: var(--primary);
        }
        .product-card .pc-actions {
            display: flex;
            gap: 6px;
            margin-top: 10px;
        }
        .product-card .pc-actions .btn {
            flex: 1;
            padding: 8px 10px;
            font-size: 0.78rem;
        }
        .product-card .pc-actions .btn-outline {
            flex: 0 0 auto;
            padding: 8px 14px;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-section {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            margin-bottom: 40px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-top: 12px;
        }
        .why-item {
            text-align: center;
        }
        .why-item .wi-icon {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .why-item h4 {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            color: var(--deep-blue);
            margin-bottom: 4px;
        }
        .why-item p {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #003a7a 100%);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            color: #fff;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(0, 115, 237, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }
        .final-cta .cta-text h2 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 4px;
        }
        .final-cta .cta-text p {
            opacity: 0.8;
            font-size: 1rem;
        }
        .final-cta .cta-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--gray-900);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 24px;
            margin-top: 16px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-weight: 600;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 14px;
        }
        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 0.88rem;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.82rem;
        }
        .footer-bottom .fb-socials {
            display: flex;
            gap: 12px;
        }
        .footer-bottom .fb-socials a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom .fb-socials a:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                /* grid-template-columns: 1fr; */
                /* text-align: center; */
            }
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-visual .hero-card {
                max-width: 100%;
            }
            .home-layout {
                flex-direction: column;
            }
            .category-sidebar {
                flex: 1;
                width: 100%;
                position: relative;
                top: 0;
            }
            .category-sidebar .cat-header {
                cursor: pointer;
            }
            .category-sidebar .cat-header i.fa-chevron-down {
                margin-left: auto;
                transition: var(--transition);
            }
            .category-sidebar .cat-header.open i.fa-chevron-down {
                transform: rotate(180deg);
            }
            .category-list {
                display: none;
            }
            .category-list.open {
                display: block;
            }
            .mega-menu {
                display: none !important;
            }
            .nav-links>li.has-mega:hover .mega-menu {
                display: none !important;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .final-cta {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 118px;
                --nav-height: 46px;
            }
            .site-header {
                height: auto;
                min-height: 64px;
                padding: 10px 0;
            }
            .header-inner {
                gap: 12px;
                flex-wrap: wrap;
            }
            .logo {
                order: 1;
            }
            .header-actions {
                order: 2;
            }
            .logo-img {
                height: 40px;
            }
            .header-search {
                order: 3;
                max-width: 100%;
                min-width: 100%;
                margin-top: 5px;
            }
            .header-search input {
                padding: 8px 12px 8px 34px;
                font-size: 0.8rem;
            }
            .header-search .search-icon {
                left: 10px;
                font-size: 0.8rem;
            }
            .header-action-btn {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .header-action-btn .badge {
                width: 16px;
                height: 16px;
                font-size: 0.5rem;
            }
            .currency-switcher button {
                font-size: 0.7rem;
                padding: 2px 6px;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-content p {
                font-size: 0.95rem;
            }
            .hero-buttons .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
            .feat-cats {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 10px;
            }
            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
                gap: 10px;
            }
            .why-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .final-cta {
                padding: 32px 20px;
            }
            .final-cta .cta-text h2 {
                font-size: 1.4rem;
            }
            .nav-links>li>a {
                padding: 0 12px;
                font-size: 0.78rem;
            }
            .nav-right .nav-cta {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .header-search {
                max-width: 100%;
            }
            .header-search input {
                padding: 6px 8px 6px 28px;
                font-size: 0.7rem;
            }
            .header-search .search-icon {
                left: 8px;
                font-size: 0.7rem;
            }
            .logo-img {
                height: 32px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .product-card .pc-body {
                padding: 12px;
            }
            .product-card .pc-name {
                font-size: 0.82rem;
            }
            .product-card .pc-price {
                font-size: 1rem;
            }
            .product-card .pc-actions .btn {
                font-size: 0.7rem;
                padding: 6px 8px;
            }
            .feat-cats {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            }
            .feat-cat-item .fc-icon {
                font-size: 1.6rem;
            }
            .feat-cat-item .fc-name {
                font-size: 0.7rem;
            }
            .why-grid {
                grid-template-columns: 1fr;
            }
        }