        /* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'akira'; /* Name you'll use in CSS */
    src: url('./fonts/Akira\ Expanded\ Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves performance and avoids invisible text */
}

@font-face {
    font-family: 'satoshi'; /* Name you'll use in CSS */
    src: url('./fonts/Satoshi-Variable.ttf') format('truetype');
    font-display: swap; /* Improves performance and avoids invisible text */
}

:root {
    --bg-gray: #E5E6E4;
    --dark-green: #0A1B10;
    --red: #FF0000;
    --orange: #F39C12;
    --font-main: 'satoshi','Arial', sans-serif;
    --font-title: 'akira','Arial Black', 'Impact', sans-serif; /* Pour l'effet massif du titre */
}



body {
    background-color: var(--bg-gray);
    font-family: var(--font-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* --- ARRIÈRE-PLAN --- */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh; /* Couvre 65% de la hauteur de l'écran */
    /* REMPLACEZ L'URL PAR VOTRE IMAGE D'ANIMÉ */
    background: url('./imgs/banner.png') center/cover no-repeat;
    z-index: 0;
}

/* --- CONTENEUR GLOBAL --- */
.container {
    max-width: 1400px;
    margin: 0 2rem;
    padding: 2rem 0 ;
}

.bg-blue {
    background: linear-gradient(to bottom, #E1DFDF, #1D71B8);
}

/* --- MISE À JOUR : NAVIGATION FIXE --- */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Les nouvelles propriétés pour fixer la barre */
    position: fixed;
    top: 1rem; /* Maintient l'espace avec le bord haut de l'écran */
    left: 50%;
    transform: translateX(-50%); /* Règle d'or pour centrer un élément fixed */
    width: calc(100% - 4rem); /* S'adapte à l'écran en gardant de la marge */
    max-width: 1336px; /* S'aligne parfaitement avec la largeur de votre .container */
    z-index: 9999; /* Niveau maximum pour passer au-dessus de toutes les sections */
    
    /* Animation douce pour le scroll (voir l'astuce JS plus bas) */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Classe dynamique ajoutée lors du défilement pour améliorer la lisibilité */
.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.85); /* Devient plus opaque */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-circle img {
    width: 80px;
    height: 80px;
}

.btn-red {
    background-color: var(--red);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 900 !important;
    letter-spacing: 1px;
}

/* --- GRILLE PRINCIPALE --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
    margin-top: 23vh; /* Ajuste la position du texte par rapport à l'image */
}

/* --- COLONNE GAUCHE (TYPOGRAPHIE) --- */
.title-white h1, .title-dark h1 {
    font-family: var(--font-title);
    font-size: 6.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
}

.title-white {
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Pour lisibilité sur fond clair */
    position: relative;
    z-index: 2;
}

.title-dark {
    color: var(--dark-green);
    margin-top: 5vh; /* Pousse le mot FESTIVAL sur la zone grise */
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    max-width: 85%;
    margin: 2rem 0;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.btn-dark {
    background-color: black;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* --- COLONNE DROITE (CARTE GLASSMORPHISM) --- */
.right-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 3rem;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px); /* Ajuste la position de la carte sur la ligne de démarcation */
}

.coming-soon {
    background-color: black;
    color: white;
    font-family: var(--font-title);
    font-size: 2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.ovals-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.oval {
    background-color: var(--dark-green);
    width: 70px;
    height: 130px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oval-inner-icon {
    width: 40px;
    height: 40px;
    background-color: #A55EEA; /* Couleur violette du logo interne */
    border-radius: 50%;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: black;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.btn-orange {
    background-color: var(--orange);
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* --- RESPONSIVE DESIGN BASIQUE --- */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .title-white h1, .title-dark h1 {
        font-size: 4rem;
    }
    .glass-card {
        width: 100%;
        margin-top: 2rem;
    }
}

/* =========================================
   NOUVELLE SECTION : THÈME (FORME EN "S")
   ========================================= */
.theme-section {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 2rem;
}

/* Ligne Supérieure */
.theme-row-top {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    position: absolute;
    direction: rtl;
    right: 0
}

.s-shape-top {
    height: 280px;
    background: url('https://images.unsplash.com/photo-1578353022122-108078b6630b?q=80&w=1000') center top/cover no-repeat;
    border-radius: 150px 0 0 150px;
    border: 4px solid #0084ff; /* Bordure bleue */
    border-right: none;
    position: relative;
    /* Décale légèrement vers la droite pour rejoindre le bloc du bas */
    margin-right: -4px; 
}

.line-black-right {
    width: 60px;
    height: 4px;
    background-color: black;
    margin-bottom: 1.5rem;
    margin-left: auto; /* Aligne le trait à droite */
}

.theme-text-right p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: right;
    color: #333;
}

/* Ligne Inférieure */
.theme-row-bottom {
    position: absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: 78% 22%;
    align-items: center;
    margin-top: -4px; /* Superpose les bordures pour créer l'illusion d'une seule forme */

}

.theme-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.label-bold {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
}

.line-black-left {
    height: 2px;
    flex-grow: 1; /* Le trait prend l'espace restant */
    background-color: black;
}

.heavy-title-large {
    font-family: var(--font-title);
    font-size: 3.2rem;
    line-height: 1;
    text-transform: uppercase;
    color: black;
}

.s-shape-bottom {
    height: 280px;
    background: url('https://images.unsplash.com/photo-1578353022122-108078b6630b?q=80&w=1000') center bottom/cover no-repeat;
    border-radius: 0 150px 150px 0;
    border: 4px solid #0084ff;
    border-left: none;
}


/* =========================================
   NOUVELLE SECTION : INFOS & RÉSERVATION
   ========================================= */
.info-section {
    margin-top: 6rem;
    margin-bottom: 5rem;
    padding-left: 0px !important;
}

.line-thick-dark {
    width: 120px;
    height: 6px;
    background-color: var(--dark-green);
    margin-bottom: 2rem;
}

.heavy-title-md {
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: black;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.info-right-flex {
    display: flex;
    align-items: center; /* Aligne l'image et la liste horizontalement */
    gap: 2rem;
    justify-content: flex-start; /* Aligne vers la ligne centrale */
}

.event-image {
    width: 250px;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1000') center/cover no-repeat;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-grow: 2;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.features-list i {
    font-size: 1.5rem;
    color: black;
    width: 30px;
    text-align: center;
}

/* Ajustements Responsive basiques pour ces nouvelles sections */
@media (max-width: 1024px) {
    .theme-row-top, .theme-row-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .s-shape-top, .s-shape-bottom {
        border-radius: 50px;
        border: 4px solid #0084ff;
        margin: 0;
    }
    .theme-text-right {
        padding: 0;
    }
    .theme-text-right p {
        text-align: left;
    }
    .line-black-right {
        margin-left: 0;
    }
    .info-right-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}   

    .clip-image {
        clip-path: polygon(58% 0, 58% 43%, 100% 44%, 100% 100%, 50% 100%, 50% 54%, 0 54%, 0 0);
        background-image: url('./imgs/banner.png');
        border-radius: 1rem;
        /* clip-path: inset(0 round 20px); */
        height: 60dvh;
    }

/* =========================================
   MISE À JOUR : 5ÈME ÉDITION (CHUTE INDIVIDUELLE)
   ========================================= */
.edition-section {
    /* REMPLACEZ CE LIEN PAR VOTRE IMAGE DE FOND NUAGEUSE */
    padding: 6rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden; /* Empêche les personnages de dépasser sur mobile */
}

.edition-grid {
    margin-top: 0;
    align-items: flex-start; /* Alignement en haut pour laisser la chute se faire */
}

/* En-tête (Chiffre + Titre) - Inchangé */
.edition-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.number-five {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.edition-title h2 {
    font-size: 2rem;
    color: white;
    font-family: var(--font-title);
}

/* Zone des boutons - Inchangée */
.edition-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.button-group-bottom {
    display: flex;
    gap: 1rem;
}

/* === MISE À JOUR : LOGIQUE DE CHUTE INDIVIDUELLE === */
.edition-right {
    position: relative; /* Crucial pour le positionnement absolu des enfants */
    width: 100%;
    min-height: 600px; /* Donne de l'espace pour que la chute se voie */
    display: block; /* Annule l'ancien flexbox */
    height: 100%;
    background-image: url("./imgs/cloud-1.png");
}

.falling-char {
    position: absolute; /* Positionne chaque perso de manière indépendante */
    width: 150px; /* Base pour tous */
    height: auto;
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.25)); /* Ombre portée douce */
    
    /* Base de l'animation commune (chute/tumble) */
    animation-name: fall-tumble;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Positionnement Aléatoire et Timing Individuel pour chaque personnage */
.char-1 { 
    top: 5%; left: 26%; 
    animation-duration: 7s; /* Rythme le plus rapide */
    animation-delay: 0s; 
    width: 300px;
}
.char-2 { 
    top: 40%; right: 5%; 
    animation-duration: 10s; /* Rythme lent */
    animation-delay: -2s; /* Commence 'mi-air' pour désynchroniser */
    width: 230px; /* Légère variation de taille */
}
.char-3 { 
    bottom: 5%; right: 25%; 
    animation-duration: 9s; 
    animation-delay: -4s; 
    width: 330px;
}
.char-4 { 
    top: 40%; left: 5%;
    animation-duration: 8s; 
    animation-delay: -1s; 
    width: 250px; /* Plus petit */
}

/* Animation CSS : Une chute légère avec un léger roulement (tumble) */
@keyframes fall-tumble {
    0% { transform: translate(0, 0) }
    50% { transform: translate(0, 30px) }
    100% { transform: translate(0, 0) }
}

/* Ajustements Responsive */
@media (max-width: 1024px) {
    .edition-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .edition-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .edition-title h2 {
        font-size: 2.5rem;
    }
    .button-group-bottom {
        flex-wrap: wrap;
    }
    
    /* Réduction de la zone de chute sur mobile */
    .edition-right {
        min-height: 400px;
        height: 100%;
    }
    /* .falling-char {
        width: 100px;
    } */
    .char-1 { top: 5%; left: 50%; transform: translateX(-50%); }
    .char-2 { top: 50%; right: 10%; transform: translateY(-50%); }
    .char-3 { bottom: 5%; left: 50%; transform: translateY(-50%); }
    .char-4 { top: 50%; left: 5%; transform: translateY(-50%); }
}

/* =========================================
   NOUVELLE SECTION : BOUTIQUE & CAROUSEL
   ========================================= */
.boutique-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden; /* Empêche la scrollbar horizontale globale */
}

/* Grille 50/50 stricte */
.boutique-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

/* --- COLONNE GAUCHE --- */
.boutique-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pousse les contrôles vers le bas */
    padding-bottom: 2rem;
    min-height: 500px; /* Assure de l'espace pour le nuage */
}

.cloud-decor {
    position: absolute;
    top: 10%;
    left: -20%;
    width: 140%;
    height: auto;
    object-fit: contain;
    pointer-events: none; /* Le nuage ne bloque pas les clics */
    mix-blend-mode: screen; /* Rend le nuage plus aérien sur le fond bleu */
    opacity: 0.9;
}

/* Contrôles du carousel */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10; /* Au-dessus du nuage */
    padding-left: 2rem;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.carousel-btn:hover {
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;
}

.dot.active {
    background-color: black;
    border-color: black;
}

/* --- COLONNE DROITE --- */
.boutique-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 1rem;
}

.text-white {
    color: white !important;
    text-shadow: none; /* Enlève l'ombre si elle était héritée */
}

.boutique-desc {
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-shop {
    align-self: flex-start;
    margin-bottom: 3rem;
}

/* Piste du Carousel */
.carousel-track-wrapper {
    width: 100%;
    position: relative;
}

.shop-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Permet aux cartes de déborder vers la droite de l'écran */
    width: calc(50vw + 2rem); 
    padding-bottom: 1rem;
    /* Cache la barre de défilement (Scrollbar) pour un look propre */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.shop-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Carte Produit */
.shop-card {
    min-width: 280px;
    background-color: #f0f4f8; /* Gris très clair bleuté */
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: black;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Pousse le footer en bas de la carte */
}

.product-price {
    color: var(--orange);
    font-weight: 800;
    font-size: 1rem;
}

.btn-buy {
    background-color: var(--dark-green);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .boutique-split {
        grid-template-columns: 1fr; /* Passe à 1 seule colonne sur mobile */
    }
    .boutique-left {
        min-height: 200px;
        align-items: flex-start; /* Réaligne les contrôles */
    }
    .carousel-controls {
        padding-left: 0;
    }
    .shop-track {
        width: 100vw; /* Sur mobile, le carousel prend 100% de l'écran */
        padding-right: 2rem;
    }
}

/* =========================================
   NOUVELLE SECTION : ACTUALITÉS (CAROUSEL)
   ========================================= */
.news-section {
    /* Crée le fond divisé : bleu en haut, gris en bas */
    background: linear-gradient(to bottom, #1D71B8 0%, #1D71B8 45%, var(--bg-gray) 45%, var(--bg-gray) 100%);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 2rem;
    padding: 2rem;
}

.news-main-title {
    text-align: center;
    color: white;
    font-family: var(--font-title);
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Conteneur principal du carousel */
.news-carousel-container {
    position: relative;
    width: 100%;
    /* LES VARIABLES MAGIQUES POUR LE CALCUL PARFAIT */
    --gap: 2rem; 
    /* La carte centrale prend 50% de l'écran moins l'espacement */
    --card-width: calc(50vw - var(--gap)); 
    /* Le padding latéral garantit que la première carte est parfaitement centrée */
    --padding-side: calc(50vw - (var(--card-width) / 2));
}

/* L'EFFET DE FLOU (BLUR) MAGIQUE */
.fade-overlay {
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: var(--padding-side); /* Le flou couvre EXACTEMENT les demi-cartes sur les côtés */
    z-index: 10;
    pointer-events: none;
}

.fade-left {
    left: 0;
    /* Dégradé de couleur correspondant au fond gris clair */
    background: linear-gradient(to right, rgba(229, 230, 228, 0.95) 0%, rgba(229, 230, 228, 0) 100%);
    /* Flou réel avec masque progressif pour une transition douce */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to right, black 20%, transparent 100%);
    mask-image: linear-gradient(to right, black 20%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(229, 230, 228, 0.95) 0%, rgba(229, 230, 228, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

/* Piste défilante */
.news-track {
    display: flex;
    gap: var(--gap);
    padding: 0 var(--padding-side); /* Applique l'espacement calculé */
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-track::-webkit-scrollbar {
    display: none; /* Cache la scrollbar (Chrome/Safari) */
}

/* Cartes Actualités */
.news-card {
    width: var(--card-width);
    min-width: unset; /* Annule l'ancienne largeur fixe */
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
    /* Effet visuel pour le "Highlight" */
    opacity: 0.4;
    transform: scale(0.95); /* Réduit légèrement les cartes sur les côtés */
    transition: all 0.4s ease-in-out;
}

.news-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: black;
    border-radius: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.news-tag {
    background-color: black;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-date {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
}

.news-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: black;
    line-height: 1.2;
}

.news-excerpt {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

/* Contrôles du bas */
.news-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.news-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
    transition: transform 0.2s;
}

.news-btn:hover {
    transform: scale(1.2);
}

.news-pagination {
    background-color: #d1d4d6; /* Pilule grise */
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #777;
    background: transparent;
    cursor: pointer;
}

.news-dot.active {
    background-color: black;
    border-color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-main-title { font-size: 2.5rem; }
    .news-track { padding: 0 5vw; }
    .news-card { min-width: 320px; }
    .fade-overlay { width: 10%; } /* Réduit l'effet de flou sur mobile */

    .news-carousel-container {
        --card-width: 80vw; /* La carte prend 80% de l'écran sur mobile */
    }
}

.news-card.in-focus {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   NOUVELLE SECTION : INTERACTION & COMPTE À REBOURS
   ========================================= */
.interactive-section {
    padding: 6rem 2rem;
}

/* --- PARTIE HAUTE (GRILLE) --- */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

/* Colonne Gauche : Arches */
.interactive-left .heavy-title-large {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.interactive-left {
    min-width: 0; /* LA CORRECTION CRUCIALE : empêche la grille d'exploser */
    display: flex;
    flex-direction: column;
}

.arch-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.arch-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Centre parfaitement la flèche verticalement */
    z-index: 10;
    font-size: 1.5rem;
    color: black;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

/* .arch-nav-arrow:hover {
    transform: scale(1.1);
} */

.arch-nav-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.arch-prev {
    left: 0;
    width: 50px;
}

.arch-next {
    right: 0;
    width: 50px;
}

.arch-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 0 3rem; /* Crée de l'espace à l'intérieur pour que les flèches ne cachent pas les cartes */
    
    /* Masquer les barres de défilement */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.arch-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0; /* Empêche les cartes de s'écraser */
}

.arch-shape {
    width: 130px;
    height: 160px;
    background-color: #d8dbdd;
    border-radius: 80px 80px 12px 12px; 
}

/* .arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.arch-shape {
    width: 130px;
    height: 160px;
    background-color: #d8dbdd; /* Gris clair pour les espaces vides */
    /* Arrondi parfait en haut, coins légèrement arrondis en bas */
    /* border-radius: 80px 80px 12px 12px;  */
/* } */

.arch-label {
    font-weight: 800;
    font-size: 0.9rem;
    color: black;
}

/* Colonne Droite : Formulaire */
.form-main-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.idea-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 800;
    color: black;
}

.form-group input, 
.form-group textarea {
    background-color: transparent;
    border: 1px solid #7a7a7a;
    border-radius: 8px;
    padding: 0.8rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: black;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: black; /* Focus visuel */
}

.btn-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* --- PARTIE BASSE (COMPTE À REBOURS) --- */
.countdown-section {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-pill {
    width: 100%;
    max-width: 900px;
    border: 2px solid var(--dark-green);
    border-radius: 100px;
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 4rem;
    font-weight: 300; /* Police très fine comme sur la maquette */
    color: black;
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    color: #444;
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 3rem;
    font-weight: 300;
    color: black;
    margin-top: -1.5rem; /* Ajuste l'alignement vertical des ":" */
}

.text-center {
    text-align: center;
}

.countdown-footer .heavy-title-large {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.countdown-footer .description {
    max-width: 800px;
    margin: 0 auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .countdown-pill {
        flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
        border-radius: 30px;
        padding: 2rem;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .time-separator {
        display: none; /* Cache les séparateurs sur mobile pour gagner de la place */
    }
    
    .time-block {
        width: 40%; /* Deux blocs par ligne sur mobile */
    }
}

/* =========================================
   FOOTER (PIED DE PAGE)
   ========================================= */
.site-footer {
    background-color: var(--dark-green);
    color: white;
    padding: 6rem 0 2rem;
    margin-top: 4rem;
}

/* --- PARTIE HAUTE (LOGO + SLOGAN) --- */
.footer-top {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.logo-img {
    width: 150px;
    height: auto;
}

.footer-slogan .heavy-title-large {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    /* Assure que la police impactante est bien blanche sur fond sombre */
    color: white; 
    text-shadow: none; 
}

.slogan-subtext {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* --- PARTIE CENTRALE (SPLIT 40/60) --- */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Donne un peu plus de place aux liens à droite */
    gap: 5rem;
    margin-bottom: 4rem;
}

/* Newsletter & Réseaux */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--orange); /* Bordure orange fine */
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #a0a0a0;
}

.newsletter-input:focus {
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3); /* Lueur orange au focus */
}

.newsletter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* Grille de liens */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    text-decoration: none;
    color: #b0b5b1; /* Gris clair bleuté */
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: white;
}

/* --- PARTIE BASSE (COPYRIGHT) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Ligne de séparation subtile */
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #b0b5b1;
}

.legal-links {
    display: flex;
    gap: 2.5rem;
}

.legal-links a {
    text-decoration: none;
    color: #b0b5b1;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: white;
}

/* --- RESPONSIVE DESIGN (MOBILE & TABLETTE) --- */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-slogan .heavy-title-large {
        font-size: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr; /* Passe à une seule colonne */
        gap: 4rem;
    }

    .newsletter-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur petit mobile */
    }
}

/* --- MASQUER LES ÉLÉMENTS MOBILES SUR DESKTOP --- */
.mobile-only {
    display: none;
}

/* --- RESPONSIVE : MENU MOBILE --- */
@media (max-width: 1024px) {
    /* Cache les éléments desktop */
    .desktop-only {
        display: none !important;
    }

    /* Affiche le conteneur mobile */
    .mobile-only {
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }

    /* Ajuste la pilule de navigation pour mobile */
    .glass-nav {
        justify-content: flex-end; /* Pousse les icônes à droite */
        padding: 0.6rem 1rem;
        width: calc(100% - 2rem);
        border-radius: 50px;
    }

    /* Repositionne le logo sur la gauche */
    .nav-logo {
        position: absolute;
        left: -5px; /* Déborde légèrement sur la gauche comme sur la maquette */
        top: 50%;
        transform: translateY(-50%); /* Centre parfaitement verticalement */
    }

    .logo-circle img {
        width: 75px;
        height: 75px;
    }

    /* Bouton Ticket Rouge (Pilule) */
    .btn-red-ticket {
        background-color: var(--red);
        color: white;
        border: none;
        width: 60px;
        height: 38px;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    }

    /* Icône Menu Burger (3 traits) */
    .hamburger-menu {
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 0;
        margin-right: 0.5rem; /* Espace avec le bord droit */
    }

    .hamburger-menu span {
        display: block;
        width: 35px;
        height: 4px;
        background-color: #0A1B10; /* Vert très foncé / Noir */
        border-radius: 4px;
        transition: 0.3s ease;
    }
}

/* =========================================
   MENU MOBILE OVERLAY & ANIMATIONS
   ========================================= */

/* L'écran du menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-green); /* Utilise votre vert foncé charte graphique */
    z-index: 9998; /* Juste en dessous de la barre de navigation (qui est à 9999) */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* État par défaut (Caché en haut) */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* État Actif (Menu Ouvert) */
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--font-title);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--orange);
}

.mobile-socials {
    display: flex;
    gap: 2rem;
}

.mobile-socials a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.2s ease;
}

.mobile-socials a:hover {
    color: var(--orange);
}

/* --- ANIMATION DU BOUTON BURGER EN "X" --- */
/* Nécessite de cibler les "span" que nous avons créés dans le bouton */
.hamburger-menu {
    position: relative;
    z-index: 10000; /* S'assure que le bouton reste cliquable par-dessus le menu */
}

/* Quand la classe 'active' est ajoutée via JS */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0; /* Cache la barre du milieu */
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* =========================================
   PAGE BLOG : STYLES SPÉCIFIQUES
   ========================================= */

/* --- SECTION HERO (À la une) --- */
.blog-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden; /* Cache les slides qui dépassent */
    background-color: var(--dark-green); /* Couleur de fond pendant le chargement */
}

/* Dégradé sombre pour lisibilité du texte */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 27, 16, 0.9) 0%, rgba(10, 27, 16, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.blog-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag-orange {
    background-color: var(--orange);
    color: black;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.tag-dark {
    background-color: var(--dark-green);
    color: white;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.hero-excerpt {
    color: #e0e0e0;
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Le nouveau conteneur de chaque article */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* On reprend l'ancien alignement du hero */
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    
    /* Animation de fondu */
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* État actif géré par le JS */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.btn-dark-pill {
    background-color: rgba(10, 27, 16, 0.8);
    color: #8fbc8f; /* Texte vert clair */
    border: 1px solid #8fbc8f;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.btn-dark-pill:hover {
    background-color: rgba(10, 27, 16, 1);
}

/* --- SECTION LISTE (Fond Orange) --- */
.blog-list-section {
    background-color: #FF8C00; /* Orange vif de la maquette */
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

/* Tentacules en fond */
.bg-tentacle {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 400px;
    /* Ajoutez l'URL de votre dessin de tentacule ici (idéalement un PNG/SVG rouge/orange foncé transparent) */
    background: url('VOTRE_IMAGE_TENTACULE.png') top right/contain no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Contrôles au-dessus du titre */
.featured-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ctrl-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

.ctrl-dots {
    display: flex;
    gap: 0.5rem;
}

.ctrl-dots .dot {
    width: 6px;
    height: 6px;
    background-color: rgba(0,0,0,0.3);
    border: none;
}
.ctrl-dots .dot.active {
    background-color: black;
    transform: scale(1.2);
}

.section-title-spacing {
    margin-bottom: 3rem;
    font-size: 4rem;
}

/* --- BARRE DE RECHERCHE --- */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-form {
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0.4rem;
    width: 100%;
    max-width: 600px;
}

.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.btn-search-red {
    background-color: var(--red);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
}

/* --- FILTRES --- */
.filter-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid black;
    color: black;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: black;
    color: var(--orange);
}

/* --- GRILLE D'ARTICLES --- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.article-card {
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5; /* Ratio portrait parfait pour vos images */
    box-shadow: 10px 0px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px); /* L'article se soulève au survol */
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 140, 0, 0.9) 0%, rgba(255, 140, 0, 0) 100%);
    /* Le dégradé interne a une teinte orange foncé/marron */
}

.article-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    z-index: 2;
}

.article-card-title {
    color: white;
    font-family: var(--font-title);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-card-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* --- PAGINATION --- */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.page-link {
    background: transparent;
    border: none;
    color: black;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.page-link.active {
    background-color: var(--red);
    color: white;
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 8px; /* Carré arrondi comme sur la maquette */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-dots {
    color: black;
    font-weight: 800;
    letter-spacing: 2px;
}

/* --- WRAPPER COMPTE À REBOURS BLOG --- */
.countdown-wrapper {
    background-color: #E5E6E4; /* Gris clair */
    padding: 6rem 0;
}

/* --- RESPONSIVE MOBILE (BLOG) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }
}

@media (max-width: 600px) {
    .blog-hero {
        height: auto;
        padding-top: 120px; /* Espace pour la navbar fixée */
    }

    .section-title-spacing {
        font-size: 2.5rem;
    }
    
    .search-form {
        border-radius: 30px;
        padding: 0.3rem;
    }
    
    .search-input {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Bouton recherche rond sur mobile */
    .btn-search-red {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* Remplace le texte "RECHERCHER" par une icône loupe visuellement via HTML ou on le réduit */
        font-size: 0; 
    }
    .btn-search-red::before {
        content: '\f002'; /* Code FontAwesome pour la loupe */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1rem;
    }

    /* Rend les filtres "scrollables" horizontalement sur mobile pour gagner de la place */
    .filter-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .filter-tags::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        white-space: nowrap;
    }

    .article-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }
    
    .article-card {
        aspect-ratio: auto;
        height: 450px; /* Fixe une hauteur pour l'image sur mobile */
    }
}

/* =========================================
   PAGE BOUTIQUE (SHOP) : STYLES SPÉCIFIQUES
   ========================================= */

.shop-page {
    background-color: var(--bg-gray); /* Fond gris clair global */
    min-height: 100vh;
}

/* --- SECTION HERO (En-tête bleu) --- */
.shop-hero {
    /* Fond dégradé ciel */
    background: linear-gradient(180deg, #589bce 0%, #87aed0 100%);
    padding: 10rem 0 4rem; /* Padding top plus grand pour la navbar fixée */
    position: relative;
    overflow: hidden;
}

.shop-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.shop-hero-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.shop-number-five {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.shop-hero-title h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: white;
    text-shadow: none;
}

.shop-hero-right {
    position: relative;
}

.shop-hero-character {
    width: 350px;
    height: auto;
    display: block;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15));
    animation: float-characters 6s ease-in-out infinite;
}

/* --- SECTION PRINCIPALE BOUTIQUE --- */
.shop-main-section {
    padding: 4rem 2rem 8rem;
}

.shop-main-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Layout Grille (Sidebar à gauche, Produits à droite) */
.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
}

/* --- SIDEBAR (Filtres) --- */
.shop-sidebar {
    /* Sticky permet à la barre de rester visible quand on scrolle les produits */
    position: sticky;
    top: 120px; 
    align-self: flex-start;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #c0c0c0; /* Ligne de séparation grise */
    color: black;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.filter-item:hover {
    color: var(--orange);
}

.filter-count {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

/* --- GRILLE DE PRODUITS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Nous réutilisons la classe .shop-card déjà créée pour la page d'accueil ! */

/* Pagination spécifique à la boutique */
.shop-pagination {
    margin-top: 4rem;
}

/* --- RESPONSIVE MOBILE (SHOP) --- */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr; /* Sidebar et produits sur une seule colonne */
        gap: 3rem;
    }

    .shop-sidebar {
        position: static; /* Retire l'effet sticky sur mobile */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 produits par ligne sur tablette/mobile */
        gap: 1.5rem;
    }

    .shop-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .shop-hero-character {
        width: 250px; /* Personnage plus petit */
        margin: 0 auto;
    }

    .shop-hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .shop-main-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .shop-number-five {
        width: 80px;
    }

    .shop-hero-title h2 {
        font-size: 1.8rem;
    }

    /* Optionnel : passer à 1 colonne sur les très petits écrans */
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Reste à 2 colonnes comme sur votre maquette mobile */
        gap: 1rem;
    }

    /* Ajuste la taille des cartes pour qu'elles rentrent à deux sur mobile */
    .shop-card {
        min-width: unset; /* Annule le min-width de la page d'accueil */
        padding: 0.8rem;
    }
    
    .product-img {
        height: 180px; /* Image moins haute sur mobile */
        margin-bottom: 1rem;
    }

    .product-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .product-footer {
        flex-direction: column; /* Empile le prix et le bouton sur mobile */
        align-items: flex-start;
        gap: 0.8rem;
    }

    .btn-buy {
        width: 100%; /* Bouton pleine largeur sur mobile */
        padding: 0.6rem 0;
    }
}

/* =========================================
   PAGE CONTACT : STYLES SPÉCIFIQUES
   ========================================= */

.contact-page {
    background-color: var(--bg-gray);
    padding-top: 80px; /* Laisse de l'espace pour la Navbar fixe */
    min-height: 100vh;
}

.contact-hero {
    margin-bottom: 8rem;
}

/* --- WRAPPER IMAGE & FORMULAIRE --- */
.contact-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.contact-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* La carte contenant le formulaire (Superposée à droite sur PC) */
.contact-form-card {
    position: absolute;
    right: 5%;
    top: 20%;
    background: rgba(255, 255, 255, 0.7); /* Verre transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3rem;
    border-radius: 20px;
    width: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-form-card h1 {
    font-size: 3.8rem;
    line-height: 1;
    color: var(--dark-green);
    margin-bottom: 2rem;
    text-shadow: none;
}

/* --- LE FORMULAIRE --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #a0a0a0;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: black;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-input::placeholder {
    color: #555;
}

.contact-input:focus {
    border-color: var(--dark-green);
    background-color: rgba(255, 255, 255, 0.5); /* S'illumine un peu au focus */
}

/* Style spécifique pour le select (menu déroulant) */
.custom-select-wrapper select {
    appearance: none; /* Cache la flèche par défaut du navigateur */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem top 50%;
    background-size: 0.65rem auto;
    cursor: pointer;
}

.contact-textarea {
    resize: vertical;
}

.btn-contact-submit {
    background-color: var(--dark-green);
    color: var(--orange); /* Texte orange sur fond vert sombre */
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
}

/* --- TEXTE & RÉSEAUX SOCIAUX --- */
.contact-text-info {
    max-width: 50%; /* Garde le texte à gauche, aligné avec l'image */
    color: #333;
}

.contact-text-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-contact-label {
    font-weight: 800;
    margin-bottom: 1rem !important;
}

.contact-socials {
    display: flex;
    gap: 1.5rem;
}

.contact-socials a {
    color: black;
    font-size: 1.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* --- RESPONSIVE MOBILE (CONTACT) --- */
@media (max-width: 1024px) {
    .contact-page {
        padding-top: 120px;
    }

    .contact-main-img {
        height: 350px;
        border-radius: 20px;
    }

    /* Sur mobile, on retire la carte du flux absolu pour qu'elle passe sous l'image */
    .contact-form-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        background: transparent; /* Retire le fond de verre sur mobile selon la maquette */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 2rem 0; /* Aligne le formulaire avec les marges du container */
        box-shadow: none;
        margin-top: 1rem;
    }

    .contact-form-card h1 {
        font-size: 3rem;
    }

    .contact-text-info {
        max-width: 100%; /* Le texte prend toute la largeur */
    }
}

/* =========================================
   PAGE PARTENAIRES : CORRECTION COMPLÈTE
   ========================================= */

.partners-page {
    background-color: var(--bg-gray);
    min-height: 100vh;
}

/* --- SECTION HERO --- */
.partners-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(10, 27, 16, 0.7), rgba(10, 27, 16, 0.7)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=2000') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-action-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-pill-link {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-pill-link:hover {
    background-color: white;
    color: var(--dark-green);
}

/* --- SECTION MARQUEE (DÉFILEMENT) --- */
.marquee-section {
    background-color: var(--orange);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-item {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: black;
    text-transform: uppercase;
    padding: 0 3rem;
    display: flex;
    align-items: center;
}

/* Le petit point séparateur entre les textes */
.marquee-item::after {
    content: '•';
    margin-left: 3rem;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- GRILLE DES PARTENAIRES --- */
.partners-grid-section {
    padding: 6rem 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.partner-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.partner-logo-wrapper {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.partner-logo-wrapper img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.partner-name {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: black;
}

.partner-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pousse les boutons vers le bas */
}

/* Les boutons de la carte */
.partner-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-actions-top {
    display: flex;
    gap: 1rem;
}

.btn-partner-outline {
    flex: 1; /* Les deux boutons partagent l'espace également */
    text-align: center;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    padding: 0.6rem 0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn-partner-outline:hover {
    background-color: black;
    color: white;
}

.btn-partner-solid {
    background-color: black;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 0;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.btn-partner-solid:hover {
    background-color: var(--orange);
    color: black;
}

/* --- SECTION TRAVAILLONS ENSEMBLE --- */
.work-together-section {
    padding-bottom: 8rem;
}

.work-together-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.work-form-side .heavy-title-large {
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.work-form-side .description {
    margin-bottom: 2.5rem;
}

.collaboration-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.collab-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.collab-input:focus {
    border-color: black;
}

.collab-textarea {
    resize: vertical;
}

.btn-submit-collab {
    padding: 1.2rem;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
}

.work-image-side {
    width: 100%;
    height: 100%;
}

.collab-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }

    .work-together-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-img {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .hero-action-links {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .hero-pill-link {
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }

    .partner-actions-top {
        flex-direction: column; /* Empile les boutons "Communauté" et "Boutique" sur mobile */
    }
}

/* =========================================
   PAGE SINGLE (ARTICLE DÉTAILLÉ) - MISE À JOUR
   ========================================= */

.single-page {
    background-color: var(--bg-gray);
    /* Retrait du padding-top pour que l'image passe sous la navbar */
    min-height: 100vh;
}

/* --- NOUVEL EN-TÊTE DE L'ARTICLE (FULL BACKGROUND) --- */
.single-hero {
    position: relative;
    width: 100%;
    height: 90vh; /* L'image prend 70% de l'écran */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; /* Pousse le contenu vers le bas */
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dégradé qui passe du vert très sombre (en bas) au transparent (en haut) */
    background: linear-gradient(to top, rgba(10, 27, 16, 0.95) 0%, rgba(10, 27, 16, 0.4) 50%, rgba(10, 27, 16, 0.1) 100%);
    z-index: 1;
}

.single-hero-content {
    position: relative;
    z-index: 2; /* S'assure que le texte est au-dessus du dégradé */
}

.single-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.single-date {
    font-size: 0.9rem;
    color: #e0e0e0; /* Gris très clair pour le fond sombre */
    font-weight: 600;
}

.single-main-title {
    color: white !important; /* Le titre devient blanc */
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Légère ombre pour détacher le texte */
}

.single-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange); /* Ajoute un contour orange sympa à l'avatar */
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    color: white; /* Texte blanc */
}

.author-role {
    font-size: 0.85rem;
    color: var(--orange); /* Texte orange */
    font-weight: bold;
}

/* On supprime l'ancienne image puisqu'elle est en background */
.single-cover-img {
    display: none; 
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .single-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .single-hero {
        height: auto;
        padding-top: 150px; /* Sur mobile, on force un peu d'espace en haut pour la navbar */
        padding-bottom: 2rem;
    }

    .single-main-title {
        font-size: 2.2rem;
    }
}

/* --- CORPS DE L'ARTICLE --- */
.single-content-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0 6rem;
}

.single-content {
    /* Largeur idéale pour le confort de lecture */
    max-width: 850px; 
    width: 100%;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.content-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: black;
}

.single-content p {
    margin-bottom: 2rem;
}

.single-content h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--dark-green);
    margin: 4rem 0 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.single-content h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: black;
    margin: 3rem 0 1rem;
    line-height: 1.3;
}

.content-figure {
    margin: 3rem 0;
}

.content-figure img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.content-figure figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    font-style: italic;
}

.content-quote {
    border-left: 5px solid var(--orange);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background-color: rgba(243, 156, 18, 0.1); /* Fond légèrement orangé */
    border-radius: 0 15px 15px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: black;
    font-weight: 600;
}

.content-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--dark-green);
    font-weight: bold;
    font-style: normal;
}

/* Zone de partage */
.single-share-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #ccc;
    padding-top: 2rem;
    margin-top: 4rem;
}

.share-text {
    font-weight: 800;
    color: black;
}

/* --- ARTICLES SIMILAIRES --- */
.related-articles-section {
    padding: 4rem 0 8rem;
    border-top: 1px solid #ddd;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .single-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .single-page {
        padding-top: 120px;
    }

    .single-main-title {
        font-size: 2.2rem;
    }

    .single-cover-img {
        height: 300px;
        border-radius: 15px;
    }

    .single-content {
        font-size: 1.05rem;
    }

    .content-intro {
        font-size: 1.15rem;
    }

    .single-content h2 {
        font-size: 2rem;
    }

    .content-quote {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .single-share-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

/* --- PAGE PRODUIT SINGLE --- */
.product-page {
    background-color: var(--bg-gray);
    padding-top: 130px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: black;
    text-decoration: none;
}

.product-grid-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

/* Galerie */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    background-color: white;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.thumb.active {
    border-color: var(--orange);
}

/* Détails */
.product-details {
    display: flex;
    flex-direction: column;
}

.product-details .heavy-title-large {
    font-size: 3rem;
    line-height: 1.1;
    margin: 1rem 0 2rem;
    color: var(--dark-green);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
}

.product-short-desc {
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Sélecteurs */
.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 1rem;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
}

.size-selector input { display: none; }

.size-selector label {
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.2s;
}

.size-selector input:checked + label {
    background-color: black;
    color: white;
    border-color: black;
}

/* Actions Panier */
.cart-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.quantity-wrapper {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 50px;
    overflow: hidden;
}

.quantity-wrapper button {
    width: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-wrapper input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: bold;
    -moz-appearance: textfield;
}

.btn-add-cart {
    flex-grow: 1;
    padding: 1rem;
}

/* Accordéons */
.acc-item {
    border-top: 1px solid #ddd;
}

.acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.acc-item.active .acc-body {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .product-grid-single { grid-template-columns: 1fr; }
    .main-image-wrapper img { height: 400px; }
}

/* =========================================
   PAGE BILLETTERIE : STYLES SPÉCIFIQUES
   ========================================= */

.tickets-page {
    background-color: var(--bg-gray);
}

/* --- HERO --- */
.tickets-hero {
    position: relative;
    height: 80vh;
    min-height: 350px;
    background: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?q=80&w=2000') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- GRILLE DES BILLETS --- */
.tickets-selection {
    padding: 4rem 0;
    margin-top: -80px; /* Fait remonter les cartes sur l'image d'en-tête */
    position: relative;
    z-index: 10;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: end; /* Aligne les cartes par le bas pour que la carte 'featured' dépasse en haut */
}

.ticket-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-10px);
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.ticket-header h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.ticket-header p {
    font-size: 0.85rem;
    color: #666;
}

.ticket-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: black;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--orange);
}

.ticket-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.ticket-features li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ticket-features li i { color: #27ae60; } /* Check vert */
.ticket-features li.disabled { color: #aaa; text-decoration: line-through; }
.ticket-features li.disabled i { color: #e74c3c; } /* Croix rouge */

/* Sélecteur de quantité stylisé */
.ticket-quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.qty-btn:hover { background: #e0e0e0; }

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 900;
    pointer-events: none; /* Empêche de taper au clavier pour forcer les boutons */
}

/* Styles Spécifiques : Featured (Week-end) et VIP */
.ticket-card.featured {
    border-color: var(--orange);
    padding-top: 4rem; /* Plus haut que les autres */
}

.ticket-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: black;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.ticket-card.vip {
    background: var(--dark-green);
    color: white;
}

.ticket-card.vip .ticket-header h3, 
.ticket-card.vip .price-amount, 
.ticket-card.vip .ticket-features li {
    color: white;
}

.ticket-card.vip .ticket-header p { color: #bbb; }
.ticket-card.vip .ticket-header { border-bottom-color: rgba(255,255,255,0.1); }
.ticket-card.vip .ticket-quantity-control { background: rgba(0,0,0,0.5); }
.ticket-card.vip .qty-input { color: white; }

/* --- CHECKOUT SUMMARY --- */
.checkout-section {
    padding-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.checkout-box {
    background: white;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.checkout-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid black;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.total-row {
    text-align: right;
}

.total-row span:first-child {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
}

.checkout-form .form-row {
    display: flex;
    gap: 1rem;
}

.w-100 { width: 100%; }

.secure-text {
    text-align: center;
    font-size: 0.85rem;
    color: #27ae60;
    margin-top: 1rem;
    font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ticket-card.featured {
        padding-top: 2.5rem; /* Remet la taille normale sur mobile */
    }
    
    .checkout-form .form-row {
        flex-direction: column;
    }
    
    .checkout-summary {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .total-row { text-align: left; }
}

/* =========================================
   BILLETTERIE : DISPOSITION OPTIMISÉE
   ========================================= */

.ticketing-optimized {
    padding: 6rem 0 8rem;
    position: relative;
}

.ticketing-layout {
    display: grid;
    grid-template-columns: 1fr 400px; /* Split: Billets à gauche, Sidebar 400px à droite */
    gap: 4rem;
    align-items: start;
}

.step-title {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-title span {
    background-color: var(--orange);
    color: black;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

/* --- CARTES DE BILLETS (LISTE HORIZONTALE) --- */
.tickets-list-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-row-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.ticket-row-info h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: black;
}

.ticket-row-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.ticket-row-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1rem;
}

/* Accordéon Détails Billets */
.toggle-details {
    background: transparent;
    border: none;
    color: var(--dark-green);
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-features-hidden {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
    display: none; /* Caché par défaut */
}

.ticket-features-hidden.active {
    display: block;
}

.ticket-features-hidden li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #444;
}
.ticket-features-hidden li i { color: #27ae60; margin-right: 8px;}
.ticket-features-hidden li.disabled { color: #aaa; text-decoration: line-through; }
.ticket-features-hidden li.disabled i { color: #e74c3c; }

/* Styles spécifiques (Week-end / VIP) */
.ticket-row-card.featured-row {
    border-color: var(--orange);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.ticket-row-card.vip-row {
    background-color: #1a1a1a;
}
.ticket-row-card.vip-row h3, .ticket-row-card.vip-row .ticket-row-desc { color: white; }
.ticket-row-card.vip-row .toggle-details { color: #aaa; }

/* Contrôle quantité */
.ticket-quantity-control {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 0.3rem;
}
.ticket-row-card.vip-row .ticket-quantity-control { background: #333; }
.ticket-row-card.vip-row .qty-input { color: white; }

/* --- SIDEBAR STICKY (PANIER & FORMULAIRE) --- */
.sticky-checkout-panel {
    position: sticky;
    top: 120px; /* Reste fixé sous la navbar pendant le scroll */
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cart-summary-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.cart-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

.dynamic-cart-list {
    list-style: none;
    margin-bottom: 1.5rem;
    min-height: 40px; /* Garde la place même vide */
}

.dynamic-cart-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: black;
}

.empty-cart-msg {
    color: #999 !important;
    font-weight: normal !important;
    font-style: italic;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid black;
    padding-top: 1rem;
    font-weight: 900;
}

.grand-total-label {
    font-size: 1.5rem;
    color: var(--red);
}

.compact-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: var(--font-main);
    outline: none;
}
.compact-input:focus { border-color: black; }

/* --- BARRE FLOTTANTE MOBILE --- */
.mobile-floating-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    
    /* Cachée par défaut sur Desktop et quand panier vide */
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-floating-checkout.visible {
    transform: translateY(0);
}

.floating-left {
    display: flex;
    flex-direction: column;
}

.float-label { font-size: 0.8rem; color: #666; font-weight: bold;}
.float-total { font-size: 1.4rem; font-weight: 900; color: var(--red); }

.btn-float-continue {
    background: var(--dark-green);
    color: var(--orange);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .ticketing-layout {
        grid-template-columns: 1fr; /* Le formulaire passe sous les billets */
        gap: 3rem;
    }

    .sticky-checkout-panel {
        position: static; /* Retire l'effet sticky sur mobile car il passe en bas */
    }

    .ticket-row-card {
        flex-direction: column; /* Empile les infos et les boutons de quantité */
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .ticket-row-action {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
}