﻿@charset "UTF-8";

/* ============================================
   LE CARREFOUR SPIRITUEL - Feuille de style
   ============================================ */


/* --- Google Fonts Import --- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* --- Variables CSS --- */

:root {
    --primary: #8B0000;
    --primary-light: #B22222;
    --primary-dark: #5C0000;
    --secondary: #C9A86C;
    --secondary-light: #E8D5A8;
    --accent: #D4A373;
    --gold: #D4AF37;
    --gold-light: #F0D878;
    --bg-cream: #F9F6F1;
    --bg-light: #F3EDE5;
    --bg-white: #FFFFFF;
    --bg-dark: #0B0B0B;
    --bg-dark-card: #161616;
    --text-dark: #1A1A1A;
    --text-medium: #3A3A3A;
    --text-light: #6B6B6B;
    --text-white: #F5F0EB;
    --border-light: #E0D8D0;
    --shadow-sm: 0 2px 8px rgba(139, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(139, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 0, 0, 0.16);
    --shadow-glow: 0 0 30px rgba(201, 168, 108, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-decorative: 'Great Vibes', cursive;
}


/* --- Reset & Base --- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* --- Typography --- */

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.decorative-text {
    font-family: var(--font-decorative);
    color: var(--secondary);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.section-title {
    margin-bottom: 16px;
    position: relative;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    margin: 20px auto;
    border-radius: 2px;
}


/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}


/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: #ffffff;
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .logo-icon {
    width: 65px;
    height: 65px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-brand .logo-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(139, 0, 0, 0.2);
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.navbar-brand .brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--secondary-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--primary);
    padding: 9px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.nav-cta {
    margin-left: 10px;
}


/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/hero-bg.svg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.82) 0%, rgba(11, 11, 11, 0.7) 50%, rgba(11, 11, 11, 0.88) 100%);
    z-index: 1;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-bg-elements .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-elements .orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-bg-elements .orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.hero-bg-elements .orb-3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 40%;
    left: 60%;
    animation-delay: 5s;
}

.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: rgba(201, 168, 108, 0.12);
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: var(--radius-xl);
    color: var(--secondary-light);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--secondary-light);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}


/* ============================================
   SECTIONS COMMUNES
   ============================================ */

section {
    padding: 100px 0;
}

.section-light {
    background: #F5F1EB;
}

.section-white {
    background: #FFFFFF;
}

.section-dark {
    background: #0B0B0B;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   LE FÂ — ORACLE SACRÉ (Accueil)
   ============================================ */

.fa-oracle-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.fa-oracle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.fa-oracle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}


/* Image du Fâ */

.fa-oracle-image {
    position: relative;
}

.fa-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.15);
}

.fa-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.fa-oracle-image:hover .fa-image-wrapper img {
    transform: scale(1.03);
}

.fa-image-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    animation: faGlow 4s ease-in-out infinite alternate;
}

@keyframes faGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.fa-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary), #a00000);
    color: white;
    padding: 18px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    z-index: 2;
}

.fa-badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.fa-badge-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fa-badge-sub {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-top: 2px;
}


/* Texte du Fâ */

.fa-oracle-content {
    color: #e0e0e0;
}

.fa-oracle-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.08);
}

.fa-oracle-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.fa-oracle-title span {
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    font-size: 1.4rem;
    display: block;
    margin-top: 6px;
}

.fa-oracle-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #ccc;
}

.fa-oracle-content>p {
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 30px;
}


/* Features du Fâ */

.fa-oracle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.fa-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.fa-feature:hover {
    background: rgba(139, 0, 0, 0.12);
    border-color: rgba(139, 0, 0, 0.25);
    transform: translateY(-3px);
}

.fa-feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fa-feature strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.fa-feature p {
    font-size: 0.83rem;
    color: #999;
    line-height: 1.5;
    margin: 0;
}


/* Responsive Fâ */

@media (max-width: 968px) {
    .fa-oracle-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .fa-oracle-section {
        padding: 70px 0;
    }
    .fa-oracle-title {
        font-size: 2rem;
    }
    .fa-oracle-title span {
        font-size: 1.15rem;
    }
    .fa-floating-badge {
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 600px) {
    .fa-oracle-section {
        padding: 50px 0;
    }
    .fa-oracle-features {
        grid-template-columns: 1fr;
    }
    .fa-oracle-title {
        font-size: 1.6rem;
    }
    .fa-floating-badge {
        bottom: 10px;
        right: 10px;
        padding: 14px 18px;
    }
    .fa-badge-icon {
        font-size: 1.5rem;
    }
}


/* ============================================
   PHILOSOPHIE / À PROPOS (Accueil)
   ============================================ */

.philosophy {
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-image {
    position: relative;
}

.philosophy-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-image .image-wrapper img,
.philosophy-image .image-wrapper svg {
    width: 100%;
    display: block;
}

.philosophy-image .floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-card .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card .card-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card .card-sub {
    font-size: 0.85rem;
    color: var(--text-light);
}

.philosophy-content .subtitle {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.philosophy-content h2 {
    margin-bottom: 20px;
}

.philosophy-content p {
    margin-bottom: 20px;
}

.philosophy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 36px;
}

.philosophy-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.philosophy-feature .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(201, 168, 108, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.philosophy-feature .feature-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}


/* ============================================
   SERVICES / PILIERS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 108, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(201, 168, 108, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-card .card-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card .card-link:hover {
    gap: 14px;
    color: var(--gold-light);
}


/* ============================================
   CITATION / QUOTE
   ============================================ */

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 10%;
    font-size: 20rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-content .quote-author {
    color: var(--secondary-light);
    font-size: 1.1rem;
    font-weight: 600;
}


/* ============================================
   ARTICLES / BLOG
   ============================================ */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.article-card .card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-card .card-image img,
.article-card .card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .card-image img,
.article-card:hover .card-image svg {
    transform: scale(1.05);
}

.article-card .card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(139, 0, 0, 0.9);
    color: white;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.article-card .card-body {
    padding: 28px;
}

.article-card .card-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.4;
    transition: var(--transition);
}

.article-card:hover h4 {
    color: var(--primary);
}

.article-card .card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.article-card .read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}


/* ============================================
   TÉMOIGNAGES
   ============================================ */

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card .quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--secondary);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 28px;
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    position: static;
}

.testimonial-card .stars span {
    color: var(--gold);
    font-size: 1.1rem;
    position: static;
    width: auto;
    height: auto;
    background: none;
    animation: none;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-card .author-role {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: linear-gradient(135deg, #0B0B0B 0%, #1A0505 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    color: white;
    margin-bottom: 16px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--secondary);
}


/* ============================================
   PAGE INTÉRIEURE - HERO
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0B0B0B 0%, #1A0A0A 50%, #2A0F0F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
}

.breadcrumb a {
    color: var(--secondary);
    font-size: 0.9rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}


/* ============================================
   PAGE À PROPOS
   ============================================ */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-container .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-container .main-image img,
.about-image-container .main-image svg {
    width: 100%;
    display: block;
}

.about-image-container .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(201, 168, 108, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.value-card h4 {
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.93rem;
}


/* ============================================
   PAGE MÉDITATION
   ============================================ */

.meditation-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.meditation-card {
    display: flex;
    gap: 28px;
    padding: 36px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    align-items: flex-start;
}

.meditation-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.meditation-card .med-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.meditation-card h4 {
    margin-bottom: 12px;
}

.meditation-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.meditation-card .duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(139, 0, 0, 0.08);
    border-radius: var(--radius-xl);
}


/* Session Timer */

.meditation-timer {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.meditation-timer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.timer-display {
    position: relative;
    z-index: 2;
}

.timer-display h3 {
    color: white;
    margin-bottom: 8px;
}

.timer-display p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.timer-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
}

.timer-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--secondary);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.timer-circle .time {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.timer-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
}


/* ============================================
   PAGE CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    align-items: center;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-info-card .info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper>p {
    margin-bottom: 32px;
}


/* Required asterisk */

.required {
    color: #8B0000;
    font-weight: 700;
    margin-left: 2px;
}


/* Contact form spinner */

.contact-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: contactSpin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes contactSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-cream);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* ============================================
   BLOG / ARTICLES PAGE
   ============================================ */

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-article {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.blog-article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-article .blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-article .blog-image img,
.blog-article .blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-article:hover .blog-image img,
.blog-article:hover .blog-image svg {
    transform: scale(1.05);
}

.blog-article .blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    background: rgba(139, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.blog-article .blog-body {
    padding: 24px;
}

.blog-article .blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.83rem;
    color: var(--text-light);
}

.blog-article h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-article .blog-excerpt {
    font-size: 0.93rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ============================================
   ANIMATIONS - Fade In
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


/* ============================================
   SUCCESS MESSAGE (Contact)
   ============================================ */

.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .philosophy-grid,
    .about-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .services-grid,
    .articles-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1080px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition);
        align-items: flex-start;
        gap: 4px;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .services-grid,
    .articles-grid,
    .blog-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    .meditation-types {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .philosophy-features {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .meditation-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-stat .number {
        font-size: 2rem;
    }
    .timer-circle {
        width: 160px;
        height: 160px;
    }
    .timer-circle .time {
        font-size: 2.4rem;
    }
}


/* Mobile overlay */

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   DIVINITÉS GRID
   ============================================ */

.divinites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.divinite-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.divinite-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 108, 0.4);
}

.divinite-card .divinite-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
}

.divinite-card .divinite-image img,
.divinite-card .divinite-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.divinite-card:hover .divinite-image img,
.divinite-card:hover .divinite-image svg {
    transform: scale(1.05);
}

.divinite-card .divinite-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 16px;
    background: rgba(201, 168, 108, 0.9);
    color: var(--bg-dark);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.divinite-card .divinite-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.divinite-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-dark);
    line-height: 1.35;
    font-weight: 700;
}

.divinite-card .divinite-subtitle {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.divinite-card .divinite-body>p:not(.divinite-subtitle) {
    font-size: 0.88rem;
    color: var(--text-medium);
    margin-bottom: 14px;
    line-height: 1.65;
}

.divinite-card .divinite-powers {
    margin-top: auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.divinite-card .divinite-powers li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 3px 0;
}


/* Divinité cards all use same layout in 3-col grid */


/* ============================================
   CHARTE DU TEMPLE
   ============================================ */

.charte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.charte-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.charte-item:hover {
    border-color: rgba(201, 168, 108, 0.2);
    transform: translateY(-3px);
}

.charte-item .charte-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.2), rgba(212, 175, 55, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.charte-item h4 {
    font-size: 1.05rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 6px;
}

.charte-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}


/* ============================================
   FORCE DU TEMPLE
   ============================================ */

.force-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.force-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.force-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.force-item .force-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.force-item .force-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}


/* ============================================
   MESSAGE DU VODOUNON
   ============================================ */

.vodounon-message {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.vodounon-image {
    position: relative;
    text-align: center;
}

.vodounon-image .image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(201, 168, 108, 0.3);
    position: relative;
}

.vodounon-image .image-wrapper img,
.vodounon-image .image-wrapper svg {
    width: 100%;
    display: block;
}

.vodounon-text .section-subtitle {
    display: block;
    margin-bottom: 8px;
}

.vodounon-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.vodounon-text blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    padding: 28px 28px 28px 32px;
    border-left: 4px solid var(--secondary);
    background: rgba(201, 168, 108, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 400;
}

.vodounon-text .vodounon-signature {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--secondary);
}


/* ============================================
   CTA TEMPLE
   ============================================ */

.temple-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.temple-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.temple-cta-card {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 60px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.temple-cta h2 {
    color: white;
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.temple-cta-card>p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.7;
}

.temple-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.temple-cta .cta-phone {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.temple-cta .cta-phone strong {
    color: var(--secondary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}


/* ============================================
   NOTE FINALE (bas de page)
   ============================================ */

.note-divinites {
    text-align: center;
    padding: 40px;
    background: rgba(201, 168, 108, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 108, 0.15);
    margin-top: 48px;
}

.note-divinites p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}


/* ============================================
   RESPONSIVE - Ajouts TSKV
   ============================================ */

@media (max-width: 1024px) {
    .divinites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vodounon-message {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .charte-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .force-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .divinites-grid {
        grid-template-columns: 1fr;
    }
    .charte-grid {
        grid-template-columns: 1fr;
    }
    .force-grid {
        grid-template-columns: 1fr;
    }
    .vodounon-text blockquote {
        padding-left: 20px;
        font-size: 1.1rem;
    }
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}


/* ============================================
   PAGE PRESTATIONS
   ============================================ */

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.presta-section {
    padding: 80px 0;
}


/* --- Consultation intro grid --- */

.presta-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.presta-intro-list h3,
.presta-intro-result h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.presta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.presta-tag {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(201, 168, 108, 0.12));
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(139, 0, 0, 0.12);
    transition: var(--transition);
}

.presta-tag:hover {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(201, 168, 108, 0.2));
    transform: translateY(-2px);
}

.presta-result-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.presta-result-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.presta-result-list .result-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.presta-cta-inline {
    margin-top: 30px;
}


/* --- Domaines d'intervention --- */

.presta-domaine {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.presta-domaine:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.presta-domaine-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.presta-domaine-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.presta-domaine-header h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.presta-domaine-intro {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.65;
    font-style: italic;
}

.presta-domaine-body {
    padding-left: 76px;
}

.presta-domaine-body>p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.presta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.presta-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.65;
}

.presta-list li::before {
    content: '\27A4';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.8rem;
    top: 2px;
}

.presta-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
}

.presta-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.presta-two-cols h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.presta-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.92rem;
    color: var(--text-medium);
    font-style: italic;
}

.presta-highlight {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
}


/* --- Contact block --- */

.presta-contact-block {
    text-align: center;
    padding: 30px;
    background: rgba(139, 0, 0, 0.04);
    border-radius: var(--radius-md);
    margin-top: 30px;
}

.presta-contact-block p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.presta-contact-block a:not(.btn) {
    color: var(--primary);
    font-weight: 600;
}


/* --- Annonces & Avertissements --- */

.annonce-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.annonce-intro p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 14px;
    line-height: 1.75;
}

.annonce-ceci {
    margin-top: 20px;
    font-size: 1.2rem !important;
    color: var(--gold) !important;
    font-family: var(--font-heading);
}

.annonce-warnings {
    max-width: 800px;
    margin: 0 auto;
}

.warning-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    border-left: 3px solid var(--gold);
}

.warning-icon {
    flex-shrink: 0;
    font-size: 1.3rem;
}

.warning-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.warning-card strong {
    color: var(--gold-light);
}


/* --- Bienvenue section --- */

.bienvenue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.bienvenue-card {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
}

.bienvenue-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.bienvenue-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bienvenue-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.bienvenue-list-check li::before {
    content: '\2713';
    color: var(--secondary);
    font-weight: 700;
}

.bienvenue-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}


/* --- Mot du Vodounon --- */

.vodounon-mot {
    max-width: 800px;
    margin: 0 auto;
}

.vodounon-mot p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.vodounon-mot-intro {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--text-dark) !important;
}

.vodounon-mot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px 30px;
    background: rgba(139, 0, 0, 0.04);
    border-radius: var(--radius-sm);
}

.vodounon-mot-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.vodounon-mot-emphasis {
    text-align: center;
    padding: 30px;
    margin: 24px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(201, 168, 108, 0.08));
    border-radius: var(--radius-md);
}

.vodounon-mot-emphasis p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.vodounon-mot-emphasis p:last-child {
    margin-bottom: 0;
}

.vodounon-mot-cta {
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 1.1rem !important;
    text-align: center;
}


/* --- Annonce Temple card --- */

.annonce-temple-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
}

.annonce-temple-header span {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.annonce-temple-header h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: white;
    margin: 8px 0 12px;
}

.annonce-temple-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.annonce-temple-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold) !important;
    margin-top: 6px;
}

.annonce-temple-services {
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.annonce-temple-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.annonce-temple-services li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.annonce-temple-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.annonce-temple-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.annonce-temple-vodounon {
    font-family: var(--font-heading);
    color: var(--gold) !important;
    font-size: 1.05rem !important;
    margin-bottom: 20px !important;
}


/* --- Destin card --- */

.destin-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(201, 168, 108, 0.06));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.destin-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
}

.destin-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
    margin: 12px 0 16px;
}

.destin-intro {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary) !important;
    margin-bottom: 24px;
}

.destin-flames p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.destin-domains {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px 0;
}

.destin-domains span {
    padding: 6px 18px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 600;
}

.destin-promise p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.destin-footer {
    padding-top: 24px;
}

.destin-footer p {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-medium);
}


/* --- Boutique grid --- */

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.boutique-category {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.boutique-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.boutique-cat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.boutique-category h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 168, 108, 0.25);
}

.boutique-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boutique-category li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.boutique-category li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}


/* --- Boutique extra (sur demande) --- */

.boutique-extra {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.boutique-extra h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.boutique-extra>p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.boutique-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.boutique-extra-item {
    padding: 12px 16px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-medium);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.boutique-extra-item:hover {
    background: rgba(139, 0, 0, 0.06);
    border-color: var(--primary-light);
}


/* ============================================
   PRESTATIONS — RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .presta-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .presta-two-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bienvenue-grid {
        grid-template-columns: 1fr;
    }
    .boutique-grid {
        grid-template-columns: 1fr;
    }
    .boutique-extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .presta-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .presta-section {
        padding: 60px 0;
    }
    .presta-domaine {
        padding: 28px 20px;
    }
    .presta-domaine-header {
        flex-direction: column;
        gap: 14px;
    }
    .presta-domaine-body {
        padding-left: 0;
    }
    .annonce-temple-card {
        padding: 36px 24px;
    }
    .destin-card {
        padding: 36px 24px;
    }
    .boutique-extra-grid {
        grid-template-columns: 1fr;
    }
    .boutique-extra {
        padding: 28px 20px;
    }
}


/* ============================================
   PAGE DANCOLI
   ============================================ */

.dancoli-section {
    padding: 80px 0;
}


/* --- Hero spécifique --- */

.dancoli-hero {
    background: linear-gradient(135deg, #0B0B0B 0%, #1A0A0A 40%, #300808 100%);
}


/* --- Intro grid --- */

.dancoli-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.dancoli-visual {
    text-align: center;
}

.dancoli-serpent-icon {
    margin-bottom: 24px;
}

.dancoli-serpent-icon svg {
    max-width: 200px;
    margin: 0 auto;
}

.dancoli-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(201, 168, 108, 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dancoli-badge-icon {
    font-size: 1.6rem;
}

.dancoli-badge strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.dancoli-badge span {
    font-size: 0.78rem;
    color: var(--text-light);
}


/* --- Intro text --- */

.dancoli-intro-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.dancoli-lead {
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.dancoli-info-box {
    margin-top: 24px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(139, 0, 0, 0.05));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.dancoli-info-box p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.dancoli-info-box p:last-child {
    margin-bottom: 0;
}


/* --- Témoignages --- */

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.temoignage-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.temoignage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.temoignage-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.25;
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 24px;
}

.temoignage-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-top: 24px;
    margin-bottom: 24px;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.temoignage-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.temoignage-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.temoignage-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}


/* --- Puissance / Pouvoirs --- */

.dancoli-puissance-content {
    max-width: 780px;
    margin: 0 auto 50px;
}

.dancoli-puissance-intro {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-dark) !important;
    margin-bottom: 30px;
}

.dancoli-how {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-light);
}

.dancoli-how h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.dancoli-how p {
    font-size: 0.98rem;
    line-height: 1.75;
}

.dancoli-powers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dancoli-power-card {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.dancoli-power-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(201, 168, 108, 0.3);
}

.dancoli-power-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.dancoli-power-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dancoli-power-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}


/* --- Visite CTA --- */

.dancoli-visit-card {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
}

.dancoli-visit-header h2 {
    color: white;
    margin: 12px 0 24px;
}

.dancoli-visit-body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.dancoli-visit-body strong {
    color: var(--gold-light);
}

.dancoli-visit-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dancoli-visit-info {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dancoli-visit-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.dancoli-visit-info strong {
    color: var(--gold);
}


/* --- Dancoli responsive --- */

@media (max-width: 992px) {
    .dancoli-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dancoli-visual {
        order: -1;
    }
    .temoignages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .dancoli-powers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dancoli-section {
        padding: 60px 0;
    }
    .dancoli-powers-grid {
        grid-template-columns: 1fr;
    }
    .dancoli-visit-card {
        padding: 36px 24px;
    }
}


/* ============================================
   PAGE ALERTE
   ============================================ */

.alerte-section {
    padding: 80px 0;
}

.alerte-hero {
    background: linear-gradient(135deg, #0B0B0B 0%, #200505 50%, #3A0A0A 100%);
}


/* --- Comparaison Vrai vs Faux --- */

.alerte-comparison {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alerte-item {
    display: grid;
    grid-template-columns: 44px 1fr auto 1fr 44px;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.alerte-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.15);
}

.alerte-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.alerte-item-icon.alerte-faux {
    background: rgba(220, 53, 69, 0.15);
    color: #FF6B6B;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.alerte-item-icon.alerte-vrai {
    background: rgba(40, 167, 69, 0.15);
    color: #51CF66;
    border: 1px solid rgba(40, 167, 69, 0.25);
}

.alerte-item-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.alerte-faux-label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF6B6B !important;
    font-weight: 600;
    margin-bottom: 4px !important;
}

.alerte-vrai-label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #51CF66 !important;
    font-weight: 600;
    margin-bottom: 4px !important;
}

.alerte-vrai-content {
    text-align: right;
}

.alerte-vrai-content strong {
    color: rgba(255, 255, 255, 0.92);
}

.alerte-vs {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}


/* --- Message section --- */

.alerte-message {
    max-width: 780px;
    margin: 0 auto;
}

.alerte-message>p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-medium);
}

.alerte-blockquote {
    padding: 28px 32px;
    margin: 0 0 30px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(201, 168, 108, 0.07));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.alerte-blockquote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.alerte-highlight-box {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 30px 34px;
    margin: 30px 0;
    border: 1px solid var(--border-light);
}

.alerte-highlight-box p {
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.7;
}

.alerte-highlight-box p:last-child {
    margin-bottom: 0;
}

.alerte-highlight-emphasis {
    font-family: var(--font-heading);
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--primary) !important;
    margin-top: 12px !important;
}

.alerte-decisions {
    text-align: center;
    margin: 40px 0;
}

.alerte-decisions h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.alerte-choix p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.alerte-warning-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 30px;
    background: rgba(220, 53, 69, 0.04);
    border: 1px solid rgba(220, 53, 69, 0.12);
    border-radius: var(--radius-md);
    margin-top: 36px;
}

.alerte-warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.alerte-warning-box p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.alerte-warning-box p:last-child {
    margin-bottom: 0;
}

.alerte-warning-box em {
    color: var(--text-light);
}

.alerte-warning-box strong {
    color: var(--text-dark);
}


/* --- CTA final --- */

.alerte-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
}

.alerte-cta-card h2 {
    color: white;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 16px;
}

.alerte-cta-card>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.alerte-cta-card>p strong {
    color: var(--gold-light);
}

.alerte-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.alerte-cta-info {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.alerte-cta-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.alerte-cta-info strong {
    color: var(--gold);
}


/* --- Alerte responsive --- */

@media (max-width: 992px) {
    .alerte-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    .alerte-item-icon {
        margin: 0 auto;
    }
    .alerte-vrai-content {
        text-align: center;
    }
    .alerte-vs {
        margin: 0 auto;
    }
    .alerte-item-icon.alerte-faux {
        order: 1;
    }
    .alerte-item-content:first-of-type {
        order: 2;
    }
    .alerte-vs {
        order: 3;
    }
    .alerte-vrai-content {
        order: 4;
    }
    .alerte-item-icon.alerte-vrai {
        order: 5;
    }
}

@media (max-width: 768px) {
    .alerte-section {
        padding: 60px 0;
    }
    .alerte-blockquote {
        padding: 22px 24px;
    }
    .alerte-blockquote p {
        font-size: 1.1rem;
    }
    .alerte-highlight-box {
        padding: 22px 24px;
    }
    .alerte-warning-box {
        flex-direction: column;
        gap: 12px;
        padding: 22px 24px;
    }
    .alerte-cta-card {
        padding: 36px 24px;
    }
}


/* ============================================
   PAGE BIOGRAPHIE
   ============================================ */

.bio-section {
    padding: 80px 0;
}

.bio-hero {
    background: linear-gradient(135deg, #0B0B0B 0%, #1A0808 50%, #2A0A0A 100%);
}


/* --- Portrait grid --- */

.bio-portrait-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.bio-portrait-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(212, 175, 55, 0.15);
}

.bio-portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-portrait-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 22px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(201, 168, 108, 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bio-portrait-badge-icon {
    font-size: 1.6rem;
}

.bio-portrait-badge strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.bio-portrait-badge span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.bio-portrait-text .section-subtitle {
    margin-bottom: 8px;
}

.bio-portrait-text h2 {
    margin-bottom: 4px;
}

.bio-lead {
    font-size: 1.12rem !important;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.bio-portrait-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}


/* --- Stats --- */

.bio-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.bio-stat {
    text-align: center;
    padding: 16px 22px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    flex: 1;
}

.bio-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.bio-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* --- Timeline --- */

.bio-timeline {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.bio-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--primary), var(--gold));
    opacity: 0.3;
}

.bio-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.bio-timeline-item:last-child {
    margin-bottom: 0;
}

.bio-timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--bg-cream);
}

.bio-timeline-content {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 28px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.bio-timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bio-timeline-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}


/* --- Mission grid --- */

.bio-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bio-mission-card {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.bio-mission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(201, 168, 108, 0.3);
}

.bio-mission-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.bio-mission-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.bio-mission-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.65;
}


/* --- Engagements grid --- */

.bio-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bio-engagement {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.bio-engagement:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
}

.bio-engagement-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.bio-engagement h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
}

.bio-engagement p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* --- Quote card --- */

.bio-quote-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(201, 168, 108, 0.06));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.bio-quote-portrait {
    width: 150px;
    flex-shrink: 0;
}

.bio-quote-portrait img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.2);
}

.bio-quote-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
}

.bio-quote-signature {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
}


/* --- Divinites list --- */

.bio-divinites-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bio-divinite {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.bio-divinite:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
    border-color: rgba(201, 168, 108, 0.25);
}

.bio-div-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 50%;
}

.bio-divinite strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.bio-divinite span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.bio-divinites-note {
    max-width: 700px;
    margin: 28px auto 0;
    padding: 20px 24px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bio-divinites-note p {
    font-size: 0.92rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.65;
}


/* --- CTA card --- */

.bio-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
}

.bio-cta-card h2 {
    color: white;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 16px;
}

.bio-cta-card>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.bio-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.bio-cta-info {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bio-cta-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.bio-cta-info strong {
    color: var(--gold);
}


/* --- Biographie responsive --- */

@media (max-width: 992px) {
    .bio-portrait-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bio-portrait {
        text-align: center;
    }
    .bio-portrait-frame {
        max-width: 350px;
        margin: 0 auto;
    }
    .bio-portrait-text .divider {
        margin-left: auto !important;
    }
    .bio-portrait-text {
        text-align: center;
    }
    .bio-stats {
        justify-content: center;
    }
    .bio-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bio-engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bio-quote-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio-quote-portrait {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bio-section {
        padding: 60px 0;
    }
    .bio-stats {
        flex-direction: column;
        gap: 12px;
    }
    .bio-timeline {
        padding-left: 40px;
    }
    .bio-timeline-marker {
        left: -40px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .bio-timeline::before {
        left: 16px;
    }
    .bio-timeline-content {
        padding: 22px 20px;
    }
    .bio-mission-grid {
        grid-template-columns: 1fr;
    }
    .bio-engagements-grid {
        grid-template-columns: 1fr;
    }
    .bio-quote-card {
        padding: 28px 24px;
    }
    .bio-cta-card {
        padding: 36px 24px;
    }
}


/* ============================================
   PAGE TOURISME
   ============================================ */

.tour-section {
    padding: 80px 0;
}

.tour-hero {
    background: linear-gradient(135deg, #0B0B0B 0%, #180808 50%, #280A0A 100%);
}


/* --- Highlights cards --- */

.tour-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tour-highlight-card {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(201, 168, 108, 0.08));
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.tour-highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(201, 168, 108, 0.25);
}

.tour-highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.tour-highlight-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tour-highlight-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* --- Days programme --- */

.tour-days {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tour-day {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.tour-day:hover {
    box-shadow: var(--shadow-md);
}

.tour-day-highlight {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.tour-day-highlight .tour-day-header {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(201, 168, 108, 0.15));
}

.tour-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-light);
}

.tour-day-badge {
    display: flex;
    flex-direction: column;
}

.tour-day-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-day-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.tour-day-icon {
    font-size: 1.8rem;
}

.tour-day-body {
    padding: 24px 28px;
}

.tour-day-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tour-day-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tour-list-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-day-list li strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.tour-day-list li p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.55;
}


/* --- Avantages grid --- */

.tour-avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tour-avantage {
    padding: 32px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.tour-avantage:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.tour-avantage-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.tour-avantage h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: white;
    margin-bottom: 10px;
}

.tour-avantage p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}


/* --- Pricing grid --- */

.tour-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tour-pricing-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.tour-pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 24px 20px;
}

.tour-pricing-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.tour-pricing-header h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0;
}

.tour-pricing-price {
    padding: 28px 20px 16px;
}

.tour-price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-price-currency {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 6px;
}

.tour-price-euro {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.tour-pricing-features {
    list-style: none;
    padding: 0 28px 28px;
    margin: 0;
    text-align: left;
}

.tour-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-pricing-features li:last-child {
    border-bottom: none;
}

.tour-check {
    color: #27AE60;
    font-weight: 700;
    font-size: 1rem;
}

.tour-cross {
    color: #E74C3C;
    font-weight: 700;
    font-size: 1rem;
}

.tour-pricing-excluded {
    opacity: 0.65;
}


/* --- Inscription card --- */

.tour-inscription-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 28px;
}

.tour-inscription-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-inscription-icon {
    font-size: 1.3rem;
}

.tour-inscription-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-inscription-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tour-inscription-badge {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid var(--border-light);
}

.tour-inscription-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tour-inscription-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.55;
}


/* --- CTA card --- */

.tour-cta-card {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
}

.tour-cta-card h2 {
    color: white;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 16px;
}

.tour-cta-card>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.tour-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.tour-cta-info {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-cta-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.tour-cta-info strong {
    color: var(--gold);
}


/* --- Tourisme responsive --- */

@media (max-width: 992px) {
    .tour-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .tour-section {
        padding: 60px 0;
    }
    .tour-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .tour-highlight-card {
        padding: 20px 14px;
    }
    .tour-day-header {
        padding: 16px 20px;
    }
    .tour-day-body {
        padding: 20px;
    }
    .tour-avantages-grid {
        grid-template-columns: 1fr;
    }
    .tour-cta-card {
        padding: 36px 24px;
    }
}


/* ================================================
   DIVINITE CARD LINKS (Homepage clickable cards)
   ================================================ */

.divinite-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease;
}

.divinite-card-link:hover,
.divinite-card-link:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.divinite-card-link:hover .divinite-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 0, 0, 0.3);
}


/* ================================================
   DIVINITY DETAIL PAGES
   ================================================ */


/* Hero override for divinity pages */

.div-hero {
    background: linear-gradient(135deg, #0B0B0B 0%, #1A0505 40%, #2A0A0A 70%, #0B0B0B 100%);
}


/* Image container in intro section */

.div-page-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 24px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(201, 168, 108, 0.06));
    border: 2px solid rgba(212, 175, 55, 0.15);
    padding: 20px;
    transition: all 0.4s ease;
}

.div-page-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(139, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.div-page-image:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.12);
}

.div-page-image:hover img {
    transform: scale(1.03);
}


/* ================================================
   ENSEMBLE PAGE — Divinities Grid
   ================================================ */

.div-ensemble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.div-ensemble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 28px 20px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.35s ease;
}

.div-ensemble-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 0, 0, 0.2);
    text-decoration: none;
    color: var(--text-dark);
}

.div-ensemble-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.div-ensemble-item span:last-child {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.div-ensemble-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 6px;
}


/* Highlight card (L'Ensemble Sacré) */

.div-ensemble-highlight {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(201, 168, 108, 0.08));
    border-color: rgba(212, 175, 55, 0.25);
}

.div-ensemble-highlight:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.18);
}

.div-ensemble-highlight strong {
    color: var(--primary);
}


/* Responsive — Divinity pages & ensemble */

@media (max-width: 768px) {
    .div-page-image {
        max-width: 220px;
        padding: 16px;
    }
    .div-ensemble-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .div-ensemble-item {
        padding: 20px 14px;
    }
    .div-ensemble-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .div-ensemble-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   BOUTIQUE - Shop / Products / Cart
   ============================================ */


/* --- Shop Toolbar --- */

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-filter-btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-medium);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

.shop-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    background: var(--bg-white);
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.shop-cart-btn:hover {
    background: var(--primary);
    color: #FFF;
}

.cart-badge {
    background: var(--primary);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-cart-btn:hover .cart-badge {
    background: var(--gold);
    color: var(--primary);
}


/* --- Shop Grid --- */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shop-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.shop-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.shop-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #FFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.shop-card-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #F9F6F1, #F0E8DB);
}

.shop-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.08);
}

.shop-card-body {
    padding: 20px;
}

.shop-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.shop-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.shop-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.shop-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.shop-old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.shop-card-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 8px;
}

.shop-card-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    padding: 10px 12px;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}


/* --- Product Detail --- */

.product-breadcrumb {
    background: var(--bg-cream);
    padding: 14px 0;
    padding-top: 100px;
    border-bottom: 1px solid var(--border-light);
}

.product-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb .current {
    color: var(--text-light);
}

.product-breadcrumb span {
    color: var(--text-light);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.product-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #F9F6F1, #F0E8DB);
}

.product-detail-image img {
    width: 100%;
    display: block;
}

.product-detail-info {
    padding-top: 12px;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.shop-price-lg {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.shop-old-price-lg {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.shop-discount {
    background: var(--primary);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-detail-short {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.product-detail-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    font-size: 1rem;
    padding: 16px 24px;
}

.product-detail-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.trust-item {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.product-full-desc {
    padding: 40px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 48px;
}

.product-full-desc h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-desc-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.product-similar {
    margin-bottom: 40px;
}

.product-similar h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}


/* --- Cart --- */

.cart-section {
    min-height: 50vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: var(--secondary);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.cart-item-name:hover {
    color: var(--primary);
}

.cart-item-unit-price {
    font-size: 0.82rem;
    color: var(--text-light);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-dark);
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-item-total {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    min-width: 120px;
    text-align: right;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #FFF5F5;
    color: #E53E3E;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #E53E3E;
    color: #FFF;
}


/* --- Cart Summary --- */

.cart-summary {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.summary-total {
    padding-top: 16px;
    border-top: 2px solid var(--border-light);
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.order-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.order-form h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}


/* --- Cart Empty / Success --- */

.cart-empty,
.cart-success {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon,
.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cart-empty h2,
.cart-success h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cart-empty p,
.cart-success p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.cart-error {
    background: #FFF5F5;
    color: #9B2C2C;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FED7D7;
    font-size: 0.9rem;
}


/* ============================================
   ORDER CONFIRMATION PAGE (WooCommerce style)
   ============================================ */

.order-confirmation-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f9f6f1 0%, #fff 100%);
    min-height: 80vh;
}

.order-confirmation-wrapper {
    max-width: 760px;
    margin: 0 auto;
}


/* Success Header */

.confirmation-header {
    text-align: center;
    margin-bottom: 32px;
}

.confirmation-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4BB543;
    animation: fillCheck .4s ease-in-out .4s forwards, scaleCheck .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4BB543;
    fill: none;
    animation: strokeCheck .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #fff;
    stroke-width: 3;
    animation: strokeCheck .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fillCheck {
    100% {
        box-shadow: inset 0px 0px 0px 40px #4BB543;
    }
}

@keyframes scaleCheck {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.confirmation-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.confirmation-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}


/* Order Number Badge */

.order-number-badge {
    background: linear-gradient(135deg, #8B0000 0%, #6d0000 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.25);
}

.badge-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.badge-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Confirmation Card */

.confirmation-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    margin-bottom: 24px;
}

.confirmation-card-header {
    background: #f9f6f1;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
}

.confirmation-card-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.confirmation-card-body {
    padding: 0;
}


/* Products List */

.confirmation-products {
    width: 100%;
}

.conf-product-header {
    display: grid;
    grid-template-columns: 1fr 60px 120px;
    padding: 12px 24px;
    background: #fafafa;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.conf-product-row {
    display: grid;
    grid-template-columns: 1fr 60px 120px;
    padding: 14px 24px;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.conf-product-row:hover {
    background: #fafafa;
}

.conf-product-row:last-child {
    border-bottom: none;
}

.conf-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.conf-product-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.conf-product-info span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.conf-product-qty {
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
}

.conf-product-price {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}


/* Total */

.confirmation-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: #f9f6f1;
    border-top: 2px solid #8B0000;
    font-size: 1.15rem;
    font-weight: 700;
    color: #8B0000;
}


/* Info Grid */

.confirmation-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.confirmation-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.confirmation-info-card h4 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.confirmation-info-card p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Status Badge */

.order-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.order-status-badge.status-pending {
    background: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

.status-note {
    font-size: 0.85rem !important;
    line-height: 1.6;
}


/* Email Notice */

.confirmation-email-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.confirmation-email-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #2E7D32;
}


/* Steps Timeline */

.confirmation-steps {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 32px;
}

.confirmation-steps h4 {
    margin: 0 0 20px;
    font-size: 1rem;
    color: var(--text-dark);
}

.steps-timeline {
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    position: relative;
    opacity: 0.4;
}

.step-item.step-done {
    opacity: 1;
}

.step-item.step-active {
    opacity: 1;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 48px;
    width: 2px;
    height: calc(100% - 34px);
    background: #ddd;
}

.step-item.step-done:not(:last-child)::after {
    background: #4BB543;
}

.step-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.step-done .step-icon {
    background: #E8F5E9;
}

.step-active .step-icon {
    background: #FFF3CD;
    animation: pulse-step 2s ease-in-out infinite;
}

@keyframes pulse-step {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
}

.step-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.step-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}


/* Action Buttons */

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Responsive */

@media (max-width: 768px) {
    .order-confirmation-section {
        padding: 40px 0 60px;
    }
    .confirmation-header h1 {
        font-size: 1.5rem;
    }
    .badge-value {
        font-size: 1.3rem;
    }
    .confirmation-info-grid {
        grid-template-columns: 1fr;
    }
    .conf-product-header {
        grid-template-columns: 1fr 50px 90px;
        font-size: 0.7rem;
        padding: 10px 16px;
    }
    .conf-product-row {
        grid-template-columns: 1fr 50px 90px;
        padding: 12px 16px;
    }
    .conf-product-info img {
        width: 40px;
        height: 40px;
    }
    .conf-product-info span {
        font-size: 0.85rem;
    }
    .confirmation-total {
        padding: 16px;
        font-size: 1.05rem;
    }
    .confirmation-actions {
        flex-direction: column;
    }
    .confirmation-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* --- Boutique Responsive --- */

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .shop-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .shop-grid-3 {
        grid-template-columns: 1fr;
    }
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .shop-cart-btn {
        justify-content: center;
    }
    .product-detail-title {
        font-size: 1.5rem;
    }
    .shop-price-lg {
        font-size: 1.4rem;
    }
    .product-detail-actions {
        flex-direction: column;
    }
    .product-detail-actions .btn {
        min-width: auto;
    }
    .product-detail-trust {
        grid-template-columns: 1fr;
    }
    .product-full-desc {
        padding: 24px;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-total {
        min-width: auto;
        text-align: left;
    }
}


/* ============================================
   HOMEPAGE — BOUTIQUE PRODUCTS SECTION
   ============================================ */

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.home-product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.08);
}

.home-product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.08);
}

.home-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-product-body {
    padding: 24px;
}

.home-product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.home-product-body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.home-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-product-price .current-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.home-product-price .old-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.home-products-cta {
    text-align: center;
    margin-top: 50px;
}

.home-products-cta .btn {
    font-size: 1.05rem;
    padding: 16px 40px;
}

@media (max-width: 1024px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .home-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .home-product-image {
        height: 220px;
    }
    .home-products-cta {
        margin-top: 35px;
    }
}


/* ============================================
   CART SIDEBAR (Slide-in from right)
   ============================================ */

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #0B0B0B;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.cart-sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.cart-sidebar-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-sidebar-body::-webkit-scrollbar {
    width: 4px;
}

.cart-sidebar-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-sidebar-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.cart-sidebar-footer {
    flex-shrink: 0;
    padding: 20px 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(20, 20, 20, 0.95);
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cart-sidebar-total span:first-child {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cart-sidebar-total span:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}


/* Sidebar cart items */

.sidebar-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.sidebar-cart-item:last-child {
    border-bottom: none;
}

.sidebar-cart-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-cart-info {
    flex: 1;
    min-width: 0;
}

.sidebar-cart-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-cart-name:hover {
    color: var(--secondary);
}

.sidebar-cart-price {
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.sidebar-cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn-sm {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--secondary);
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn-sm:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--secondary);
}

.sidebar-cart-qty span {
    font-size: 0.9rem;
    color: white;
    min-width: 20px;
    text-align: center;
}

.sidebar-cart-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-cart-remove:hover {
    color: #ff4444;
}

.cart-sidebar-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
}

.cart-sidebar-empty .empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-sidebar-empty p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.cart-sidebar-loading {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* ============================================
   TRACKING PAGE — Suivi de Commande
   ============================================ */

.tracking-page-section {
    padding: 60px 0 80px;
    min-height: 60vh;
    background: var(--bg-cream);
}

.tracking-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-header-icon {
    font-size: 56px;
    margin-bottom: 12px;
    display: block;
    animation: trackBounce 2s ease-in-out infinite;
}

@keyframes trackBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tracking-page-header h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.tracking-page-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
}


/* Search Box */

.tracking-search-box {
    max-width: 680px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.tracking-search-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.tracking-input-wrap {
    flex: 1;
    position: relative;
}

.tracking-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

.tracking-input-wrap input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafafa;
}

.tracking-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.08);
}

.tracking-search-form .btn {
    white-space: nowrap;
    padding: 16px 32px;
    border-radius: 12px;
}


/* Error State */

.tracking-error-box {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.tracking-error-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.tracking-error-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.tracking-error-box p {
    color: #666;
    margin-bottom: 24px;
}


/* Status Banner */

.tracking-status-banner {
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.status-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-banner-icon {
    font-size: 40px;
    background: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-banner-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.status-banner-text {
    font-size: 20px;
    font-weight: 700;
}

.status-banner-order {
    text-align: right;
}

.status-banner-num {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 8px;
    margin-top: 4px;
}


/* Progress Steps */

.tracking-progress-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.tracking-progress-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.tracking-progress-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 130px;
    position: relative;
}

.progress-step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.progress-step.step-done .progress-step-dot {
    background: #38A169;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.2);
    font-size: 16px;
}

.progress-step.step-active .progress-step-dot {
    background: #4299E1;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(66, 153, 225, 0.25);
    animation: pulseActive 2s ease-in-out infinite;
}

@keyframes pulseActive {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.25);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(66, 153, 225, 0.15);
    }
}

.progress-step.step-pending .progress-step-dot {
    background: #e0e0e0;
    color: #999;
}

.progress-step-info strong {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.progress-step-info span {
    font-size: 11px;
    color: #999;
}

.progress-step.step-active .progress-step-info strong {
    color: #2B6CB0;
}

.progress-step-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin-top: 24px;
    min-width: 40px;
    border-radius: 3px;
    transition: background 0.4s;
}

.progress-step-line.line-done {
    background: #38A169;
}


/* Tracking Timeline Card */

.tracking-timeline-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.tracking-timeline-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 24px;
}


/* Route Summary */

.tracking-route-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.route-emoji {
    font-size: 28px;
}

.route-point small {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-point strong {
    display: block;
    font-size: 15px;
    color: #1565C0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.route-line-visual {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    position: relative;
    min-width: 60px;
}

.route-line-progress {
    height: 100%;
    background: linear-gradient(90deg, #2196F3, #4CAF50);
    border-radius: 6px;
    transition: width 1s ease;
}

.route-line-dot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}


/* Timeline List */

.tracking-timeline-list {
    position: relative;
    padding-left: 36px;
}

.tracking-timeline-list::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4CAF50, #2196F3, #e0e0e0);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    transition: all 0.3s;
}

.timeline-item:hover {
    background: #f5f5f5;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 1;
}

.timeline-item.item-delivered .timeline-dot {
    border-color: #4CAF50;
    background: #E8F5E9;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.timeline-item.item-current .timeline-dot {
    border-color: #2196F3;
    background: #E3F2FD;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.15);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.15);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(33, 150, 243, 0.08);
    }
}

.timeline-item.item-passed .timeline-dot {
    border-color: #C8E6C9;
    background: #E8F5E9;
}

.timeline-item.item-delivered {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
}

.timeline-item.item-current {
    background: #E3F2FD;
    border: 1px solid #BBDEFB;
}

.timeline-city {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.timeline-item.item-current .timeline-city {
    color: #1565C0;
}

.timeline-item.item-delivered .timeline-city {
    color: #2E7D32;
}

.timeline-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.timeline-date {
    font-size: 12px;
    color: #999;
}


/* Details Grid */

.tracking-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
}

.tracking-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.tracking-detail-card h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}


/* Product Rows */

.tracking-product-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.tracking-product-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

.tracking-product-info {
    flex: 1;
}

.tracking-product-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.tracking-product-info span {
    font-size: 12px;
    color: #999;
}

.tracking-product-subtotal {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    white-space: nowrap;
}

.tracking-total-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 4px;
    font-size: 16px;
    border-top: 2px solid var(--primary);
    margin-top: 8px;
}

.tracking-total-row strong {
    color: var(--primary);
    font-size: 18px;
}


/* Info List */

.tracking-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tracking-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}


/* Help Box */

.tracking-help-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
}

.help-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tracking-help-box strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.tracking-help-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.tracking-help-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.tracking-help-box a:hover {
    text-decoration: underline;
}


/* Info Cards (Default State) */

.tracking-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tracking-info-card-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tracking-info-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.tracking-info-card-item .card-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.tracking-info-card-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.tracking-info-card-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}


/* Responsive */

@media (max-width: 768px) {
    .tracking-page-section {
        padding: 100px 0 50px;
    }
    .tracking-page-header h1 {
        font-size: 1.7rem;
    }
    .tracking-search-form {
        flex-direction: column;
    }
    .tracking-status-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .status-banner-content {
        flex-direction: column;
    }
    .status-banner-order {
        text-align: center;
    }
    .tracking-progress-steps {
        flex-direction: column;
        align-items: stretch;
    }
    .progress-step {
        flex-direction: row;
        text-align: left;
        min-width: auto;
    }
    .progress-step-dot {
        margin-bottom: 0;
        margin-right: 12px;
        flex-shrink: 0;
    }
    .progress-step-line {
        width: 3px;
        height: 24px;
        margin: 0 0 0 22px;
        min-width: 3px;
    }
    .tracking-route-summary {
        flex-direction: column;
        text-align: center;
    }
    .route-line-visual {
        width: 80%;
        min-width: auto;
    }
    .route-point strong {
        max-width: none;
    }
    .tracking-details-grid {
        grid-template-columns: 1fr;
    }
    .tracking-info-cards {
        grid-template-columns: 1fr;
    }
    .tracking-search-box {
        padding: 20px;
    }
}


/* ============================================
   RETOUR AFFECTIF PAGE
   ============================================ */


/* Hero */

.retour-hero {
    background: linear-gradient(135deg, #1A0A1A 0%, #2A0F1A 40%, #1A0A0A 100%);
}

.retour-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(255, 107, 157, 0.08) 0%, transparent 60%);
    pointer-events: none;
}


/* Section spacing */

.retour-section {
    padding: 80px 0;
}


/* Visual Image Section */

.retour-visual-section {
    padding: 70px 0;
}

.retour-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.retour-visual-image {
    position: relative;
}

.retour-visual-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.retour-visual-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.retour-visual-image .floating-card {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--primary), #A01010);
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3);
}

.retour-visual-image .floating-card .card-text {
    font-weight: 700;
    font-size: 1rem;
}

.retour-visual-image .floating-card .card-sub {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 2px;
}

.retour-visual-text h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.retour-visual-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.retour-visual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.retour-visual-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F9F6F1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: transform 0.2s;
}

.retour-visual-feature:hover {
    transform: translateY(-2px);
}

.retour-visual-feature span {
    font-size: 20px;
}

@media (max-width: 768px) {
    .retour-visual-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .retour-visual-image .floating-card {
        right: 12px;
        bottom: -12px;
    }
    .retour-visual-text h2 {
        font-size: 1.5rem;
    }
    .retour-visual-features {
        grid-template-columns: 1fr;
    }
}


/* Intro text */

.retour-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.retour-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 12px;
}


/* Alert Cards Grid */

.retour-alerts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.retour-alert-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, background 0.3s;
}

.retour-alert-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
}

.retour-alert-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.retour-alert-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.retour-list-simple {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.retour-list-simple li {
    color: rgba(255, 255, 255, 0.7);
    padding: 3px 0;
    font-size: 0.9rem;
}

.retour-list-simple li::before {
    content: '—';
    margin-right: 8px;
    color: var(--gold);
}


/* 3 Pillars */

.retour-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.retour-pillar {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 36px 28px 28px;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.retour-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.retour-pillar-number {
    position: absolute;
    top: -18px;
    left: 28px;
    background: var(--primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.retour-pillar-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.retour-pillar h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.retour-pillar>p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.retour-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.retour-pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.retour-pillar-list li:last-child {
    border-bottom: none;
}

.retour-pillar-list li span {
    flex-shrink: 0;
    font-size: 16px;
}

.retour-pillar-note {
    background: #FFF5F5;
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 10px 10px 0;
    font-size: 0.88rem;
    color: #8B0000;
    font-weight: 500;
}

.retour-pillar-note-gold {
    background: #FFFBF0;
    border-left-color: var(--gold);
    color: #6B4F00;
}


/* Echec Section */

.retour-echec-content {
    max-width: 860px;
    margin: 0 auto;
}

.retour-echec-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.retour-echec-emoji {
    font-size: 48px;
}

.retour-echec-highlight h3 {
    color: #FF6B6B;
    font-size: 1.5rem;
    margin: 0;
}

.retour-echec-main>p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 24px;
}

.retour-exemple-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
}

.retour-exemple-box h4 {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.retour-exemple-box>p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.retour-exemple-box ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.retour-exemple-box ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    font-size: 0.93rem;
}

.retour-warning-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(229, 62, 62, 0.12);
    border: 1px solid rgba(229, 62, 62, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
}

.retour-warning-card span {
    font-size: 28px;
    flex-shrink: 0;
}

.retour-warning-card p {
    margin: 0;
    color: #FF8A8A;
    font-size: 1rem;
}


/* Prenez Garde */

.retour-garde-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.retour-garde-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 32px;
}

.retour-garde-why {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    margin-bottom: 28px;
}

.retour-garde-why h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.retour-garde-why p {
    color: #555;
    margin-bottom: 12px;
}

.retour-garde-why ul {
    list-style: none;
    padding: 0;
}

.retour-garde-why ul li {
    padding: 6px 0;
    color: #666;
    font-size: 0.95rem;
}

.retour-garde-why ul li::before {
    content: '• ';
    color: var(--primary);
    font-weight: bold;
}

.retour-garde-conclusion {
    background: linear-gradient(135deg, #FFF9E5, #FFF4D6);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.retour-garde-conclusion p {
    margin: 0;
    color: #6B4F00;
    font-size: 1.05rem;
    font-weight: 500;
}


/* Engagement Grid */

.retour-engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.retour-engagement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.retour-engagement-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.retour-engagement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #A01010);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.3);
}

.retour-engagement-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.retour-engagement-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
}

.retour-engagement-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.retour-engagement-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.retour-engagement-note p:last-child {
    margin-bottom: 0;
}

.retour-engagement-cta {
    font-size: 1.15rem !important;
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 8px;
}


/* Pourquoi se battre */

.retour-amour-content {
    max-width: 750px;
    margin: 0 auto;
}

.retour-amour-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.retour-amour-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FFF9E5, #FFF4D6);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-top: 28px;
}

.retour-amour-highlight span {
    font-size: 32px;
    flex-shrink: 0;
}

.retour-amour-highlight p {
    margin: 0 !important;
    color: #5A4000 !important;
    font-size: 1rem !important;
}


/* Causes Grid */

.retour-causes-intro {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.retour-causes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.retour-cause-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #444;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.retour-cause-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.retour-cause-item span {
    font-size: 16px;
    flex-shrink: 0;
}


/* Témoignages Slider */

.temoignage-slider {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 50px;
}

.temoignage-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.temoignage-slide {
    flex-shrink: 0;
}

.temoignage-slide-inner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temoignage-slide-inner:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}


/* Photo */

.temoignage-photo-wrap {
    position: relative;
    margin-bottom: 18px;
}

.temoignage-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s;
}

.temoignage-slide-inner:hover .temoignage-photo {
    transform: scale(1.05);
}

.temoignage-flag-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 24px;
    background: rgba(11, 11, 11, 0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}


/* Quote icon */

.temoignage-quote-icon {
    font-size: 52px;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 0.8;
    margin-bottom: 8px;
    pointer-events: none;
}


/* Text */

.temoignage-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}


/* Author */

.temoignage-author {
    margin-bottom: 8px;
}

.temoignage-author strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.temoignage-author span {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}


/* Stars */

.temoignage-stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 3px;
}


/* Arrows */

.temoignage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.temoignage-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.4);
}

.temoignage-prev {
    left: 0;
}

.temoignage-next {
    right: 0;
}


/* Dots */

.temoignage-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.temoignage-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.temoignage-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* CTA Section */

.retour-cta-section {
    padding: 60px 0 80px;
}

.retour-cta-box {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF9E5, #FFF4D6);
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.1);
}

.retour-cta-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
}

.retour-cta-box h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.retour-cta-box>p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.retour-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============ RETOUR AFFECTIF RESPONSIVE ============ */

@media (max-width: 992px) {
    .retour-pillars {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .retour-engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .retour-causes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .retour-section {
        padding: 60px 0;
    }
    .retour-alerts-grid {
        grid-template-columns: 1fr;
    }
    .retour-engagement-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    .retour-causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .temoignage-slider {
        padding: 0 40px;
    }
    .retour-cta-box {
        padding: 32px 24px;
    }
    .retour-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .retour-echec-highlight {
        flex-direction: column;
        text-align: center;
    }
    .retour-amour-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .retour-causes-grid {
        grid-template-columns: 1fr;
    }
    .temoignage-slider {
        padding: 0 10px;
    }
    .temoignage-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .temoignage-photo {
        width: 72px;
        height: 72px;
    }
}