        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent-gold: #d4af37;
            --accent-gold-dark: #b8941f;
            --text-light: #f5f5f5;
            --text-muted: #a0a0a0;
            --bg-dark: #0f0f0f;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-light);
            background: var(--primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        /* NAVBAR */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 1rem 8%;
            background: rgba(10, 10, 10, 0.98);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            min-width: 200px;
        }

        .logo-container:hover {
            transform: scale(1.02);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e4a6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-subtext {
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 300;
        }

        .nav-center {
            display: flex;
            gap: 3rem;
            list-style: none;
            position: relative;
        }

        .nav-center a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-center a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-center a:hover {
            color: var(--accent-gold);
        }

        .nav-center a:hover::before {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            transform: translateY(-2px);
        }

        .icon-btn svg {
            width: 24px;
            height: 24px;
            stroke: var(--text-light);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.3s ease;
        }

        .icon-btn:hover svg {
            stroke: var(--accent-gold);
        }

        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--accent-gold);
            color: var(--primary);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
        }

        /* HERO */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.2);
}

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
            display: flex;           /* AJOUTÉ */
            flex-direction: column;  /* AJOUTÉ */
            align-items: center;     /* AJOUTÉ */
            gap: 1.5rem;            /* AJOUTÉ : espace entre les boutons */
        }

        .hero-pretitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    /* margin-bottom: 1.5rem;  SUPPRIMÉ */
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text-light);
    /* margin-bottom: 3rem;  SUPPRIMÉ */
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.4s forwards;
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: 8px;
    /* margin-bottom: 2rem;  SUPPRIMÉ */
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-cta-flash {
    position: relative;
    overflow: hidden; /* Important pour le reflet */
    border: 1px solid var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.05) !important;
    /* On combine l'entrée et le pulse dans une seule déclaration propre */
    animation: fadeInUp 1.4s ease 0.6s forwards, pulseGlow 3s infinite 2s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    z-index: 5;
}

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: transparent;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid var(--accent-gold);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1.4s ease 0.6s forwards;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-gold);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .hero-cta:hover::before {
            left: 0;
        }

        .hero-cta:hover {
            color: var(--primary);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1.6s ease 0.8s forwards;
        }

        .scroll-indicator span {
            display: block;
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, transparent, var(--accent-gold));
            margin: 0 auto 0.5rem;
            animation: scrollPulse 2s ease-in-out infinite;
        }

        .hero-cta-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    animation: shineSweep 4s infinite 3s;
}

        @keyframes scrollPulse {
            0%, 100% { transform: translateY(0); opacity: 0.3; }
            50% { transform: translateY(10px); opacity: 1; }
        }

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

    @keyframes flashBorder {
    0%, 100% { 
        border-color: var(--accent-gold);
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% { 
        border-color: #ffffff; /* Le bord devient blanc au sommet du flash */
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        border-color: var(--accent-gold);
    }
    50% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        border-color: #ffffff;
    }
}


        /* STORY SECTION */
        .story-section {
            padding: 10rem 8%;
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .story-image {
            position: relative;
            height: 600px;
            border-radius: 2px;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

        .story-image:hover img {
            transform: scale(2.05);
        }

        .story-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid var(--accent-noir);
            opacity: 0.3;
            pointer-events: none;
        }

        .story-content {
            padding-right: 3rem;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .story-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .story-text {
            font-size: 1.05rem;
            line-height: 2;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--accent-gold);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2rem;
            transition: gap 0.3s ease;
        }

        .story-link:hover {
            gap: 1.5rem;
        }

        .story-link svg {
            width: 20px;
            height: 20px;
            stroke: var(--accent-gold);
        }

        /* COLLECTIONS SHOWCASE */
        .collections-showcase {
            padding: 10rem 8%;
            background: var(--bg-dark);
            position: relative;
        }

        .showcase-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 6rem;
        }

        .showcase-header h2 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .showcase-header p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            font-weight: 300;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .collection-card {
            position: relative;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s ease;
        }

        .collection-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .collection-card:hover .collection-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .collection-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        .collection-overlay p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            font-weight: 300;
        }

        .view-all-btn {
            display: inline-block;
            margin: 5rem auto 0;
            padding: 1.2rem 3rem;
            background: transparent;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid var(--text-light);
            transition: all 0.4s ease;
            text-align: center;
            display: block;
            max-width: 300px;
        }

        .view-all-btn:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* PRODUCTEURS SECTION */
.producteurs-section {
    padding: 10rem 8%;
    background: var(--primary);
}

.producteurs-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.producteurs-section .section-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.producteurs-section .section-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.producteurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto 4rem;
}

.producteur-card {
    background: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.producteur-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.producteur-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.producteur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.producteur-card:hover .producteur-image img {
    transform: scale(1.1);
}

.producteur-info {
    padding: 2.5rem;
}

.producteur-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.producteur-location {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.producteur-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* CONTACT SECTION */
.contact-section {
    padding: 10rem 8%;
    background: var(--bg-dark);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.contact-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-main-card {
    background: linear-gradient(
        rgba(26, 26, 26, 0.8), 
        rgba(15, 15, 15, 0.8)
    ), url('OIP.webp') no-repeat center center;
    background-size: cover;
    backdrop-filter: blur(10px);
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-main-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.contact-main-card:hover::before {
    opacity: 1;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    height: 100%;
    min-height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    position: relative;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.contact-map:hover::before {
    opacity: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.4) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0.2) contrast(1.2);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-main-card {
        padding: 3rem 2rem;
    }
    
    .contact-map {
        height: 400px;
    }
}

        /* FEATURES */
        .features-section {
            padding: 10rem 8%;
            background: var(--primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--accent-gold);
            border-radius: 50%;
            font-size: 1.5rem;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .feature-item p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* CTA BANNER */
        .cta-banner {
            padding: 8rem 8%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-banner h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            padding: 1.3rem 4rem;
            background: var(--accent-gold);
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        /* PAYMENT METHODS BANNER */
.payment-banner {
    padding: 3rem 8%;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.payment-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-logos img {
    height: 30px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
    filter: grayscale(0);
}

.payment-logos img:hover {
    opacity: 0.8;
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .payment-logos {
        gap: 1.5rem;
    }
    
    .payment-logos img {
        height: 25px;
    }
}

        /* FOOTER */
        .footer {
            background: var(--bg-dark);
            padding: 6rem 8% 3rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 4rem;
            max-width: 1600px;
            margin: 0 auto 4rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e4a6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-weight: 600;
        }

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

        .footer-section li {
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .hero-title { font-size: 5rem; }
            .collections-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-center { 
                gap: 2rem; 
            }
        }

        @media (max-width: 968px) {
            .nav-center { 
                position: static;
                transform: none;
                display: none;
            }
            
            .navbar {
                justify-content: space-between;
            }
            
            .story-grid { grid-template-columns: 1fr; gap: 3rem; }
            .collections-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
            .hero-title { font-size: 3.5rem; }
        }

/* SIGNATURE PRODUCT LUPUS 8 */
.signature-product {
    padding: 10rem 8%;
    background: var(--secondary);
    position: relative;
}

.signature-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.signature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.signature-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}

.signature-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.signature-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.signature-description {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.signature-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.signature-spec {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.spec-icon {
    font-size: 1.5rem;
}

.signature-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: var(--accent-gold);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.signature-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.signature-image {
    position: relative;
    height: 600px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.signature-product:hover .signature-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 968px) {
    .signature-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .signature-title {
        font-size: 3.5rem;
    }
    
    .signature-image {
        height: 400px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-pretitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding: 0 1rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* Pour les tablettes et mobiles */
@media (max-width: 1024px) {
    .producteurs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }
}

/* Pour les téléphones */
@media (max-width: 768px) {
    .producteurs-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
    }
    
    .producteurs-section .section-intro h2 {
        font-size: 2.5rem; /* On réduit un peu le titre aussi */
    }
}