/* --- VARIABLES DE MARQUE (CONCEPT 3) --- */
:root {
    --primary-color: #ff6600; /* Orange Néon */
    --bg-dark: #121212;      /* Fond Noir profond */
    --card-bg: #1e1e1e;      /* Gris Anthracite pour les cartes */
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-boutique {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: white !important;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    /* On utilise l'image pure. Le gradient sombre est maintenu pour la lisibilité. */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallaxe pro */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

/* --- GRILLE DES PÔLES (EXPERT) --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.grid-poles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon-orange {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- BIO SECTION --- */
.bg-dark { background: #0a0a0a; }

.bio-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bio-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: -10px 10px 0px var(--primary-color);
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.social-icons {
    margin-top: 20px;
    font-size: 1.5rem;
}

.social-icons a {
    color: var(--text-white);
    margin: 0 15px;
    transition: var(--transition);
}

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

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* On pourra ajouter un menu burger plus tard */
    .hero h1 { font-size: 2.5rem; }
    .bio-flex { flex-direction: column; }
}

/* --- MENU BURGER --- */
.burger {
    display: none; /* Caché sur ordinateur */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* --- RESPONSIVE MOBILE (768px et moins) --- */
@media (max-width: 768px) {
    .burger { display: flex; } /* On affiche le burger */

    .nav-links {
        position: fixed;
        right: -100%; /* Caché hors de l'écran par défaut */
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        border-left: 2px solid var(--primary-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    /* Quand le menu est ouvert */
    .nav-links.active {
        right: 0;
    }

    /* Animation du Burger en "X" quand on clique */
    .burger.toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .burger.toggle span:nth-child(2) { opacity: 0; }
    .burger.toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* --- PAGE VIDEOS --- */
.text-orange { color: var(--primary-color); }

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-video {
    margin-bottom: 60px;
}

.video-info {
    margin-top: 20px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 0 0 15px 15px;
}

.sub-title {
    margin: 40px 0 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.video-item p {
    margin-top: 10px;
    font-weight: bold;
    color: var(--text-gray);
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #444;
}

.video-container-small {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #333;
}

.video-container-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* --- SHOP DESIGN --- */
.active-page { color: var(--primary-color) !important; font-weight: bold; }

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #333;
}

.product-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }

.product-img { position: relative; height: 250px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 5px;
}

.product-info { padding: 20px; text-align: center; }
.price { font-size: 1.2rem; color: var(--primary-color); font-weight: bold; margin: 10px 0; }

/* Boutons de paiement spécialisés */
.buy-buttons { display: flex; gap: 10px; margin-top: 15px; }

.btn-paypal {
    flex: 1;
    background: #0070ba;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    flex: 1;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* --- SECTION PARTENAIRES --- */
.business-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle-pro {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card:hover {
    border-color: var(--primary-color);
    background: #222;
}

.partner-card.highlight {
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.partner-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.partner-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Boutons spécifiques */
.btn-outline {
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
}

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

.btn-solid {
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Trust Zone */
.trust-zone {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.flags {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%; /* Cache le menu à droite */
        top: 0;
        height: 100vh;
        width: 70%;
        background: #121212;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
    }

    /* C'EST CETTE PARTIE QUI FAIT APPARAITRE LE MENU */
    .nav-links.active {
        right: 0; /* Ramène le menu à l'écran */
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 9999; /* <--- Force le menu à passer devant tout */
        /* ... reste du code ... */
    }
}

/* Animation des barres en X */
.burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger.toggle span:nth-child(2) {
    opacity: 0; /* La barre du milieu disparaît */
}

.burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* --- EN-TÊTE PAGE VIDÉOS --- */
.video-intro-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px; /* Espace avant les vidéos */
    padding-bottom: 40px;
    border-bottom: 1px solid #333; /* Séparation subtile */
}

.video-intro-text {
    flex: 2; /* Le texte prend plus de place */
    text-align: left;
}

.video-intro-text .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.accroche-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
}

.video-intro-img {
    flex: 1; /* L'image est plus petite, en rappel */
    text-align: right;
}

.video-intro-img img {
    width: 100%;
    max-width: 300px; /* Taille contrôlée du portrait */
    height: auto;
    border-radius: 15px; /* Bord arrondi pro */
    border: 2px solid #333; /* Cadre sombre subtil */
    transition: var(--transition);
}

.video-intro-img img:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

/* --- RESPONSIVE VIDÉOS HEADER --- */
@media (max-width: 768px) {
    .video-intro-flex {
        flex-direction: column-reverse; /* L'image passe au-dessus du texte sur mobile */
        text-align: center;
        gap: 20px;
    }

    .video-intro-text, .video-intro-img {
        text-align: center;
    }
    
    .video-intro-text .section-title {
        text-align: center;
    }

    .video-intro-img img {
        max-width: 200px; /* Encore plus petit sur mobile */
    }
}

/* --- SECTION CONTACT --- */
.contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #1e1e1e; /* Fond sombre légèrement plus clair */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: var(--transition);
}

.contact-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #333;
}

/* Style spécifique pour le select */
.form-group select {
    appearance: none; /* Enlever le style par défaut */
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
}

/* --- ECOSYSTÈME SECTION --- */
.ecosystem-section {
    padding: 100px 20px;
    text-align: center;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.eco-card {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.eco-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.eco-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.eco-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Smooth scroll pour que le clic sur le bouton soit fluide */
html {
    scroll-behavior: smooth;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn:hover {
    background: rgba(255, 102, 0, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Style pour le bouton Vidéos */
.btn-orange {
    background-color: #ff6600; /* Ton orange M.I.N VISION */
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.3s ease;
    font-weight: bold;
}

.btn-orange:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* On s'assure que les boutons de la nav sont bien alignés */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Style pour le bouton Vidéos */
.btn-orange {
    background-color: #ff6600; /* Ton orange M.I.N VISION */
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.3s ease;
    font-weight: bold;
}

.btn-orange:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* On s'assure que les boutons de la nav sont bien alignés */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger {
    display: none; /* Masqué par défaut sur desktop */
    cursor: pointer;
    z-index: 1001; /* Doit être supérieur à la navbar */
}

@media screen and (max-width: 768px) {
    .burger {
        display: block; /* Apparaît sur mobile */
        position: relative;
    }

    .nav-links {
        display: none; /* Masqué par défaut sur mobile jusqu'au clic */
        /* ... reste de ton code pour le menu mobile ... */
    }

    .nav-links.nav-active {
        display: flex; /* S'affiche quand on clique sur le burger */
    }
}
@media screen and (max-width: 768px) {
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .btn-orange, .btn-boutique {
        display: inline-block;
        width: 80%; /* Pour qu'ils ne touchent pas les bords du menu mobile */
        padding: 12px 0;
    }
}


/* Style de base du burger */
.burger {
    display: none; /* Masqué sur PC */
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white; /* Couleur des barres */
    margin: 5px;
    transition: all 0.3s ease;
}

/* Affichage uniquement sur mobile */
@media screen and (max-width: 768px) {
    .burger {
        display: block;
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        right: -100%; /* Cache le menu à droite */
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
        z-index: 1001;
    }

    .nav-links.nav-active {
        right: 0; /* Affiche le menu au clic */
    }
}

/* La barre de navigation globale */
.navbar {
    display: flex;
    justify-content: space-between; /* Pousse le logo à gauche et les actions à droite */
    align-items: center;
    padding: 10px 5%;
}

/* Le groupe à droite */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Espace entre les langues et le burger */
}

/* Sur mobile, on peut ajuster l'ordre si besoin */
@media screen and (max-width: 768px) {
    .logo img {
        height: 40px; /* On réduit un peu le logo sur mobile pour gagner de la place */
    }
    
    .nav-actions {
        gap: 15px;
    }
}
/* La barre de navigation globale */
.navbar {
    display: flex;
    justify-content: space-between; /* Pousse le logo à gauche et les actions à droite */
    align-items: center;
    padding: 10px 5%;
}

/* Le groupe à droite */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Espace entre les langues et le burger */
}

/* Sur mobile, on peut ajuster l'ordre si besoin */
@media screen and (max-width: 768px) {
    .logo img {
        height: 40px; /* On réduit un peu le logo sur mobile pour gagner de la place */
    }
    
    .nav-actions {
        gap: 15px;
    }
}
.burger {
    z-index: 1010; /* Très haut pour rester cliquable */
    position: relative;
}

.footer {
    background-color: #111;
    padding: 50px 0 20px;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 25px;
    font-size: 1.5rem;
}

.social-icon {
    color: white;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: #ff6600; /* Ton orange M.I.N */
    transform: translateY(-3px);
}

.footer-hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px auto;
    width: 80%;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 1. CACHÉ SUR PC */
.nav-mobile-socials {
    display: none; /* Ne s'affiche pas sur les grands écrans */
}

/* 2. RÉGLAGES POUR LE FORMAT MOBILE (max 768px) */
@media screen and (max-width: 768px) {
    .nav-mobile-socials {
        display: flex; /* Devient visible uniquement sur mobile */
        justify-content: center;
        gap: 30px;
        margin-top: 50px; /* Espace important pour séparer des liens de navigation */
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Petite ligne de séparation élégante */
        width: 100%;
    }

    .nav-mobile-socials a {
        color: white;
        font-size: 1.6rem; /* Icônes un peu plus grandes pour être faciles à cliquer au doigt */
        transition: 0.3s ease;
    }

    .nav-mobile-socials a:hover {
        color: #ff6600; /* Orange M.I.N VISION au survol */
    }
}

/* Section Héritage */
.heritage-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* Un noir plus profond pour faire ressortir l'archive */
}

.heritage-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.heritage-text {
    flex: 1;
    min-width: 300px;
}

.heritage-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* L'effet Vieux Journal */
.img-vintage {
    width: 100%;
    filter: grayscale(100%) sepia(20%) contrast(1.2); /* Noir et blanc avec une touche de vieux papier */
    border: 10px solid #fff;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    transform: rotate(-2deg); /* Légère inclinaison pour le côté authentique */
    transition: 0.5s ease;
}

.img-vintage:hover {
    transform: rotate(0deg) scale(1.05); /* Se redresse au survol */
    filter: grayscale(0%); /* La couleur revient (optionnel) */
}

.caption {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #ff6600;
    font-size: 0.9rem;
    text-align: center;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales sur PC */
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.img-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff6600;
    margin-bottom: 15px;
    object-fit: cover;
}

.heritage-highlight {
    margin-top: 25px;
    font-style: italic;
    border-left: 3px solid #ff6600;
    padding-left: 15px;
    font-size: 0.95rem;
}

/* Responsive : On empile sur mobile */
@media screen and (max-width: 768px) {
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- La Section Héritage & Bio --- */
.heritage-section {
    padding: 100px 0; /* Plus d'espace aéré */
}

.heritage-grid {
    display: grid;
    /* NOUVEAU GRID : 60% pour la bio / 40% pour l'archive */
    grid-template-columns: 1.5fr 1fr; 
    gap: 80px; /* Plus d'espace entre les colonnes */
    align-items: center; /* Aligne tout verticalement au centre */
}

/* --- Colonne de MAME IBRA (Gauche) --- */
.heritage-col-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Aligne tout à gauche */
    align-items: flex-start; 
}

.bio-intro {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* La photo de Mame Ibra prend plus de volume */
.img-profile {
    width: 150px; /* Plus grand */
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ff6600; /* Bordure plus épaisse */
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.heritage-col-bio h3 {
    font-size: 2rem;
    margin: 0;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center; /* C'est cette ligne qui fait l'alignement parfait au milieu */
}

/* Le texte de la bio est plus aéré et grand */
.p-large {
    font-size: 1.1rem;
    line-height: 1.8; /* Plus d'espace entre les lignes */
    margin-bottom: 40px; /* Plus d'espace avant le bouton */
    color: #ccc;
    text-align: justify; /* Texte justifié pour un rendu plus propre */
}

/* Le bouton a aussi plus de présence */
.btn-heritage {
    padding: 15px 40px; /* Plus grand */
    font-size: 1rem;
    font-weight: bold;
}

.btn-heritage, .btn-orange {
    text-decoration: none; /* Retire le trait sous le texte */
    display: inline-block; /* Permet au bouton de garder sa forme */
    /* ... tes autres styles ... */
}

.btn-heritage:hover {
    background-color: #e65c00; /* Orange un peu plus foncé */
    transform: scale(1.05); /* Le bouton grossit très légèrement */
    transition: 0.3s;
}

/* --- Colonne de l'ARCHIVE (Droite) --- */
/* (Le CSS de .img-vintage reste le même ou s'adapte à sa colonne) */
.img-vintage {
    max-width: 100%;
    height: auto;
}

/* --- Responsive (Mobile) --- */
@media screen and (max-width: 992px) {
    .heritage-grid {
        /* On passe en 1 colonne sur les tablettes et mobiles */
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .heritage-col-bio {
        align-items: center; /* Centre tout sur mobile */
    }
    
    .bio-intro {
        flex-direction: column; /* Portrait au dessus du nom */
        gap: 15px;
    }
}

/* État initial des cartes (cachées) */
.card-anim {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Effet rebond léger */
}

/* État caché par défaut pour les pôles */
.card-anim {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease-out;
    visibility: hidden; /* Sécurité pour éviter les clics sur des éléments invisibles */
}

/* État affiché quand le JS ajoute .active */
.card-anim.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Les délais restent les mêmes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

/* Animation pour la Bio (gauche vers droite) */
.slide-left {
    opacity: 0;
    transform: translateX(-100px); /* Part de la gauche */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation pour l'Archive (droite vers gauche) */
.slide-right {
    opacity: 0;
    transform: translateX(100px); /* Part de la droite */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Activation commune */
.slide-left.active, .slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Petit effet de zoom spécial sur l'image d'archive quand elle est active */
.slide-right.active .img-vintage {
    animation: vintageAppear 1.5s ease-out;
}

@keyframes vintageAppear {
    0% { filter: grayscale(100%) brightness(0); }
    100% { filter: grayscale(100%) brightness(1); }
}

/* État initial : les cartes sont "lointaines" et invisibles */
.eco-pop {
    opacity: 0;
    transform: perspective(1000px) translateZ(-100px) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* Effet ressort */
}

/* État activé : elles reviennent à leur place */
.eco-pop.active {
    opacity: 1;
    transform: perspective(1000px) translateZ(0) rotateX(0);
}

/* Délais pour un effet circulaire (1 -> 2 -> 3) */
.eco-delay-1 { transition-delay: 0.2s; }
.eco-delay-2 { transition-delay: 0.4s; }
.eco-delay-3 { transition-delay: 0.6s; }

/* Animation de l'icône (Emoji) au survol */
.eco-card:hover .eco-icon {
    transform: scale(1.3) rotate(15deg);
    transition: 0.3s ease;
}

/* État initial : les cartes sont transparentes et légèrement en bas */
.partner-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

/* État activé */
.partner-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* On donne la priorité à la carte du milieu (highlight) */
.part-delay-high { transition-delay: 0.1s; } /* La carte centrale d'abord */
.part-delay-side { transition-delay: 0.4s; } /* Les côtés ensuite */

/* Animation spéciale pour la zone de confiance (drapeaux) */
.trust-reveal {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.trust-reveal.active {
    opacity: 1;
}

/* Effet de brillance discret sur la carte Highlight */
.partner-card.highlight.active {
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.5);
}

/* Animation du conteneur de formulaire */
.contact-expand {
    opacity: 0;
    transform: scaleY(0.9) translateY(20px);
    transform-origin: top;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-expand.active {
    opacity: 1;
    transform: scaleY(1) translateY(0);
}

/* Animation des champs (ils apparaissent un par un) */
.form-group-anim {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease-out;
}

.contact-expand.active .form-group-anim {
    opacity: 1;
    transform: translateX(0);
}

/* Délais pour les champs du formulaire */
.field-1 { transition-delay: 0.3s; }
.field-2 { transition-delay: 0.4s; }
.field-3 { transition-delay: 0.5s; }
.field-4 { transition-delay: 0.6s; }
.btn-delay { transition-delay: 0.8s; }

/* Effet au clic/focus sur les champs */
.contact-form input:focus, 
.contact-form textarea:focus, 
.contact-form select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
    outline: none;
    transition: 0.3s;
}

/* Animation douce pour le footer */
.footer-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}

.footer-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Effet interactif sur les icônes sociales */
.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: #ff6600;
    transform: scale(1.2) rotate(8deg);
}

/* Petit effet sur le nom du réalisateur */
.footer-copy strong {
    color: #ff6600;
    transition: 0.3s;
}

/* --- Animations du HERO --- */

/* 1. Le Titre : monte et apparaît en premier */
.hero-title-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease-out forwards;
    animation-delay: 0.2s; /* Départ quasi immédiat */
}

/* 2. Le Sous-titre : arrive juste après */
.hero-subtitle-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* 3. Le Bouton : arrive en dernier pour attirer le clic */
.hero-btn-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

/* Keyframes de l'animation */
@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optionnel : Effet de respiration sur le bouton pour attirer l'attention */
.btn-main {
    animation: pulseButton 2s infinite 2s; /* Commence après 2 secondes */
}

@keyframes pulseButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('img/hero.png');
    background-size: 100% auto; /* L'image prend 100% de la largeur sans zoomer en hauteur */
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #000; /* Fond noir pour boucher les vides si l'image est courte */
}

/* --- Animation d'entrée du Menu --- */
.nav-entry {
    opacity: 0;
    transform: translateY(-30px);
    animation: navSlideDown 1s ease-out forwards;
}

@keyframes navSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Effet sur le Logo --- */
.logo img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
    transform: scale(1.1) rotate(-2deg);
}

/* --- Animation des liens classiques --- */
.nav-links li a:not(.btn-orange):not(.btn-boutique) {
    position: relative;
}

.nav-links li a:not(.btn-orange):not(.btn-boutique)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff6600;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* --- Animation des boutons spéciaux --- */
.btn-orange, .btn-boutique {
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-orange:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-boutique:hover {
    background-color: #ffffff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* --- Animation du sélecteur de langue --- */
.lang-btn {
    transition: all 0.2s ease;
    cursor: pointer;
}

.lang-btn:hover {
    color: #ff6600;
    transform: scale(1.1);
}

/* Style identique pour les deux boutons d'action principaux */
.btn-orange, 
.btn-boutique {
    background-color: #ff6600; /* Orange M.I.N VISION */
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.3s ease;
    font-weight: bold;
    display: inline-block;
    border: none;
    text-decoration: none;
}

.btn-orange:hover, 
.btn-boutique:hover {
    background-color: #e65c00; /* Orange un peu plus sombre au survol */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    color: #fff !important; /* On force le texte à rester blanc */
}

/* --- Style de la Vidéo Principale --- */
.main-video {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 50px;
    border: 1px solid #333;
}

.video-info {
    padding: 25px;
    background: linear-gradient(to right, #1a1a1a, #000);
}

/* --- Style de la Grille "Netflix Style" --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.video-item {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #222;
}

.video-item:hover {
    transform: scale(1.05); /* Effet zoom au survol */
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
    border-color: #ff6600;
}

.video-container-small {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
}

.video-container-small iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* --- HERO VIDEO LUXURY STYLE --- */
.video-hero-lux {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 100px 5%;
    background: radial-gradient(circle at top left, #1a1a1a, #000); /* Fond dégradé subtil */
}

.hero-main-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    position: relative;
}

/* Titre imposant */
.hero-big-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text-orange-glow {
    color: #ff6600;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 450px;
    line-height: 1.6;
    border-left: 2px solid #ff6600;
    padding-left: 20px;
}

/* Montage Image & Cadres */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

/* Le cadre décoratif orange derrière l'image */
.frame-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    border: 1px solid rgba(255, 102, 0, 0.4);
    border-radius: 20px;
    z-index: 1;
}

.image-container {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid #333;
    transition: transform 0.5s ease;
}

.image-container img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: 0.5s;
}

.image-container:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Bouton sur l'image */
.image-overlay-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

.image-overlay-btn i {
    background: #ff6600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff6600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-main-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto;
        border-left: none;
        border-top: 2px solid #ff6600;
        padding: 20px 0;
    }
    .frame-decoration {
        width: 100%;
    }
}

/* Lueur orange pour tous les éléments importants */
.text-orange-glow {
    color: #ff6600;
    /* On garde une lueur intense mais propre */
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4), 0 0 40px rgba(255, 102, 0, 0.2);
    font-weight: bold;
}

/* Optionnel : Animation de pulsation douce sur la lueur */
.text-orange-glow {
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    }
    to {
        text-shadow: 0 0 25px rgba(255, 102, 0, 0.6), 0 0 10px rgba(255, 102, 0, 0.3);
    }
}

/* Lueur orange pour tous les éléments importants */
.text-orange-glow {
    color: #ff6600;
    /* On garde une lueur intense mais propre */
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4), 0 0 40px rgba(255, 102, 0, 0.2);
    font-weight: bold;
}

/* Optionnel : Animation de pulsation douce sur la lueur */
.text-orange-glow {
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    }
    to {
        text-shadow: 0 0 25px rgba(255, 102, 0, 0.6), 0 0 10px rgba(255, 102, 0, 0.3);
    }
}

.frame-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    border: 1px solid rgba(255, 102, 0, 0.6);
    border-radius: 20px;
    z-index: 1;
    /* Ajoute cette ligne pour la lueur du cadre */
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2); 
    transition: all 0.5s ease;
}

/* Le cadre s'illumine quand on survole l'image */
.hero-image-wrapper:hover .frame-decoration {
    border-color: #ff6600;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.4);
    transform: scale(1.02);
}
.hero-main-card {
    gap: 80px; /* Espace augmenté entre texte et image */
}

/* Style du titre de catégorie */
.sub-title-netflix {
    font-size: 1.5rem;
    color: #fff;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ff6600;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Style des cartes de la grille */
.video-item {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #ff6600;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.video-card-info {
    padding: 15px;
    background: #111;
}

.video-card-info .category {
    color: #ff6600;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.video-card-info h4 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

.image-overlay-link {
    text-decoration: none !important; /* Enlève le soulignement bleu par défaut */
    display: block; /* Pour que toute la zone du bouton soit cliquable */
    width: 100%;
}

.image-overlay-btn {
    cursor: pointer; /* Indique que c'est cliquable au passage de la souris */
    transition: background 0.3s ease;
}

.image-overlay-link:hover .image-overlay-btn {
    background: linear-gradient(transparent, rgba(255, 102, 0, 0.4)); /* Teinte orange au survol */
}
html {
    scroll-behavior: smooth;
}

/* --- EXTENSION DESIGN BOUTIQUE COSMÉTIQUE --- */
.brand-collaboration-hero {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid #222;
    grid-column: 1 / -1; /* Prend toute la largeur de la grille */
}

.brand-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.brand-hero-img img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.brand-hero-text {
    padding: 40px;
}

.collab-badge {
    color: #ff6600;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.brand-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.brand-subtitle {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

.product-mini-cat {
    font-size: 0.7rem;
    color: #ff6600;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.product-short-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

/* Ajustement responsive */
@media (max-width: 768px) {
    .brand-hero-grid {
        grid-template-columns: 1fr;
    }
    .brand-hero-text {
        padding: 25px;
        text-align: center;
    }
}

/* ==========================================================================
   EXTENSION DESIGN COSMÉTIQUE & GLOW (M.I.N GLOW)
   ========================================================================== */

/* 1. Palette de couleurs et variables cosmétiques */
:root {
    --gold-glow: #e6b89c;         /* Or rose / Nude lumineux */
    --terracotta: #c97a63;        /* Terracotta chic (teinte lèvres/blush) */
    --cream-bg: #fffaf7;          /* Fond de carte doux et lumineux */
    --soft-shadow: rgba(201, 122, 99, 0.08);
}

/* 2. Le Hero de Collaboration (Style Magazine de Mode) - CORRIGÉ */
.brand-collaboration-hero {
    background: linear-gradient(135deg, #161210 0%, #261c17 100%) !important;
    border: 1px solid rgba(230, 184, 156, 0.15) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-main-title {
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #2c2523 !important; /* Donne une couleur foncée visible à "M.I.N" */
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* Force le mot GLOW (ou les éléments mis en évidence) à prendre ta couleur orange/terracotta signature */
.brand-main-title .text-orange, 
.brand-main-title span {
    color: var(--terracotta) !important; /* Utilise la couleur terracotta ou remplace par #ff6600 selon ton choix */
}
/* 3. Transformation des cartes produits Cosmétiques */
.product-item.cosmetique {
    background: var(--cream-bg) !important; /* Fond crème doux pour trancher avec le fond sombre */
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px var(--soft-shadow);
}

/* Effet de survol doux et aérien */
.product-item.cosmetique:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(201, 122, 99, 0.15);
}

/* Textes à l'intérieur des produits cosmétiques */
.product-item.cosmetique .product-mini-cat {
    color: var(--terracotta) !important;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-item.cosmetique h3 {
    color: #2c2523 !important; /* Texte foncé doux (pas de noir pur agressif) */
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.3rem;
    margin: 8px 0;
}

.product-item.cosmetique .product-short-desc {
    color: #756661 !important; /* Description subtile */
    font-size: 0.88rem;
    line-height: 1.5;
}

.product-item.cosmetique .price {
    color: var(--terracotta) !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* 4. Badges de nouveauté arrondis et élégants */
.product-item.cosmetique .badge {
    background: var(--terracotta) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px !important; /* Effet pilule très moderne */
    top: 15px;
    left: 15px;
}

/* 5. Bouton de commande WhatsApp "Glow" */
.product-item.cosmetique .btn-whatsapp {
    background: linear-gradient(135deg, var(--terracotta) 0%, #b3634c 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important; /* Bouton ovale très doux */
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 122, 99, 0.3);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.product-item.cosmetique .btn-whatsapp:hover {
    background: linear-gradient(135deg, #b3634c 0%, var(--terracotta) 100%) !important;
    box-shadow: 0 6px 18px rgba(201, 122, 99, 0.5);
    transform: scale(1.02);
}

.product-item.cosmetique .btn-whatsapp i {
    font-size: 1.1rem;
}

/* 6. Boutons de Filtres de la Boutique */
.filter-btn {
    border-radius: 50px !important; /* Des filtres arrondis pour toute la page */
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #aaa;
    transition: all 0.3s ease;
}

/* Filtre cosmétique spécifique quand il est actif */
.filter-btn.active {
    background-color: var(--text-orange) !important;
    border-color: var(--text-orange) !important;
    color: #fff !important;
}

/* ==========================================
   STYLE SECTION AUDIO • MAME IBRA NDOUR
   ========================================== */

/* Conteneur principal de la section */
.audio-production-section {
    padding: 60px 20px;
    background-color: #121212; /* Fond sombre style plateforme de streaming */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* En-tête de la section (Titre et description) */
.audio-production-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.audio-production-section .section-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.audio-production-section .section-header p {
    font-size: 1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Grille des morceaux (3 colonnes sur PC, 1 sur Mobile) */
.audio-playlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte individuelle d'un morceau */
.audio-track-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Effet au survol de la carte */
.audio-track-card:hover {
    transform: translateY(-5px);
    border-color: #ff6600; /* Lueur orange subtile au survol */
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.15);
}

/* Zone de la pochette / image */
.track-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #252525;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.audio-track-card:hover .track-cover img {
    transform: scale(1.05); /* Léger zoom de l'image au survol */
}

/* Badge du numéro de piste (01, 02, 03) */
.track-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #ff6600;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 102, 0, 0.4);
}

/* Zone des détails (Texte et Lecteur) */
.track-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.track-details h3 {
    font-size: 1.25rem;
    margin: 0 0 5px 0;
    color: #ffffff;
    font-weight: 500;
}

.track-author {
    font-size: 0.9rem;
    color: #ff6600; /* Couleur d'accentuation pour l'auteur */
    margin: 0 0 20px 0;
    font-weight: 400;
}

/* Personnalisation du lecteur audio natif HTML5 */
.track-details audio {
    width: 100%;
    margin-top: auto; /* Aligne le lecteur tout en bas de la carte */
    border-radius: 8px;
}

/* ==========================================
   RESPONSIVE - ADAPTATION ÉCRANS
   ========================================== */
@media (max-width: 768px) {
    .audio-production-section {
        padding: 40px 15px;
    }

    .audio-production-section .section-header h2 {
        font-size: 1.6rem;
    }

    /* Optionnel : Si tu préfères un affichage en ligne (horizontal) sur mobile, décommmente ce bloc */
    /*
    .audio-track-card {
        flex-direction: row;
        height: auto;
    }
    .track-cover {
        width: 100px;
        height: 100px;
    }
    */
}

/* ==========================================
   STYLE PREMIUM SECTION AUDIO • M.I.N AUDIO
   Design: Dark Minimalist with Neon Glow
   ========================================== */

/* Variables de couleur pour une modification facile */
:root {
    --min-audio-bg: #121212;          /* Fond de page sombre */
    --card-bg-light: rgba(25, 25, 25, 0.6); /* Fond de carte translucide */
    --card-bg-dark: rgba(20, 20, 20, 0.9); /* Fond de carte sombre translucide */
    --accent-orange: #FF8533;        /* Couleur d'accentuation néon */
    --gold-accent: #E1A95F;          /* Couleur or subtile pour les titres */
    --text-primary: #FFFFFF;         /* Texte principal blanc */
    --text-secondary: #AAAAAA;       /* Texte secondaire gris */
    --card-border: rgba(255, 133, 51, 0.1); /* Bordure de carte néon très discrète */
}

/* Base de la section */
.audio-production-section {
    padding: 80px 20px;
    background-color: var(--min-audio-bg);
    color: var(--text-primary);
    font-family: 'Poppins', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* En-tête de section */
.audio-production-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.audio-production-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.audio-production-section .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Grille de playlist */
.audio-playlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte de morceau individuelle - EFFET VERRE TREMPÉ SOMBRE */
.audio-track-card {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px); /* Effet de flou du verre */
    -webkit-backdrop-filter: blur(10px);
}

/* Effet au survol de la carte */
.audio-track-card:hover {
    transform: translateY(-8px);
    background: var(--card-bg-dark);
    border-color: rgba(255, 133, 51, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 133, 51, 0.1);
}

/* Couverture et numéro de piste */
.track-cover {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.audio-track-card:hover .track-cover {
    transform: scale(1.02);
}

.track-cover img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Numéro de piste néon */
.track-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-orange);
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 133, 51, 0.3);
    box-shadow: 0 0 10px rgba(255, 133, 51, 0.3);
}

/* Détails du morceau */
.track-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track-details h3 {
    font-size: 1.6rem;
    color: var(--gold-accent); /* Titre en or subtil */
    font-weight: 500;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.track-author {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 25px 0;
    font-weight: 300;
}

/* PERSONNALISATION DU LECTEUR AUDIO HTML5 */
.track-details audio {
    width: 100%;
    height: 45px;
    margin-top: auto;
    border-radius: 10px;
    filter: sepia(20%) saturate(70%) hue-rotate(-20deg) opacity(0.85); /* Effet or/orange subtil sur les contrôles natifs */
}

/* ==========================================
   RESPONSIVE - ADAPTATION MOBILE
   ========================================== */
@media (max-width: 768px) {
    .audio-production-section {
        padding: 50px 15px;
    }

    .audio-production-section .section-header h2 {
        font-size: 2rem;
    }

    .audio-playlist-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .audio-track-card {
        padding: 20px;
    }

    .track-details h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   AMÉLIORATION DESIGN : TITRE & SOUS-TITRE
   ========================================== */

   .audio-production-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Titre principal avec dégradé Or/Blanc Lumineux */
.audio-production-section .section-header h2 {
    font-size: 3rem; /* Plus grand pour imposer le style */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    
    /* Effet dégradé premium dans le texte */
    background: linear-gradient(135deg, #FFFFFF 30%, #E1A95F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Légère ombre portée pour détacher le titre du fond noir */
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
}

/* Sous-titre épuré et élégant */
.audio-production-section .section-header p {
    font-size: 1.1rem;
    color: #A0A0A0;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

/* Petite ligne de séparation orange sous le bloc pour équilibrer le visuel */
.audio-production-section .section-header p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #FF8533; /* Ton orange signature */
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 133, 51, 0.6);
}

/* Ajustement responsive pour les smartphones */
@media (max-width: 768px) {
    .audio-production-section .section-header h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .audio-production-section .section-header p {
        font-size: 0.95rem;
        padding-bottom: 12px;
    }
}