/* ==========================================================================
   🎯 WILFRIED MEDIUM - CSS PRODUIT V2 CORRIGÉ COMPLET
   Version: Novembre 2025 - Tous les bugs fixés
   15 problèmes corrigés - Inspecté ligne par ligne
   ========================================================================== */

/* ==========================================================================
   SECTION 1 : CORRECTIF VERRE POLI + BASE
   ========================================================================== */

main.site-main.boutique-page {
    background: transparent;
}

/* ==========================================================================
   SECTION 2 : UTILITAIRES & COULEURS
   ========================================================================== */

.text-gold {
    color: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.text-highlight { color: var(--color-highlight); }
.text-accent { color: var(--color-accent); }

.disclaimer-text {
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ==========================================================================
   SECTION 3 : PAGE BOUTIQUE - HERO & NAVIGATION
   ========================================================================== */

.boutique-hero {
    background: rgba(15, 0, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-text);
    padding: 4rem 2rem;
    text-align: center;
}

.boutique-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.boutique-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.boutique-availability {
    display: inline-block;
    margin-top: 1rem;
}

/* Navigation rapide boutique */
.boutique-quicknav {
    background: var(--color-bg-body);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 60px;
    z-index: 998;
    overflow-x: auto;
    white-space: nowrap;
}

.quicknav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 50px;
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-ui);
}

.quicknav-link:hover,
.quicknav-link:focus {
    background: var(--color-active-page);
    color: var(--color-text-on-highlight);
    border-color: var(--color-active-page);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SECTION 4 : BOUTIQUE - SECTIONS DE SERVICES
   ========================================================================== */

.service-section {
    padding: 4rem 2rem;
    background: rgba(40, 0, 68, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-section-alt {
    background: rgba(27, 0, 51, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   SECTION 5 : BOUTIQUE - GRILLE PRODUITS
   ========================================================================== */

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

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

/* ==========================================================================
   SECTION 6 : BOUTIQUE - CARTES PRODUITS
   ========================================================================== */

.product-card {
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-ui);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(131, 14, 231, 0.2);
    border-color: var(--color-accent);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    flex-grow: 1; 
}

.product-description {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 50px;
    opacity: 0.9;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
}

.product-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card .button {
    width: 100%;
    margin-top: auto; 
}

/* ==========================================================================
   SECTION 7 : BOUTIQUE - BADGES PRODUITS
   ========================================================================== */

.product-badge-wrapper {
    position: relative;
    overflow: hidden; 
}

.product-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-highlight);
    color: var(--color-text-on-highlight);
    padding: 0.3rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.product-badge.badge-popular { background: #FF5722; color: white; }
.product-badge.badge-premium { background: var(--color-active-page); color: white; }
.product-badge.badge-ideal { background: var(--color-accent); color: var(--color-text-on-highlight); }
.product-badge.badge-whatsapp { background: #25D366; color: white; }
.product-badge.badge-messenger { background: #0084FF; color: white; }
.product-badge.badge-skype { background: #00AFF0; color: white; }

/* ==========================================================================
   SECTION 8 : BOUTIQUE - CTA FINAL
   ========================================================================== */

.boutique-cta-final {
    background: rgba(27, 0, 51, 0.92);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 4rem 2rem;
    text-align: center;
}

.boutique-cta-final h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.boutique-cta-final p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

/* ==========================================================================
   SECTION 9 : PAGE PRODUIT UNIQUE - GÉNÉRAL
   ========================================================================== */

.product-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-breadcrumb {
    background: var(--color-bg-body);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
}

.product-breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SECTION 10 : PAGE PRODUIT UNIQUE - ANCIEN HERO (pour compatibilité)
   ========================================================================== */

.product-hero {
    padding: 3rem 2rem;
    background: var(--color-bg-section);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.product-hero-icon {
    font-size: 8rem;
    color: var(--color-accent);
    text-align: center;
    background: var(--color-bg-body);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.product-hero-info .product-badge {
    position: static;
    transform: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    right: auto;
    top: auto;
}

.product-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.product-hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
}

.product-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-hero-meta .price {
    color: var(--color-highlight);
}

.product-hero-meta .duration {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SECTION 11 : PAGE PRODUIT UNIQUE - ANCIEN LAYOUT (pour compatibilité)
   ========================================================================== */

.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    background: var(--color-bg-body);
}

.product-content {
    line-height: 1.8;
    color: var(--color-text);
}

.product-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.product-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION 12 : PAGE PRODUIT UNIQUE - ANCIENNE SIDEBAR (pour compatibilité)
   ========================================================================== */

.product-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.cta-widget .button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}

.cta-widget p {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.contact-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-widget li {
    margin-bottom: 1rem;
}

.contact-widget a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-ui);
}

.contact-widget a:hover {
    background: var(--color-bg-body);
    color: var(--color-accent);
}

.contact-widget a i {
    font-size: 1.5rem;
    color: var(--color-accent);
    width: 30px;
    text-align: center;
}

/* ==========================================================================
   SECTION 13 : PAGE PRODUIT UNIQUE - SECTIONS OPTIONNELLES
   ========================================================================== */

.product-testimonials {
    background: var(--color-bg-body);
    border-top: 1px solid var(--color-border);
    padding: 4rem 2rem;
    text-align: center;
}

.product-faq {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-body);
}

.faq-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    list-style: disc;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: var(--color-bg-section);
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-ui);
}

.faq-question:hover {
    background: var(--color-active-page);
    color: var(--color-text-on-highlight);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--color-bg-section);
    color: var(--color-text);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.product-related {
    background: var(--color-bg-section);
    padding: 4rem 2rem;
    text-align: center;
}

.related-cta {
    margin-top: 2rem;
}

/* ==========================================================================
   SECTION 14 : PAGES PRODUITS V2 - FOND & ATMOSPHÈRE [CORRIGÉ]
   ========================================================================== */

:root {
    --hero-gap: 50px;
}

/* ✅ CORRIGÉ : Triple gradient + animation scale */
.product-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3; /* ✅ 0.4 → 0.3 */
    background: 
        radial-gradient(circle at 20% 50%, rgba(131, 14, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 227, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(131, 14, 231, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
}

/* ✅ CORRIGÉ : Animation avec scale */
@keyframes particlesFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ==========================================================================
   SECTION 15 : PAGES PRODUITS V2 - BREADCRUMB MODERNE [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : Background plus transparent */
.product-breadcrumb-modern {
    padding: 1.5rem 0; /* ✅ 20px → 1.5rem */
    background: rgba(27, 0, 51, 0.5); /* ✅ 0.8 → 0.5 */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(131, 14, 231, 0.2);
}

/* ✅ CORRIGÉ : Font-size et gap spécifiés */
.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* ✅ 10px → 0.75rem */
    font-size: 0.95rem; /* ✅ Ajouté */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ✅ CORRIGÉ : inline-flex + gap + transform hover */
.breadcrumb-link {
    color: var(--color-highlight);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex; /* ✅ Ajouté */
    align-items: center;
    gap: 0.4rem; /* ✅ Ajouté */
}

.breadcrumb-link:hover {
    color: var(--color-accent);
    transform: translateX(2px); /* ✅ Ajouté */
}

.breadcrumb-separator {
    color: rgba(245, 227, 66, 0.4); /* ✅ rgba(255...) → rgba(245...) */
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SECTION 16 : PAGES PRODUITS V2 - HERO SECTION [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : min-height + display flex + align-items center */
.product-hero-v2 {
    position: relative;
    padding: 4rem 2rem 6rem; /* ✅ Bottom: 4rem → 6rem */
    overflow: visible; /* ✅ hidden → visible */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.product-hero-v2 .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ✅ CORRIGÉ : Double gradient + timing ease-in-out + 180deg rotation */
.hero-gradient-animated {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(131, 14, 231, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(245, 227, 66, 0.2) 0%, transparent 60%);
    animation: gradientRotate 15s ease-in-out infinite; /* ✅ 30s linear → 15s ease-in-out */
    z-index: 0;
}

@keyframes gradientRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); } /* ✅ 360deg → 180deg */
}

/* ✅ CORRIGÉ : GRID au lieu de FLEX + z-index */
.hero-content-grid {
    position: relative; /* ✅ Ajouté */
    z-index: 1; /* ✅ Ajouté */
    display: grid; /* ✅ flex → grid */
    grid-template-columns: 1fr 400px; /* ✅ Ajouté */
    gap: 3rem; /* ✅ 60px → 3rem */
    align-items: start; /* ✅ flex-start → start */
}

/* ==========================================================================
   SECTION 17 : PAGES PRODUITS V2 - ÉLÉMENTS HERO [CORRIGÉ]
   ========================================================================== */

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* ✅ 25px → 1.5rem */
}

/* ✅ CORRIGÉ : backdrop-filter blur(10px) + animation badgePulse */
.hero-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* ✅ 8px → 0.5rem */
    padding: 0.5rem 1.25rem; /* ✅ 8px 16px → 0.5rem 1.25rem */
    background: rgba(245, 227, 66, 0.15);
    border: 1px solid rgba(245, 227, 66, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.9rem; /* ✅ 0.85rem → 0.9rem */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    backdrop-filter: blur(10px); /* ✅ Ajouté */
    animation: badgePulse 3s ease-in-out infinite; /* ✅ Ajouté */
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(131, 14, 231, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245, 227, 66, 0); }
}

/* ✅ CORRIGÉ : Font 3rem fixe + gradient 135deg + animation titleGlow */
.hero-title {
    font-size: 3rem; /* ✅ clamp(...) → 3rem */
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-accent) 100%); /* ✅ to right → 135deg */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate; /* ✅ Ajouté */
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 10px rgba(245, 227, 66, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(245, 227, 66, 0.5)); }
}

/* ✅ CORRIGÉ : Font-size réduite + max-width */
.hero-excerpt {
    font-size: 1.15rem; /* ✅ 1.2rem → 1.15rem */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px; /* ✅ 90% → 600px */
}

/* ✅ CORRIGÉ : gap 1rem + flex-wrap */
.hero-meta-cards {
    display: flex;
    gap: 1rem; /* ✅ 15px → 1rem */
    flex-wrap: wrap;
}

/* ✅ CORRIGÉ : display flex + align-items + gap + background violet + hover effects */
.meta-card {
    display: flex; /* ✅ Ajouté */
    align-items: center; /* ✅ Ajouté */
    gap: 1rem; /* ✅ Ajouté */
    padding: 1rem 1.5rem; /* ✅ 15px → 1rem 1.5rem */
    background: rgba(40, 0, 68, 0.6); /* ✅ rgba(255...) → rgba(40, 0, 68, 0.6) */
    border: 1px solid rgba(131, 14, 231, 0.3); /* ✅ rgba(255...) → rgba(131...) */
    border-radius: 12px;
    backdrop-filter: blur(10px); /* ✅ blur(5px) → blur(10px) */
    transition: all 0.3s ease;
}

/* ✅ AJOUTÉ : Hover effects */
.meta-card:hover {
    background: rgba(40, 0, 68, 0.8);
    border-color: rgba(131, 14, 231, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 14, 231, 0.2);
}

.meta-card i {
    font-size: 1.8rem; /* ✅ 1.5rem → 1.8rem */
    color: var(--color-accent);
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-label {
    font-size: 0.8rem; /* ✅ 0.75rem → 0.8rem */
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ✅ CORRIGÉ : gap 2rem + padding 1.5rem + DOUBLE border */
.hero-trust-stats {
    display: flex;
    gap: 2rem; /* ✅ 30px → 2rem */
    padding: 1.5rem 0; /* ✅ padding-top → padding */
    border-top: 1px solid rgba(131, 14, 231, 0.2); /* ✅ rgba(255...) → rgba(131...) */
    border-bottom: 1px solid rgba(131, 14, 231, 0.2); /* ✅ AJOUTÉ */
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* ✅ CORRIGÉ : Gradient au lieu de couleur plate */
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-accent) 100%); /* ✅ Ajouté */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SECTION 18 : PAGES PRODUITS V2 - CARTE PRIX FLOTTANTE [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : top 100px au lieu de 120px */
.hero-sidebar {
    position: sticky;
    top: 100px;
    align-self: start; /* ✅ Empêche la sidebar de s'étirer */
    max-height: calc(100vh - 120px); /* ✅ Limite la hauteur visible */
    overflow-y: auto; /* ✅ Scroll interne si contenu trop grand */
}

/* ✅ CORRIGÉ : Background rgba(40, 0, 68, 0.7) + border 2px + triple box-shadow + animations */
.price-card-floating {
    background: rgba(40, 0, 68, 0.7); /* ✅ 0.8 → 0.7 */
    backdrop-filter: blur(20px); /* ✅ 15px → 20px */
    border: 2px solid rgba(131, 14, 231, 0.4); /* ✅ 1px → 2px */
    border-radius: 20px;
    padding: 2rem; /* ✅ 30px → 2rem */
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(131, 14, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); /* ✅ Triple shadow */
    animation: cardFloat 4s ease-in-out infinite; /* ✅ Ajouté */
    position: relative;
    overflow: hidden;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ✅ AJOUTÉ : Effet shine rotatif */
.price-card-floating::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(245, 227, 66, 0.1) 50%,
        transparent 70%
    );
    animation: cardShine 3s linear infinite;
}

@keyframes cardShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--color-bg-body);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* ✅ CORRIGÉ : padding + border-bottom */
.price-display {
    text-align: center;
    padding: 1.5rem 0; /* ✅ Ajouté */
    border-bottom: 1px solid rgba(131, 14, 231, 0.3); /* ✅ Ajouté */
    margin-bottom: 1.5rem; /* ✅ 25px → 1.5rem */
}

/* ✅ CORRIGÉ : uppercase + letter-spacing + margin-bottom */
.price-label {
    display: block;
    font-size: 0.9rem; /* ✅ 1rem → 0.9rem */
    color: rgba(255, 255, 255, 0.6); /* ✅ Ajouté */
    text-transform: uppercase; /* ✅ Ajouté */
    letter-spacing: 1px; /* ✅ Ajouté */
    margin-bottom: 0.5rem; /* ✅ Ajouté */
}

/* ✅ CORRIGÉ : Font 3rem + GRADIENT au lieu de couleur */
.price-amount {
    display: block;
    font-size: 3rem; /* ✅ 3.5rem → 3rem */
    font-weight: 700; /* ✅ 800 → 700 */
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-accent) 100%); /* ✅ Ajouté */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== DISPONIBILITÉ BADGE ========== */
.availability-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.availability-badge.disponible {
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.availability-badge.occupe {
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.availability-badge.indisponible {
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.availability-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ==========================================================================
   SECTION 19 : PAGES PRODUITS V2 - BOUTON CTA MODERNE [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : padding + gradient A020F0 + border jaune + box-shadow + effet vague */
.btn-cta-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* ✅ 10px → 0.75rem */
    padding: 1.25rem 2rem; /* ✅ 18px 25px → 1.25rem 2rem */
    background: linear-gradient(135deg, #830EE7 0%, #A020F0 100%); /* ✅ #6a0dad → #A020F0 */
    color: var(--color-text);
    font-size: 1.1rem; /* ✅ Ajouté */
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(245, 227, 66, 0.3); /* ✅ rgba(255...) → rgba(245...) */
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(131, 14, 231, 0.4); /* ✅ 0 10px 30px → 0 8px 25px */
}

/* ✅ AJOUTÉ : Effet vague au hover */
.btn-cta-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 227, 66, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 14, 231, 0.6); /* ✅ 0 15px 40px → 0 12px 35px */
    border-color: rgba(245, 227, 66, 0.6);
}

.btn-cta-modern .btn-icon,
.btn-cta-modern .btn-text {
    position: relative;
    z-index: 1;
}

.btn-cta-modern .btn-icon {
    font-size: 1.3rem;
}

/* ✅ AJOUTÉ : Animation glow */
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(245, 227, 66, 0.3), transparent);
    animation: buttonGlow 2s linear infinite;
}

@keyframes buttonGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-cta-large {
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(131, 14, 231, 0.2);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 50px;
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    background: rgba(131, 14, 231, 0.3);
    border-color: rgba(131, 14, 231, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(131, 14, 231, 0.3);
}

/* ==========================================================================
   SECTION 20 : PAGES PRODUITS V2 - MINI GARANTIES [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : gap + margin-top + padding-top + border-top */
.mini-guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* ✅ 8px → 0.75rem */
    margin-top: 1.5rem; /* ✅ 20px → 1.5rem */
    padding-top: 1.5rem; /* ✅ Ajouté */
    border-top: 1px solid rgba(131, 14, 231, 0.3); /* ✅ Ajouté */
}

.mini-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* ✅ 8px → 0.5rem */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ✅ CORRIGÉ : Vert #4ade80 au lieu de #2ecc71 */
.mini-guarantee i {
    color: #4ade80; /* ✅ #2ecc71 → #4ade80 */
}

/* ==========================================================================
   SECTION 21 : PAGES PRODUITS V2 - CONTENU PRINCIPAL BENTO [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : padding + background */
.product-content-v2 {
    margin-top: 2rem; /* ✅ AJOUTÉ */
    padding: 4rem 2rem;
    background: rgba(27, 0, 51, 0.5);
}

.product-content-v2 .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ CORRIGÉ : GRID au lieu de FLEX + largeur 350px */
.content-bento-layout {
    display: grid; /* ✅ flex → grid */
    grid-template-columns: 1fr 350px; /* ✅ Ajouté */
    gap: 3rem; /* ✅ 50px → 3rem */
    align-items: start;
}

/* ✅ CORRIGÉ : background + padding */
.content-main {
    background: rgba(40, 0, 68, 0.4); /* ✅ rgba(40, 0, 68, 0.5) → 0.4 */
    border: 1px solid rgba(131, 14, 231, 0.2);
    border-radius: 16px;
    padding: 3rem; /* ✅ 40px → 3rem */
    backdrop-filter: blur(10px);
}

.content-rich-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.content-rich-text h2 {
    font-size: 2rem; /* ✅ 1.8rem → 2rem */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-rich-text h3 {
    font-size: 1.5rem; /* ✅ 1.4rem → 1.5rem */
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-rich-text h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-rich-text p {
    margin-bottom: 1.25rem;
}

.content-rich-text ul,
.content-rich-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.content-rich-text li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   SECTION 22 : PAGES PRODUITS V2 - TABLE DES MATIÈRES [OK]
   ========================================================================== */

.toc-section-standalone {
    margin-bottom: 3rem;
}

.table-of-contents {
    background: rgba(40, 0, 68, 0.6);
    backdrop-filter: blur(10px);
    border-left: 4px solid #830EE7;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.toc-title {
    margin-top: 0;
    font-size: 1.3rem;
    color: #f5e342;
}

.toc-list {
    margin: 0 0 2rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    list-style: disc;
}

.toc-link {
    color: #f5e342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* ==========================================================================
   SECTION 23 : PAGES PRODUITS V2 - BOÎTES D'EXEMPLES [OK]
   ========================================================================== */

.box-couple-example,
.box-calculation-example {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.box-calculation-example {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(75, 0, 130, 0.08));
    border-left: 4px solid #8a2be2;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.box-calculation-example .box-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.box-calculation-example .calculation-steps {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    list-style: disc;
}

.box-calculation-example .box-result {
    margin-top: 1rem;
    font-style: italic;
}

.box-couple-example {
    background: #280044;
    border: 2px solid #830EE7;
    color: #ffffff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.box-couple-example:hover {
    transform: scale(1.01);
}

.box-couple-example .couple-title {
    color: #8a2be2;
    margin-top: 0;
    font-size: 1.3rem;
}

.box-couple-example .couple-subtitle {
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.box-couple-example p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.box-couple-example p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 24 : PAGES PRODUITS V2 - GESTION DES IMAGES [OK]
   ========================================================================== */

/* Images principales de contenu */
.content-rich-text figure.wp-block-image,
.content-rich-text figure.content-featured-image {
    margin: 2rem auto !important;
    max-width: 800px !important;
    width: 100% !important;
    height: auto !important;
}

.content-rich-text figure.wp-block-image img,
.content-rich-text figure.content-featured-image img,
.content-rich-text img.content-featured-image[width],
.content-rich-text img.content-featured-image[height] {
    max-width: 800px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 2rem auto 1.5rem auto !important;
    border-radius: 8px;
}

/* Petites icônes dans les titres */
.content-rich-text h2 img,
.content-rich-text h3 img,
.content-rich-text h4 img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle;
    margin: 0 8px 0 0 !important;
}

.content-rich-text img.icon,
.content-rich-text img.emoji,
.content-rich-text img[class*="icon-"],
.content-rich-text img[class*="emoji-"] {
    max-width: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle;
    margin: 0 6px !important;
}

/* Images dans les box d'exemples */
.box-couple-example img.content-icon-example {
    max-width: 300px !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto;
    display: block;
    border-radius: 10px;
}

/* Figcaption */
.content-rich-text figcaption {
    text-align: center;
    font-style: italic;
    font-size: 0.9em;
    color: #bbb;
    margin-top: 8px;
    padding: 0 1rem;
}

/* Sécurité */
.content-rich-text img,
.content-rich-text figure {
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================================================
   SECTION 25 : PAGES PRODUITS V2 - SIDEBAR DROITE [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : gap + top 100px */
.content-sidebar {
    position: sticky;
    top: 100px; /* ✅ 120px → 100px */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* ✅ 25px → 1.5rem */
}

/* ✅ CORRIGÉ : background + padding + hover effects */
.sidebar-card {
    background: rgba(40, 0, 68, 0.6); /* ✅ rgba(40, 0, 68, 0.8) → 0.6 */
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 12px;
    padding: 1.5rem; /* ✅ 25px → 1.5rem */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* ✅ AJOUTÉ : Hover effects */
.sidebar-card:hover {
    background: rgba(40, 0, 68, 0.8);
    border-color: rgba(131, 14, 231, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 14, 231, 0.2);
}

/* ✅ CORRIGÉ : gap + margin-bottom */
.sidebar-card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem; /* ✅ 20px → 1rem */
    display: flex;
    align-items: center;
    gap: 0.5rem; /* ✅ 10px → 0.5rem */
    color: var(--color-accent);
}

.sidebar-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

/* ✅ CORRIGÉ : background violet + border */
.sidebar-link-phone,
.sidebar-link-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem; /* ✅ 12px → 0.75rem 1rem */
    background: rgba(131, 14, 231, 0.2); /* ✅ rgba(255...) → rgba(131...) */
    border: 1px solid rgba(131, 14, 231, 0.3); /* ✅ rgba(255...) → rgba(131...) */
    border-radius: 8px;
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem; /* ✅ 10px → 0.75rem */
}

.sidebar-link-phone:hover,
.sidebar-link-email:hover {
    background: rgba(131, 14, 231, 0.3);
    border-color: rgba(131, 14, 231, 0.5);
    transform: translateX(5px);
}

.guarantees-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantees-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(131, 14, 231, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.guarantees-list li:last-child {
    border-bottom: none;
}

/* ✅ CORRIGÉ : Vert #4ade80 au lieu de var(--color-accent) */
.guarantees-list li i {
    color: #4ade80; /* ✅ var(--color-accent) → #4ade80 */
    font-size: 1.1rem;
}

.trust-badge-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-bg-body);
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.trust-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.trust-link {
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.trust-link:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   SECTION 26 : PAGES PRODUITS V2 - BLOC AUTEUR [OK]
   ========================================================================== */

.author-block-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background: rgba(40, 0, 68, 0.5);
    border: 1px solid #830EE7;
    border-radius: 16px;
    padding: 30px;
    margin: 40px auto;
    max-width: 1100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.author-block-v2-image {
    flex-shrink: 0;
}

.author-block-v2-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    object-fit: cover;
    display: block;
}

.author-block-v2-content {
    flex-grow: 1;
    flex-basis: 400px;
}

.author-block-v2-content h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 10px;
}

.author-block-v2-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-block-v2-content .author-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.author-block-v2-content .author-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SECTION 27 : PAGES PRODUITS V2 - FAQ MODERNE [OK]
   ========================================================================== */

.product-faq-v2 {
    padding: 4rem 2rem;
    background: var(--color-bg-body);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-v2 {
    background: rgba(40, 0, 68, 0.4);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-v2:hover {
    border-color: rgba(131, 14, 231, 0.5);
    box-shadow: 0 4px 20px rgba(131, 14, 231, 0.2);
}

.faq-question-v2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-v2:hover {
    background: rgba(131, 14, 231, 0.1);
}

.faq-q-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131, 14, 231, 0.2);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.faq-item-v2.active .faq-q-icon {
    background: var(--color-accent);
    color: var(--color-bg-body);
    transform: rotate(45deg);
}

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

.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ==========================================================================
   SECTION 28 : PAGES PRODUITS V2 - TÉMOIGNAGES [OK]
   ========================================================================== */

.product-testimonials-v2 {
    padding: 4rem 2rem;
    background: var(--color-bg-section);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card-v2 {
    background: rgba(40, 0, 68, 0.5);
    border: 1px solid rgba(131, 14, 231, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card-v2:hover {
    background: rgba(40, 0, 68, 0.7);
    border-color: rgba(131, 14, 231, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(131, 14, 231, 0.3);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #830EE7 0%, #A020F0 100%);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-verified {
    font-size: 0.85rem;
    color: #4ade80;
}

.testimonials-cta {
    text-align: center;
}

/* ==========================================================================
   SECTION 29 : PAGES PRODUITS V2 - CTA FINAL [OK]
   ========================================================================== */

.product-cta-final {
    padding: 4rem 2rem;
    background: var(--color-bg-body);
}

.cta-final-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(131, 14, 231, 0.3) 0%, rgba(40, 0, 68, 0.5) 100%);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(131, 14, 231, 0.3);
}

.cta-final-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-shortcode-wrapper {
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-inline: auto;
}

/* ==========================================================================
   SECTION 30 : ANIMATIONS AOS [OK]
   ========================================================================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Fallback si AOS ne s'active pas (mobile) */
[data-aos]:not(.aos-animate) {
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================================================
   SECTION 31 : RESPONSIVE - MOBILE & TABLETTE [CORRIGÉ]
   ========================================================================== */

/* ✅ CORRIGÉ : SUPPRESSION de order: 2 sur les sidebars */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-sidebar {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 40px !important;
        margin-bottom: 90px !important;
        padding-bottom: 20px !important;
        display: block !important;
    }
    
    .content-bento-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
        order: -1; /* ✅ Gardé : place la sidebar en haut pour le contenu */
    }
    
    .hero-main,
    .content-main {
        width: 100%;
        flex: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
   .product-hero-v2 {
        padding: 2.5rem 1rem 0;
        height: auto !important; 
        min-height: auto !important;
        display: block !important;
        overflow: visible !important;
    }
    
    .price-card-floating {
        margin: 0 !important;
        transform: none !important;
    }
    
    .product-content-v2 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        position: relative !important;
        z-index: 1;
        clear: both !important;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-hero-icon {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    .product-hero-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .product-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .boutique-hero {
        padding: 3rem 1rem;
    }
    
    .service-section {
        padding: 3rem 1rem;
    }
    
    .boutique-quicknav {
        padding: 0.5rem;
        top: 50px;
    }

    .quicknav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .product-grid,
    .product-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .product-hero-v2 {
    padding: 3rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-trust-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-main {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-final-card {
        padding: 3rem 2rem;
    }
    
    .cta-final-title {
        font-size: 1.8rem;
    }
    
    .btn-cta-modern {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .content-rich-text figure.wp-block-image,
    .content-rich-text figure.content-featured-image,
    .content-rich-text img.content-featured-image[width],
    .content-rich-text img.content-featured-image[height] {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .box-couple-example img.content-icon-example {
        max-width: 250px !important;
    }
    
    .content-rich-text figcaption {
        font-size: 0.85em;
    }
    
    .box-calculation-example .box-title,
    .box-couple-example .couple-title {
        font-size: 1.1rem !important;
    }
    
    .toc-section-standalone {
        margin-bottom: 2rem;
    }
    
    .toc-section-standalone .table-of-contents {
        padding: 1.5rem;
        margin: 0;
    }
    
    .toc-section-standalone .toc-list {
        font-size: 0.9rem;
    }
    
    .author-block-v2 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .author-block-v2-image img {
        margin: 0 auto;
    }
    
    .product-sidebar {
        position: static;
        top: auto;
        order: -1;
    }
    
    .cta-widget {
        padding: 1.5rem;
    }
    
    .cta-widget .button {
        font-size: 1rem;
    }

    .product-faq,
    .product-related,
    .product-testimonials {
        padding: 3rem 1rem;
    }
}
/* ✅ CORRIGÉ : Désactiver animation gradient rotative sur mobile */
.hero-gradient-animated {
    animation: none !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
}
/* ==========================================================================
   🛠️ PATCH URGENCE : FIX CARTE COUPÉE & SUPERPOSITION
   Remplace le bloc précédent.
   ========================================================================== */

/* 1. ON LIBÈRE LA CARTE (Elle ne doit plus être coupée) */
.product-hero-v2 {
    overflow: visible !important; /* CRUCIAL : Laisse la carte déborder en bas */
    position: relative;
    z-index: 10; /* CRUCIAL : Place le Hero AU-DESSUS de la section suivante */
    padding-bottom: 4rem; /* Espace de sécurité */
}

/* 2. ON EMPÊCHE LE DÉGRADÉ DE FAIRE SCROLLER LA PAGE */
/* On applique le masquage UNIQUEMENT sur le fond, pas sur le contenu */
.hero-gradient-animated {
    position: absolute;
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); /* Centre le gradient */
    width: 100vw; /* Largeur max de l'écran */
    height: 100%; 
    overflow: hidden; /* Coupe le gradient s'il dépasse */
    pointer-events: none;
    z-index: -1; /* Reste derrière tout */
}

/* 3. GESTION DE LA SECTION CONTENU (Celle qui coupait la carte) */
.product-content-v2 {
    position: relative;
    z-index: 5; /* Doit être INFÉRIEUR au z-index du Hero (10) */
    background: var(--color-bg-body); /* Assure un fond opaque */
    margin-top: -20px; /* Optionnel : remonte légèrement pour l'effet d'imbrication */
    padding-top: 60px; /* Compense la marge négative */
}

/* 4. SÉCURITÉ POUR LA CARTE FLOTTANTE */
.price-card-floating {
    position: relative;
    z-index: 20; /* S'assure que la carte est l'élément le plus haut */
    /* Ombre forte pour bien détacher la carte du contenu du dessous */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important; 
}

/* 5. CORRECTIFS MOBILE (Pour éviter le zoom/scroll horizontal) */
@media (max-width: 768px) {
    
    /* On calme le gradient sur mobile */
    .hero-gradient-animated {
        width: 100%; 
        height: 100%;
        animation: none !important; /* Stop l'animation qui fait bouger l'écran */
        background: radial-gradient(circle at 50% 50%, rgba(131, 14, 231, 0.2) 0%, transparent 70%);
    }
}
/* ==========================================================================

/* ==========================================================================
   FIN DU FICHIER CSS UNIFIÉ ET CORRIGÉ ✅
   ========================================================================== */