        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --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;
            --blue: #0055ff;
            --blue-light: #3377ff;
            --blue-dark: #0044cc;
            --blue-glow: rgba(0, 85, 255, 0.15);
            --success: #10b981;
            --font-sans: 'Inter', -apple-system, sans-serif;
            --font-serif: 'Playfair Display', Georgia, serif;

            /* Admin Panel Compatibility Variables */
            --color-bg: var(--white);
            --color-bg-secondary: var(--gray-50);
            --color-bg-card: var(--white);
            --color-text: var(--gray-900);
            --color-text-muted: var(--gray-500);
            --color-border: var(--gray-200);
            --color-primary: var(--blue);
            --color-success: #22c55e;
            --color-warning: #f59e0b;
            --color-danger: #ef4444;
            --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            --shadow-glow: 0 0 20px var(--blue-glow);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 9999px;
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 32px;
            --spacing-2xl: 48px;
            --spacing-3xl: 64px;
            --font-size-xs: 12px;
            --font-size-sm: 14px;
            --font-size-md: 16px;
            --font-size-lg: 18px;
            --font-size-xl: 20px;
            --font-size-2xl: 24px;
            --font-size-3xl: 30px;
            --font-size-4xl: 36px;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.3s ease;
        }

        body {
            font-family: var(--font-sans);
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .italic-accent {
            font-family: var(--font-serif);
            font-style: italic;
        }

        /* ===== MARQUEE BAR ===== */
        .marquee-bar {
            background: var(--gray-900);
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-bar::before,
        .marquee-bar::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-bar::before {
            left: 0;
            background: linear-gradient(90deg, var(--gray-900), transparent);
        }

        .marquee-bar::after {
            right: 0;
            background: linear-gradient(-90deg, var(--gray-900), transparent);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 40s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-content {
            display: flex;
            flex-shrink: 0;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 40px;
            font-size: 13px;
            font-weight: 500;
            color: var(--white);
            white-space: nowrap;
        }

        .marquee-item svg {
            width: 14px;
            height: 14px;
            color: var(--blue-light);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== HEADER - TWO ROW MENU ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-100);
        }

        .header-main {
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .header-main .container {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--gray-900);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
        }

        .logo .trim {
            color: var(--blue);
        }

        .logo .markt {
            color: var(--gray-900);
        }

        .logo .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--blue);
            border-radius: 50%;
            margin-left: 2px;
            animation: logoPulse 2s ease-in-out infinite;
        }

        @keyframes logoPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        .logo-sub {
            font-weight: 400;
            color: var(--gray-400);
            font-size: 10px;
            display: block;
            margin-top: 2px;
        }

        /* Large Centered Search */
        .global-search {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .global-search input {
            width: 100%;
            padding: 14px 20px 14px 48px;
            font-size: 15px;
            font-family: inherit;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 50px;
            outline: none;
            transition: all 0.2s;
        }

        .global-search input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px var(--blue-glow);
        }

        .global-search input::placeholder {
            color: var(--gray-400);
        }

        .global-search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--gray-400);
            pointer-events: none;
        }

        .search-btn-inside {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--blue);
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-btn-inside:hover {
            background: #0044cc;
        }

        .search-btn-inside svg {
            width: 18px;
            height: 18px;
        }

        .search-results {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            display: none;
            max-height: 400px;
            overflow-y: auto;
        }

        .search-results.show {
            display: block;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            color: inherit;
            transition: background 0.15s;
        }

        .search-result-item:hover {
            background: var(--gray-50);
        }

        .search-result-item:first-child {
            border-radius: 16px 16px 0 0;
        }

        .search-result-item:last-child {
            border-radius: 0 0 16px 16px;
        }

        .search-result-thumb {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-result-thumb svg {
            width: 20px;
            height: 20px;
            color: var(--gray-400);
        }

        .search-result-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .search-result-info p {
            font-size: 12px;
            color: var(--gray-500);
        }

        .search-loading,
        .search-empty {
            padding: 24px;
            text-align: center;
            color: var(--gray-500);
            font-size: 14px;
        }

        /* Header Icons */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-icon-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            text-decoration: none;
            color: var(--gray-600);
            border-radius: 8px;
            transition: all 0.2s;
            position: relative;
        }

        .header-icon-btn:hover {
            background: var(--gray-50);
            color: var(--gray-900);
        }

        .header-icon-btn svg {
            width: 24px;
            height: 24px;
        }

        .header-icon-btn span {
            font-size: 11px;
            font-weight: 500;
        }

        .cart-badge {
            position: absolute;
            top: 4px;
            right: 10px;
            background: var(--blue);
            color: white;
            font-size: 10px;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Navigation Row */
        .header-nav {
            padding: 0;
            background: var(--white);
        }

        .header-nav .container {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .category-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: var(--blue);
            color: white;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .category-btn:hover {
            background: #0044cc;
        }

        .category-btn svg {
            width: 20px;
            height: 20px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 0;
            flex: 1;
        }

        /* Autocomplete Wrapper */
        .autocomplete-wrapper {
            position: relative;
            width: 100%;
        }

        .autocomplete-input {
            width: 100%;
            background: transparent;
            border: none;
            font-size: 18px;
            /* Prominent size */
            font-weight: 500;
            color: var(--gray-900);
            padding: 0;
            margin: 0;
            outline: none;
            cursor: text;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: inherit;
            text-align: left;
            /* Force Left Alignment */
        }

        .autocomplete-input::placeholder {
            color: var(--gray-400);
            opacity: 1;
        }

        .autocomplete-wrapper.disabled .autocomplete-input {
            cursor: not-allowed;
            color: var(--gray-400);
        }

        /* Focused State */
        .search-input-group.active {
            background: rgba(255, 255, 255, 0.6);
            box-shadow: inset 0 0 0 2px rgba(0, 85, 255, 0.2);
        }

        .autocomplete-wrapper.active .autocomplete-input {
            color: var(--blue);
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            text-decoration: none;
            padding: 14px 20px;
            transition: all 0.2s;
        }

        nav a:hover {
            color: var(--blue);
            background: var(--gray-50);
        }

        nav a.highlight {
            color: var(--blue);
            font-weight: 600;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gray-900);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
        }

        .whatsapp-btn:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s;
        }

        nav a:hover {
            color: var(--gray-900);
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--blue);
            color: var(--white) !important;
            border-radius: 100px;
            transition: all 0.2s;
        }

        .nav-cta:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
        }

        /* ===== PREMIUM HERO (Steve Jobs / Apple Style) ===== */
        .hero {
            min-height: 85vh;
            /* Taller hero */
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at top, var(--white) 0%, #f1f5f9 100%);
            /* Softer gradient */
        }

        /* Particle Canvas */
        #particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Gradient Orbs */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
            transition: transform 0.4s ease-out;
        }

        .gradient-orb.orb-1 {
            width: 700px;
            height: 700px;
            background: var(--blue-glow);
            top: -300px;
            right: -200px;
            opacity: 0.8;
        }

        .gradient-orb.orb-2 {
            width: 500px;
            height: 500px;
            background: rgba(16, 185, 129, 0.08);
            /* Greenish tint for contrast */
            bottom: -200px;
            left: -150px;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 20px;
        }

        /* Secondary Text - Clean & Minimal */
        .hero-text.secondary-text {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            order: 2;
            animation: fadeIn 1s ease-out 0.3s backwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            /* Refined Badge */
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(0, 85, 255, 0.08);
            /* Very subtle bg */
            border: 1px solid rgba(0, 85, 255, 0.15);
            border-radius: 20px;
            font-size: 11px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 24px;
        }

        .hero-text h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 600;
            /* Not bold, semi-bold */
            letter-spacing: -0.04em;
            /* Tight tracking */
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--gray-900);
        }

        .hero-text h1 .italic-accent {
            display: inline-block;
            font-weight: 500;
            color: var(--blue);
        }

        /* Trust Pills - Centered */
        .trust-pills.justify-center {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trust-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .trust-pill svg {
            font-size: 14px;
            font-family: inherit;
            border: 1px solid var(--gray-200);
        }

        /* ===== HERO SEARCH BAR (Restored & Polished) ===== */
        .glass-search-bar {
            order: 1;
            width: 100%;
            max-width: 860px;
            margin: 30px auto 0;
            position: relative;
            z-index: 20;
            /* Ensure visibility */
        }

        /* Main Bar Container */
        .search-form-flex {
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.95);
            /* High opacity for visibility */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 1);
            border-radius: 24px;
            padding: 12px;
            box-shadow:
                0 10px 40px -10px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.02);
            /* Crisp outline */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .search-form-flex:hover {
            transform: translateY(-2px);
            box-shadow:
                0 20px 50px -12px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.02);
        }

        /* Input Groups */
        .search-input-group {
            flex: 1;
            position: relative;
            padding: 16px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .search-input-group:last-of-type {
            border-bottom: none;
        }

        .search-input-group label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--gray-500);
            margin-bottom: 6px;
            display: block;
            pointer-events: none;
        }

        /* Desktop Layout */
        @media (min-width: 768px) {
            .search-form-flex {
                flex-direction: row;
                align-items: center;
                padding: 8px;
                border-radius: 100px;
                /* Pill shape */
                height: 80px;
            }

            .search-input-group {
                border-bottom: none;
                padding: 0 32px;
                height: 100%;
                justify-content: center;
            }

            .search-input-group.border-right {
                position: relative;
            }

            .search-input-group.border-right::after {
                content: '';
                position: absolute;
                right: 0;
                top: 20%;
                height: 60%;
                width: 1px;
                background: rgba(0, 0, 0, 0.08);
                /* Divider */
            }
        }

        /* Search Button (Floating Orb) */
        .search-submit-btn {
            width: 100%;
            height: 56px;
            border-radius: 16px;
            background: var(--blue);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
            transition: all 0.2s;
            font-weight: 600;
            font-size: 16px;
        }

        @media (min-width: 768px) {
            .search-submit-btn {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                margin: 0;
                margin-left: 8px;
                flex-shrink: 0;
                box-shadow: 0 8px 20px rgba(0, 85, 255, 0.25);
            }
        }

        .search-submit-btn:hover {
            background: var(--blue-dark);
            transform: scale(1.05);
        }

        .search-submit-btn svg {
            width: 24px;
            height: 24px;
        }

        /* Dropdown Menu (Autocomplete) */
        .options-menu {
            position: absolute;
            top: calc(100% + 16px);
            left: -20px;
            width: calc(100% + 40px);
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 8px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        @media (min-width: 768px) {
            .options-menu {
                width: 120%;
                /* Wider on desktop */
                left: -10%;
            }
        }

        .options-list {
            max-height: 250px;
            overflow-y: auto;
        }

        .option-item {
            padding: 12px 16px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 15px;
            color: var(--gray-800);
            transition: background 0.1s;
        }

        .option-item:hover {
            background: var(--blue-light);
            color: var(--blue);
        }

        .dropdown-search input:focus {
            border-color: var(--blue);
        }

        .dropdown-options {
            max-height: 180px;
            overflow-y: auto;
        }

        .dropdown-option {
            padding: 12px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.15s;
        }

        .dropdown-option:hover {
            background: var(--gray-50);
        }

        .dropdown-option.selected {
            background: var(--blue-glow);
            color: var(--blue);
            font-weight: 500;
        }

        .search-btn {
            width: 100%;
            padding: 16px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            background: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }

        .search-btn:hover {
            background: var(--blue-dark);
        }

        /* ===== POPULAR PRODUCTS ===== */
        .products {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .section-header h2 .italic-accent {
            font-weight: 500;
        }

        .section-header p {
            font-size: 17px;
            color: var(--gray-500);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
            border-color: var(--gray-200);
        }

        .product-image {
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .product-image svg {
            width: 48px;
            height: 48px;
            color: var(--gray-300);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            background: var(--blue);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            border-radius: 6px;
        }

        .product-info {
            padding: 20px;
        }

        .product-brand {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }

        .product-info h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .product-price .current {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .product-price .original {
            font-size: 14px;
            color: var(--gray-400);
            text-decoration: line-through;
        }

        /* ===== PROCESS TIMELINE ===== */
        .process {
            padding: 120px 0;
            background: var(--gray-50);
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
        }

        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 16px;
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--white);
            border: 3px solid var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .timeline-icon svg {
            width: 32px;
            height: 32px;
            color: var(--blue);
            transition: all 0.3s;
        }

        .timeline-step:hover .timeline-icon {
            transform: scale(1.1);
            background: var(--blue);
            box-shadow: 0 12px 32px rgba(0, 85, 255, 0.3);
        }

        .timeline-step:hover .timeline-icon svg {
            color: var(--white);
        }

        .timeline-step h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-step p {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.6;
            max-width: 200px;
            margin: 0 auto;
        }

        .step-num {
            position: absolute;
            top: -8px;
            right: calc(50% - 52px);
            width: 24px;
            height: 24px;
            background: var(--blue);
            color: var(--white);
            border-radius: 50%;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== FEATURES ===== */
        .features {
            padding: 100px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            padding: 40px;
            background: var(--gray-50);
            border-radius: 20px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: var(--white);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--blue-glow);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--blue);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ===== COST ===== */
        .cost {
            padding: 100px 0;
            background: var(--gray-900);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cost::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cost-content {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cost-text h2 {
            font-size: 36px;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .cost-text h2 .italic-accent {
            font-weight: 500;
            color: var(--blue-light);
        }

        .cost-text p {
            font-size: 17px;
            color: var(--gray-400);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .savings-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .savings-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .savings-row:last-child {
            border: none;
            padding-bottom: 0;
        }

        .savings-row .label {
            color: var(--gray-400);
            font-size: 15px;
        }

        .savings-row .value {
            font-weight: 600;
            font-size: 17px;
        }

        .savings-row .value.old {
            text-decoration: line-through;
            color: var(--gray-500);
        }

        .savings-row .value.new {
            color: #34d399;
            font-size: 24px;
        }

        .savings-row .value.save {
            color: #fbbf24;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: var(--off-white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 36px;
            border-radius: 20px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .testimonial-card blockquote {
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--blue-glow) 0%, var(--gray-200) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            color: var(--blue);
        }

        .testimonial-author .info strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-author .info span {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 80px 0 40px;
            background: var(--gray-900);
            color: var(--white);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            color: var(--white);
            font-size: 22px;
            display: block;
            margin-bottom: 16px;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 40px;
            /* Space between form and grid */
        }

        /* Hero Quick Grid (Replaces Text) */
        .hero-text {
            width: 100%;
            /* Ensure it takes full width of its area */
        }

        /* Hero Quick Grid (Replaces Text) */
        .hero-text {
            width: 100%;
        }

        .hero-quick-grid {
            display: flex;
            justify-content: center;
            /* Center the group */
            gap: 15px;
            width: 100%;
            flex-wrap: wrap;
            /* Safe wrapping for small screens */
            margin-top: 10px;
        }

        /* Mini Product Card */
        .mini-product-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            /* Softer rounded corners */
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            /* Smooth springy transition */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);

            /* Dimensions for Squarish Look */
            width: 130px;
            height: 145px;
            align-items: center;
            text-align: center;
            position: relative;
        }

        /* Expansion & Inteaction Effect */
        .mini-product-card:hover {
            transform: translateY(-5px) scale(1.1);
            /* Expand and float up */
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 10;
            /* Bring to front */
            border-color: #0055ff;
        }

        .mini-img {
            width: 100%;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            position: relative;
        }

        .mini-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mini-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mini-name {
            font-size: 10px;
            text-transform: uppercase;
            color: var(--gray-500);
            font-weight: 700;
        }

        .mini-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-800);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mini-price {
            font-size: 13px;
            font-weight: 700;
            color: var(--blue);
            margin-top: 2px;
        }

        /* See All Card */
        .see-all-card {
            background: rgba(0, 85, 255, 0.05);
            /* Slight blue tint */
            border-color: rgba(0, 85, 255, 0.1);
            justify-content: center;
            align-items: center;
            text-align: center;
            cursor: pointer;
        }

        .see-all-card:hover {
            background: rgba(0, 85, 255, 0.1);
            border-color: rgba(0, 85, 255, 0.2);
        }

        .see-all-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--blue);
        }

        .see-all-text {
            font-size: 13px;
            font-weight: 700;
        }

        .see-all-icon svg {
            width: 20px;
            height: 20px;
        }

        /* Placeholder icon */
        .placeholder-icon {
            width: 100%;
            height: 100%;
            color: var(--gray-300);
            padding: 20px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
            color: var(--gray-400);
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--gray-300);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--gray-500);
        }

        .footer-badges {
            display: flex;
            gap: 12px;
        }

        .footer-badge {
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-400);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-badge svg {
            width: 14px;
            height: 14px;
        }

        /* ===== PARTNER PROGRAM (Apple Premium Style) ===== */
        .partner-section {
            /* Dark Blue to Black Gradient */
            background: linear-gradient(180deg, #020617 0%, #000000 100%);
            /* Plus Pattern Overlay */
            background-image:
                linear-gradient(180deg, #020617 0%, #000000 100%),
                url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8V16M8 12H16' stroke='%23334155' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
            background-blend-mode: overlay;
            position: relative;
            color: white;
            /* Contrast text */
        }

        .partner-section h2 {
            color: white !important;
        }

        .partner-section p {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .partner-card {
            background: rgba(255, 255, 255, 0.03) !important;
            /* Dark Glass */
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 40px !important;
            overflow: hidden;
            border-radius: 24px;
        }

        /* Dark Theme Adjustments for Partner Card */
        .p-step-icon {
            background: rgba(255, 255, 255, 0.05);
            /* Darker glass icon bg */
            border-color: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            box-shadow: none;
        }

        .p-step-info h4 {
            color: white;
        }

        .p-step-info p {
            color: rgba(255, 255, 255, 0.6);
        }

        .step-badge {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: rgba(255, 255, 255, 0.1);
        }

        /* Desktop Layout: Horizontal */
        @media (min-width: 900px) {
            .partner-card {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                gap: 20px;
            }
        }

        .partner-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            /* Make them equal width */
            opacity: 0;
            /* JS/Animation Trigger needed, or default animation */
            animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Connecting Line (Desktop Only) */
        @media (min-width: 900px) {
            .partner-flow-bg {
                position: absolute;
                top: 64px;
                /* Align with icon center */
                left: 10%;
                width: 80%;
                height: 1px;
                background: linear-gradient(90deg,
                        rgba(255, 255, 255, 0) 0%,
                        rgba(0, 85, 255, 0.1) 20%,
                        rgba(0, 85, 255, 0.2) 50%,
                        rgba(0, 85, 255, 0.1) 80%,
                        rgba(255, 255, 255, 0) 100%);
                z-index: 1;
            }
        }

        .p-step-icon {
            width: 80px;
            /* Big but airy */
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            transition: all 0.5s ease;
            margin-bottom: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.03),
                inset 0 0 0 1px rgba(0, 0, 0, 0.03);
            /* Subtle stroke */
        }

        /* Icons are thinner */
        .p-step-icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.2px;
            /* Thin Apple style */
        }

        .partner-step:hover .p-step-icon {
            transform: translateY(-8px) scale(1.05);
            color: var(--blue);
            box-shadow:
                0 15px 30px rgba(0, 85, 255, 0.1),
                inset 0 0 0 1px rgba(0, 85, 255, 0.1);
        }

        /* Step Badge (1, 2, 3) */
        .step-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            background: var(--gray-100);
            color: var(--gray-500);
            padding: 4px 8px;
            border-radius: 20px;
            margin-bottom: 8px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .p-step-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .p-step-info p {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.4;
        }

        /* Active Glow (The Money Step) */
        .p-step-icon.active-glow {
            color: var(--blue);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 240, 255, 0.5));
            border-color: rgba(0, 85, 255, 0.1);
        }

        /* Remove old lines */
        .partner-line {
            display: none;
        }

        .btn-text-arrow:hover {
            gap: 8px;
            /* Arrow slide animation */
            transition: gap 0.2s;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .timeline,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline {
                flex-wrap: wrap;
            }

            .timeline::before {
                display: none;
            }

            .timeline-step {
                flex: 0 0 50%;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cost-content {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .timeline-step {
                flex: 0 0 100%;
                margin-bottom: 24px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .trust-pills {
                flex-direction: column;
                gap: 12px;
            }

            .hero-cta {
                flex-direction: column;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            nav {
                display: none;
            }

            .category-btn {
                display: none;
            }

            .header-actions {
                gap: 4px;
            }

            .header-icon-btn {
                padding: 8px 8px;
            }

            .header-icon-btn span {
                display: none;
            }

            .global-search {
                max-width: 100%;
                margin: 0;
            }

            .global-search input {
                padding: 10px 40px 10px 40px;
                font-size: 13px;
            }

            .marquee-item {
                padding: 0 24px;
                font-size: 12px;
            }
        }

        /* =====================================================
   SUBPAGE STYLES (Added to fix layout issues)
   ===================================================== */

        /* Page Header & Breadcrumb */
        .page-header {
            padding: 40px 0;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .breadcrumb a {
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--blue);
        }

        .breadcrumb svg {
            width: 14px;
            height: 14px;
            color: var(--gray-400);
        }

        .breadcrumb span {
            color: var(--gray-900);
            font-weight: 500;
        }

        .page-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--gray-900);
            letter-spacing: -0.02em;
        }

        /* Product Detail Page */
        .product-detail {
            padding: 60px 0;
            background: var(--white);
        }

        .product-detail .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .gallery-main {
            background: var(--gray-50);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--gray-100);
            aspect-ratio: 1;
            /* Square */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
            /* Helps with white background images */
        }

        .gallery-thumbs {
            display: flex;
            gap: 12px;
        }

        .gallery-thumb {
            width: 80px;
            height: 80px;
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .gallery-thumb:hover {
            border-color: var(--blue);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-detail .product-info h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .product-model {
            font-size: 16px;
            color: var(--gray-500);
            margin-bottom: 32px;
            font-weight: 500;
        }

        /* Material Selector */
        .material-selector {
            margin-bottom: 32px;
            padding: 24px;
            background: var(--gray-50);
            border-radius: 16px;
            border: 1px solid var(--gray-100);
        }

        .material-selector label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .material-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .material-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 12px 16px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            transition: all 0.2s;
        }

        .material-option:hover {
            border-color: var(--gray-300);
        }

        .material-option input {
            margin-right: 12px;
            accent-color: var(--blue);
            width: 18px;
            height: 18px;
        }

        .material-option span {
            display: flex;
            justify-content: space-between;
            width: 100%;
            font-size: 15px;
            font-weight: 500;
        }

        .material-price {
            font-weight: 700;
            color: var(--gray-900);
        }

        .material-option:has(input:checked) {
            border-color: var(--blue);
            background: #eff6ff;
            /* Light blue bg */
        }

        /* Order Button */
        .order-btn {
            width: 100%;
            padding: 18px;
            background: var(--blue);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
        }

        .order-btn:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 85, 255, 0.3);
        }

        .product-description {
            margin-bottom: 32px;
        }

        .product-description h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--gray-900);
        }

        .product-description p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 15px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--white);
            width: 90%;
            max-width: 500px;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: all 0.3s;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .modal-header h2 {
            font-size: 20px;
            font-weight: 700;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-500);
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--gray-700);
        }

        .form-control {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--gray-300);
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px var(--blue-glow);
        }

        @media (max-width: 768px) {
            .product-detail .container {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* ===== MODEL CARDS (Brand Page) ===== */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 16px;
        }

        .model-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        .model-card:hover {
            border-color: var(--blue);
            box-shadow: 0 4px 20px rgba(0, 85, 255, 0.1);
            transform: translateY(-2px);
        }

        .model-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .model-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gray-600);
        }

        .model-card:hover .model-icon {
            background: var(--blue-glow);
        }

        .model-card:hover .model-icon svg {
            color: var(--blue);
        }

        .model-info {
            flex: 1;
            min-width: 0;
        }

        .model-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin: 0 0 4px 0;
        }

        .model-years {
            display: block;
            font-size: 13px;
            color: var(--gray-500);
        }

        .model-count {
            display: inline-block;
            margin-top: 6px;
            padding: 3px 8px;
            background: var(--blue-glow);
            color: var(--blue);
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
        }

        .model-arrow {
            width: 20px;
            height: 20px;
            color: var(--gray-400);
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .model-card:hover .model-arrow {
            color: var(--blue);
            transform: translateX(4px);
        }

        @media (max-width: 640px) {
            .models-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== AUTH PAGES (Login/Register) ===== */
        .auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
            padding: 40px 20px;
        }

        .auth-container {
            width: 100%;
            max-width: 440px;
        }

        .auth-box {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            padding: 40px;
        }

        .auth-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .auth-header .logo {
            display: inline-flex;
            margin-bottom: 24px;
        }

        .auth-header h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .auth-header p {
            color: var(--gray-500);
            font-size: 14px;
        }

        .auth-form .form-group {
            margin-bottom: 20px;
        }

        .auth-form .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .auth-form .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.2s;
        }

        .auth-form .form-control:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px var(--blue-glow);
        }

        .auth-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-options {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .form-options a {
            color: var(--blue);
            font-size: 14px;
            text-decoration: none;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--blue-dark);
        }

        .btn-success {
            background: var(--success) !important;
            color: var(--white) !important;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--gray-300);
            color: var(--gray-700);
        }

        .btn-block {
            width: 100%;
        }

        .btn-lg {
            padding: 14px 28px;
            font-size: 16px;
        }

        .auth-footer {
            text-align: center;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-100);
        }

        .auth-footer p {
            color: var(--gray-500);
            font-size: 14px;
        }

        .auth-footer a {
            color: var(--blue);
            font-weight: 500;
            text-decoration: none;
        }

        /* ===== CART PAGE ===== */
        .cart-section {
            padding: 60px 0;
            min-height: 70vh;
        }

        .cart-section h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .cart-empty {
            text-align: center;
            padding: 80px 20px;
        }

        .cart-empty svg {
            color: var(--gray-300);
            margin-bottom: 24px;
        }

        .cart-empty h2 {
            font-size: 20px;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .cart-grid {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .cart-item {
            display: grid;
            grid-template-columns: 80px 1fr auto auto auto;
            gap: 20px;
            align-items: center;
            padding: 20px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
        }

        .cart-item-image img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .cart-item-info h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cart-item-info h3 a {
            color: var(--gray-900);
            text-decoration: none;
        }

        .cart-item-material {
            font-size: 13px;
            color: var(--gray-500);
        }

        .cart-item-price {
            font-size: 14px;
            color: var(--blue);
            font-weight: 600;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            background: var(--white);
            font-size: 18px;
            cursor: pointer;
        }

        .cart-item-quantity input {
            width: 48px;
            height: 32px;
            text-align: center;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-size: 14px;
        }

        .cart-item-total {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            min-width: 100px;
            text-align: right;
        }

        .cart-item-remove {
            width: 36px;
            height: 36px;
            border: none;
            background: transparent;
            color: var(--gray-400);
            cursor: pointer;
            border-radius: 8px;
        }

        .cart-item-remove:hover {
            background: #fee2e2;
            color: #ef4444;
        }

        .cart-item-remove svg {
            width: 20px;
            height: 20px;
        }

        .cart-summary {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 24px;
            position: sticky;
            top: 100px;
        }

        .cart-summary h2 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--gray-100);
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .cart-summary-total {
            display: flex;
            justify-content: space-between;
            padding-top: 16px;
            margin-top: 16px;
            border-top: 1px solid var(--gray-200);
            font-size: 18px;
            font-weight: 700;
        }

        .cart-summary .btn {
            margin-top: 16px;
        }

        .text-success {
            color: var(--success) !important;
        }

        .text-muted {
            color: var(--gray-500);
        }

        /* ===== CHECKOUT PAGE ===== */
        .checkout-section {
            padding: 60px 0;
        }

        .checkout-section h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            align-items: start;
        }

        .checkout-form {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 32px;
        }

        .checkout-form h2 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .checkout-form .form-group {
            margin-bottom: 20px;
        }

        .checkout-form .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .checkout-form .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
        }

        .checkout-form .form-control:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px var(--blue-glow);
        }

        .checkout-form textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .checkout-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .checkout-summary {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 24px;
            position: sticky;
            top: 100px;
        }

        .checkout-summary h2 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .checkout-items {
            border-bottom: 1px solid var(--gray-100);
            padding-bottom: 16px;
            margin-bottom: 16px;
        }

        .checkout-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 14px;
        }

        .checkout-item-name {
            color: var(--gray-700);
        }

        .checkout-item-name small {
            display: block;
            color: var(--gray-500);
            font-size: 12px;
        }

        .checkout-item-price {
            font-weight: 600;
        }

        .checkout-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 14px;
            color: var(--gray-600);
        }

        .checkout-row.checkout-total {
            padding-top: 16px;
            margin-top: 8px;
            border-top: 1px solid var(--gray-200);
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .checkout-note {
            text-align: center;
            margin-top: 16px;
            color: var(--gray-500);
        }

        /* Invoice Type Options */
        .invoice-type-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .invoice-type-option {
            flex: 1;
            min-width: 140px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .invoice-type-option:hover {
            border-color: var(--gray-300);
            background: var(--gray-50);
        }

        .invoice-type-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--blue);
        }

        .invoice-type-option input[type="radio"]:checked+span {
            color: var(--blue);
            font-weight: 600;
        }

        .invoice-type-option:has(input:checked) {
            border-color: var(--blue);
            background: var(--blue-glow);
        }

        .invoice-fields {
            margin-top: 20px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 8px;
            border: 1px solid var(--gray-200);
        }

        .invoice-fields .form-group:last-child {
            margin-bottom: 0;
        }

        /* ===== ACCOUNT PAGE ===== */
        .account-section {
            padding: 60px 0;
        }

        .account-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .account-header h1 {
            font-size: 28px;
            font-weight: 700;
        }

        .account-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }

        .account-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 24px;
        }

        .account-card h2 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--gray-100);
        }

        .account-card .form-group {
            margin-bottom: 16px;
        }

        .account-card .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 6px;
        }

        .account-card .form-control {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
        }

        .account-card .form-control:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px var(--blue-glow);
        }

        .account-card .form-control:disabled {
            background: var(--gray-50);
            color: var(--gray-500);
        }

        /* Tables */
        .table {
            width: 100%;
            border-collapse: collapse;
        }

        .table th,
        .table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--gray-100);
        }

        .table th {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--gray-500);
            background: var(--gray-50);
        }

        .table td {
            font-size: 14px;
        }

        .table td a {
            color: var(--blue);
            text-decoration: none;
        }

        .badge {
            display: inline-block;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
        }

        .badge-success {
            background: #dcfce7;
            color: #16a34a;
        }

        .badge-warning {
            background: #fef3c7;
            color: #d97706;
        }

        .badge-info {
            background: #dbeafe;
            color: #2563eb;
        }

        .badge-primary {
            background: var(--blue-glow);
            color: var(--blue);
        }

        .badge-secondary {
            background: var(--gray-100);
            color: var(--gray-600);
        }

        .badge-danger {
            background: #fee2e2;
            color: #dc2626;
        }

        /* Alerts */
        .alert {
            padding: 16px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .alert-success {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }

        .alert-danger {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .alert-warning {
            background: #fef3c7;
            color: #92400e;
            border: 1px solid #fde68a;
        }

        .alert-info {
            background: #dbeafe;
            color: #1e40af;
            border: 1px solid #bfdbfe;
        }

        /* Product Actions */
        .product-actions {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .product-actions .btn {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 900px) {

            .cart-grid,
            .checkout-grid {
                grid-template-columns: 1fr;
            }

            .cart-summary,
            .checkout-summary {
                position: static;
            }

            .account-grid {
                grid-template-columns: 1fr;
            }

            .cart-item {
                grid-template-columns: 60px 1fr;
                gap: 12px;
            }

            .cart-item-quantity,
            .cart-item-total,
            .cart-item-remove {
                grid-column: 2;
            }

            .checkout-form .form-row,
            .auth-form .form-row {
                grid-template-columns: 1fr;
            }
        }