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

        :root {
            --primary: #C9960C;
            --primary-dark: #A67B0B;
            --secondary: #1A1B2E;
            --accent: #FF4500;
            --danger: #FF3B5C;
            --bg: #F5F5F7;
            --white: #FFFFFF;
            --gray-50: #FAFAFA;
            --gray-100: #F0F0F2;
            --gray-200: #E4E4E7;
            --gray-300: #D1D1D6;
            --gray-500: #71717A;
            --gray-700: #3F3F46;
            --gray-900: #18181B;
            --radius: 12px;
            --radius-sm: 8px;
            --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
            --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-xl: 0 8px 40px rgba(0,0,0,0.15);
        
    --hero-bg-image: none;
    --hero-overlay: rgba(0,0,0,0.45);
}

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--gray-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== STICKY HEADER ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            backdrop-filter: blur(12px);
            background: rgba(255,255,255,0.95);
        }

        .promo-strip {
            background: var(--secondary);
            color: var(--white);
            text-align: center;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .promo-strip span {
            color: var(--primary);
        }

        .nav-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            color: var(--gray-900);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 900;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-700);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-nav {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

        .cart-btn {
            position: relative;
            background: none;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--gray-700);
            transition: all 0.2s;
        }

        .cart-btn:hover { border-color: var(--primary); color: var(--primary); }

        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--danger);
            color: white;
            font-size: 11px;
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-700);
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

/* ===== HERO BACKGROUND IMAGE SUPPORT =====
   Pour utiliser une image de fond sur le hero :
   1. Ajouter la classe "has-bg" : <section class="hero has-bg">
   2. Définir dans css-system.css : --hero-bg-image: url('votre-image.jpg');
   ========================================== */
.hero.has-bg {
    background-image: var(--hero-bg-image) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero.has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay, rgba(0,0,0,0.45));
    z-index: 0;
    pointer-events: none;
}
.hero.has-bg > * { position: relative; z-index: 1; }


        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(0,196,140,0.1) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,107,0,0.15);
            border: 1px solid rgba(255,107,0,0.3);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.3); }
            50% { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            max-width: 560px;
            margin: 0 auto 32px;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero {
            padding: 16px 32px;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

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

        .btn-hero-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }

        .btn-hero-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

        .hero-price {
            margin-top: 24px;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        .hero-price strong {
            color: var(--white);
            font-size: 28px;
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 20px 24px;
        }

        .trust-items {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        /* ===== SECTIONS COMMON ===== */
        .section {
            padding: 80px 24px;
        }

        .section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(255,107,0,0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--gray-500);
            max-width: 560px;
            margin: 0 auto;
        }

        /* ===== CATEGORY TABS ===== */
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cat-tab {
            padding: 10px 24px;
            border: 2px solid var(--gray-200);
            border-radius: 50px;
            background: var(--white);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--gray-500);
        }

        .cat-tab:hover { border-color: var(--primary); color: var(--primary); }

        .cat-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

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

        .product-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 10;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
        }

        .badge-promo {
            background: var(--danger);
            color: white;
        }

        .badge-best {
            background: var(--primary);
            color: white;
        }

        .badge-new {
            background: var(--accent);
            color: white;
        }

        .product-img {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-img-inner {
            width: 60%;
            height: 70%;
            background: var(--white);
            border-radius: 4px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            transition: transform 0.3s;
        }

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

        .product-img-inner .format-label {
            font-size: 28px;
            font-weight: 900;
            color: var(--gray-900);
        }

        .product-img-inner .format-dim {
            font-size: 11px;
            color: var(--gray-500);
        }

        .product-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26,26,46,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover .product-overlay { opacity: 1; }

        .overlay-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transform: translateY(10px);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-card:hover .overlay-btn { transform: translateY(0); }

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

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .product-desc {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 12px;
        }

        .product-pricing {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 16px;
        }

        .product-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }

        .product-unit {
            font-size: 13px;
            color: var(--gray-500);
        }

        .product-old-price {
            font-size: 14px;
            color: var(--gray-300);
            text-decoration: line-through;
        }

        .btn-add-cart {
            width: 100%;
            padding: 12px;
            background: var(--gray-900);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-add-cart:hover { background: var(--primary); }

        .product-meta {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .product-meta span {
            font-size: 12px;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,107,0,0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ===== PRICING TABLE ===== */
        .pricing-section { background: var(--white); }

        .pricing-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .pricing-table thead {
            background: var(--secondary);
            color: var(--white);
        }

        .pricing-table th {
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 600;
            text-align: left;
        }

        .pricing-table td {
            padding: 14px 20px;
            font-size: 14px;
            border-bottom: 1px solid var(--gray-100);
        }

        .pricing-table tbody tr {
            transition: background 0.2s;
        }

        .pricing-table tbody tr:hover { background: rgba(255,107,0,0.03); }

        .pricing-table .highlight-row {
            background: rgba(255,107,0,0.06);
            font-weight: 600;
        }

        .pricing-table .price-cell {
            font-weight: 700;
            color: var(--primary);
        }

        .pricing-table .best-value {
            background: var(--primary);
            color: white;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            margin-left: 8px;
        }

        .table-cart-btn {
            background: var(--gray-900);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .table-cart-btn:hover { background: var(--primary); }

        /* ===== STEPS ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .step-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* ===== TEMPLATES ===== */
        .templates-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .template-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
            cursor: pointer;
        }

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

        .template-preview {
            height: 260px;
            position: relative;
            overflow: hidden;
        }

        .template-preview-inner {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .tpl-header {
            height: 45%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 16px;
            text-align: center;
            padding: 16px;
            line-height: 1.3;
        }

        .tpl-body {
            flex: 1;
            background: white;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .tpl-line {
            height: 6px;
            border-radius: 3px;
            background: var(--gray-200);
        }

        .tpl-line:nth-child(2) { width: 80%; }
        .tpl-line:nth-child(3) { width: 60%; }

        .tpl-btn-bar {
            height: 20px;
            width: 50%;
            border-radius: 4px;
            margin-top: 8px;
        }

        .template-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26,26,46,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .template-card:hover .template-overlay { opacity: 1; }

        .template-overlay button {
            background: var(--white);
            color: var(--gray-900);
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }

        .template-info {
            padding: 16px;
        }

        .template-info h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .template-info span {
            font-size: 13px;
            color: var(--gray-500);
        }

        .template-tag {
            display: inline-block;
            background: var(--gray-100);
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-500);
            margin-top: 8px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section { background: var(--white); }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .testimonial-stars {
            color: #FAAD14;
            font-size: 18px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 16px;
        }

        .testimonial-name {
            font-size: 14px;
            font-weight: 700;
        }

        .testimonial-role {
            font-size: 13px;
            color: var(--gray-500);
        }

        .testimonial-verified {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item.active { border-color: var(--primary); }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            cursor: pointer;
            text-align: left;
            gap: 16px;
        }

        .faq-question:hover { color: var(--primary); }

        .faq-toggle {
            width: 32px;
            height: 32px;
            background: var(--gray-100);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255,107,0,0.12) 0%, transparent 60%);
        }

        .cta-content {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--gray-900);
            color: rgba(255,255,255,0.6);
            padding: 64px 24px 32px;
        }

        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 18px;
            transition: all 0.2s;
        }

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

        .footer-col h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

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

        .footer-col a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }

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

        .payment-icon {
            background: rgba(255,255,255,0.08);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
        }

        /* ===== CART NOTIFICATION ===== */
        .cart-notification {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--gray-900);
            color: white;
            padding: 16px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            transform: translateY(120%);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 9999;
        }

        .cart-notification.show { transform: translateY(0); }

        .cart-notification .notif-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .products-grid, .templates-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .steps-grid::before { display: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .products-grid, .features-grid, .testimonials-grid, .templates-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .hero { padding: 48px 24px; }
            .section { padding: 56px 24px; }
            .trust-items { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .hero-ctas { flex-direction: column; align-items: center; }
            .btn-hero { width: 100%; justify-content: center; }
            .nav-main { padding: 0 16px; }
        }

/* === MOBILE 2-COL PRODUCT GRID (UX patch) === */
@media (max-width: 768px) {
    .products-grid,
    [class*="products-grid"],
    .grid.grid-4.products,
    .grid-4.product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-img { height: 160px !important; }
    .product-info { padding: 12px 14px !important; }
    .product-name { font-size: 0.8125rem !important; }
    .product-price { font-size: 1rem !important; }
    .btn-add-cart { font-size: 0.75rem !important; padding: 9px 8px !important; }
}
@media (max-width: 380px) {
    .products-grid,
    [class*="products-grid"],
    .grid.grid-4.products,
    .grid-4.product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === FILTER MODAL MOBILE (UX patch) === */
.filter-modal-trigger {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid currentColor;
    background: transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.filter-modal-overlay.open {
    display: flex;
    align-items: flex-end;
    opacity: 1;
}
.filter-modal-panel {
    background: #fff;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-modal-overlay.open .filter-modal-panel {
    transform: translateY(0);
}
.filter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.filter-modal-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.filter-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.06);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}
@media (max-width: 768px) {
    .filter-modal-trigger { display: flex; }
    .filters-sidebar { display: none !important; }
    .category-layout { grid-template-columns: 1fr !important; }
    .category-toolbar-mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}
@media (min-width: 769px) {
    .filter-modal-trigger { display: none !important; }
    .filter-modal-overlay { display: none !important; }
    .filters-sidebar { display: block !important; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-refuse {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.cookie-btn-refuse:hover {
    background: var(--gray-100);
}

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

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 8px;
}

/* ===== OBFUSCATED LINKS ===== */
.obf-link {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.obf-link:hover {
    color: var(--primary-dark);
}

.obf-ext {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.obf-ext:hover {
    color: var(--primary-dark);
}

/* ===== FOCUS VISIBLE ===== */
a:focus-visible,
button:focus-visible,
.obf-link:focus-visible,
.obf-ext:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== ADDITIONAL STYLES FOR JET DE SCENE ===== */
.installation-reassurance {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.1rem;
}

.calculator-tip {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card-featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-optimal {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: var(--transition);
}

.pricing-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: var(--gray-900);
        border-color: var(--gray-700);
    }

    .cookie-content p {
        color: var(--gray-300);
    }

    .cookie-btn-refuse {
        background: transparent;
        color: var(--gray-300);
        border-color: var(--gray-600);
    }

    .cookie-btn-refuse:hover {
        background: var(--gray-800);
    }
}

/* ===== PAGES LEGALES ===== */
.legal-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-article section {
    margin-bottom: 2.5rem;
}

.legal-article h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

.legal-article h3 {
    color: var(--gray-700);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-article p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.legal-article ul {
    list-style: disc inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.legal-article strong {
    color: var(--gray-900);
    font-weight: 600;
}

.legal-article a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-article a:hover {
    color: var(--primary-dark);
}

@media (prefers-color-scheme: dark) {
    .legal-article h2 {
        color: var(--primary);
    }

    .legal-article h3,
    .legal-article p,
    .legal-article li {
        color: var(--gray-300);
    }

    .legal-article strong {
        color: var(--white);
    }
}

/* ===== SIMULATEUR / CALCULATEUR ===== */
.simulator-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #0F1020 100%);
    color: var(--white);
}

.simulator-section .section-tag {
    background: rgba(201, 150, 12, 0.15);
    color: var(--primary);
    border: 1px solid rgba(201, 150, 12, 0.3);
}

.simulator-section .section-header h2,
.simulator-section .section-header p {
    color: var(--white);
}

.simulator {
    max-width: 980px;
    margin: 2rem auto 0;
}

.simulator-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.simulator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.simulator-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.simulator-field label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.simulator-field input[type="number"],
.simulator-field select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 200ms ease, background 200ms ease;
}

.simulator-field input[type="number"]:focus-visible,
.simulator-field select:focus-visible {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 150, 12, 0.2);
}

.simulator-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9960C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.simulator-field select option {
    background: var(--secondary);
    color: var(--white);
}

.simulator-radio {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.simulator-radio label {
    flex: 1;
    min-width: 140px;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    font-weight: 500;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulator-radio label:has(input:checked) {
    border-color: var(--primary);
    background: rgba(201, 150, 12, 0.15);
    color: var(--primary);
}

.simulator-radio input[type="radio"] {
    accent-color: var(--primary);
}

.simulator-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.simulator-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
    box-shadow: 0 4px 14px rgba(201, 150, 12, 0.3);
}

.simulator-submit:hover {
    background: #DDA70F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 150, 12, 0.4);
}

.simulator-submit:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* === Résultat === */
.simulator-result {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 150, 12, 0.4);
    border-radius: 16px;
    padding: 2rem;
    animation: simResultIn 400ms ease;
}

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

.simulator-result-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.simulator-result-header h3 {
    color: var(--primary);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 0.5rem 0 0;
}

.simulator-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.result-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.result-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.result-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.result-card-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.simulator-tips {
    background: rgba(255, 165, 0, 0.1);
    border-left: 3px solid #FFA500;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.simulator-tips strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFB851;
}

.simulator-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simulator-tips li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
}

.simulator-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFA500;
    font-weight: bold;
}

.simulator-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.simulator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 150, 12, 0.3);
    transition: all 200ms ease;
}

.simulator-link:hover {
    background: rgba(201, 150, 12, 0.1);
    border-color: var(--primary);
}

/* Mobile */
@media (max-width: 768px) {
    .simulator-form { padding: 1.25rem; }
    .simulator-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .simulator-result-grid { grid-template-columns: 1fr; }
    .simulator-cta { flex-direction: column; align-items: stretch; }
    .simulator-cta a { text-align: center; }
}
