﻿/* ========================================================================== */
/* STYLES GÉNÉRAUX & VARIABLES DE COULEUR                                     */
/* ========================================================================== */

/* S'assurer que tous les widgets externes restent en dessous du menu */
iframe[src*="google"], 
iframe[src*="facebook"], 
iframe[src*="twitter"],
div[class*="widget"],
div[id*="widget"],
div[class*="google"],
div[id*="google"] {
    z-index: 1 !important;
}

/* Empêcher le défilement horizontal global */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* --- Titres harmonisés --- */
h1, .title-h1, .page-title, .login-title {
    font-family: var(--font-family);
    font-size: var(--title-h1-size);
    font-weight: var(--title-weight);
    line-height: var(--title-line-height);
    margin-bottom: var(--title-margin-bottom);
    color: var(--ink);
}

h2, .title-h2, .about-title, .sophro-title, .massage-title, .rdv-title {
    font-family: var(--font-family);
    font-size: var(--title-h2-size);
    font-weight: var(--title-weight);
    line-height: var(--title-line-height);
    margin-bottom: var(--title-margin-bottom);
    color: var(--ink);
}

/* Titre "Témoignages" en blanc et sans ligne en dessous */
.temoignages-left h2 {
    color: white !important;
    margin-bottom: 0 !important;
}

/* Titre "Bienvenue" en blanc */
#welcome-title {
    color: white !important;
}

/* Titre "Les tarifs" au-dessus de l'image */
.tarifs-title {
    color: var(--ink);
    font-size: var(--title-h2-size);
    font-weight: var(--title-weight);
    margin: 0 0 20px 0;
    padding: 0;
}

.tarifs-img-container {
    display: flex;
    flex-direction: column;
}

.tarifs-img {
    height: 500px !important;
    object-fit: cover;
}

h3, .title-h3 {
    font-family: var(--font-family);
    font-size: var(--title-h3-size);
    font-weight: var(--title-weight);
    line-height: var(--title-line-height);
    margin-bottom: calc(var(--title-margin-bottom) * 0.75);
    color: var(--ink);
}

/* --- Responsive pour les titres --- */
@media (max-width: 768px) {
    h1, .title-h1, .page-title, .login-title {
        font-size: 2rem;
    }
    
    h2, .title-h2, .about-title, .sophro-title, .massage-title, .rdv-title {
        font-size: 1.6rem;
    }
    
    h3, .title-h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h1, .title-h1, .page-title, .login-title {
        font-size: 1.8rem;
    }
    
    h2, .title-h2, .about-title, .sophro-title, .massage-title, .rdv-title {
        font-size: 1.4rem;
    }
    
    h3, .title-h3 {
        font-size: 1.2rem;
    }
}

:root {
    /* Couleurs principales */
    --brand: #7da3a4;
    --accent: #c4815b;
    --ink: #2f3a3a;
    --muted: #6f8e8f;
    --paper: #f2f5f5;
    --white: #fff;
    
    /* Couleurs d'état */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    
    /* Design system */
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --shadow: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, .12);
    
/* Typographie */
--font-family: 'Aptos', sans-serif;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;

/* Titres harmonisés */
--title-h1-size: 2.5rem;
--title-h2-size: 2rem;
--title-h3-size: 1.5rem;
--title-weight: 700;
--title-line-height: 1.2;
--title-margin-bottom: 1.5rem;
    
    /* Espacement */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-2xl: 1600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    font-family: var(--font-family);
    -moz-font-feature-settings: "liga" on;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga" on;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    color: var(--ink);
}

/* Force Aptos pour tous les éléments */
*, *::before, *::after {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de formulaire */
input, textarea, select, button, label {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de navigation */
nav, nav *, a, button {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu */
p, span, div, h1, h2, h3, h4, h5, h6, li, ul, ol {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de table */
table, th, td, tr {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de liste */
ul, ol, li, dl, dt, dd {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de citation */
blockquote, cite, q {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de code */
code, pre, kbd, samp {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de formulaire avancés */
fieldset, legend, optgroup, option {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de média */
figcaption, caption {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de définition */
dfn, abbr, acronym, var {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de mise en forme */
strong, b, em, i, u, s, mark, small, sub, sup {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de navigation avancés */
menu, menuitem, summary, details {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de formulaire HTML5 */
input[type="text"], input[type="email"], input[type="password"], 
input[type="tel"], input[type="url"], input[type="search"], 
input[type="number"], input[type="date"], input[type="time"], 
input[type="datetime-local"], input[type="month"], input[type="week"] {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu HTML5 */
article, aside, section, header, footer, main, nav, 
address, time, progress, meter, output {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de widget et composants */
.widget, .component, .module, .card, .panel, .modal, 
.tooltip, .popover, .dropdown, .accordion, .tabs {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de navigation mobile */
.mobile-menu, .hamburger, .burger, .menu-toggle, 
.sidebar, .drawer, .overlay {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de formulaire personnalisés */
.custom-input, .custom-select, .custom-textarea, 
.custom-button, .custom-checkbox, .custom-radio {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de témoignages et avis */
.review-card, .testimonial, .rating, .star, 
.google-review, .review-text, .reviewer-name {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de navigation et liens */
.nav-link, .menu-item, .breadcrumb, .pagination, 
.social-link, .cta-button, .action-button {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu spécifiques */
.hero-text, .section-title, .content-text, 
.description, .summary, .excerpt {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments dynamiques et générés */
[class*="aptos"], [id*="aptos"], 
.dynamic-content, .generated-content, 
.ajax-content, .lazy-content {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de framework et bibliothèques */
.bootstrap *, .foundation *, .materialize *, 
.jquery *, .react *, .vue *, .angular * {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de plugin et extension */
.plugin *, .extension *, .addon *, 
.widget *, .component *, .module * {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu généré par JavaScript */
.js-generated, .dynamic-text, .ajax-loaded, 
.lazy-loaded, .infinite-scroll, .virtual-scroll {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu généré par des bibliothèques */
.library-content, .framework-content, .plugin-content, 
.extension-content, .addon-content {
    font-family: "Aptos", sans-serif !important;
}

/* Force Aptos pour tous les éléments de contenu généré par des services externes */
.external-content, .third-party-content, .api-content, 
.service-content, .integration-content {
    font-family: "Aptos", sans-serif !important;
}

/* Style pour la date de dernière mise à jour des mentions légales */
.last-update {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 1.5em;
    padding: 0.5em;
    background-color: #f8f9fa;
    border-left: 3px solid #7da3a4;
    border-radius: 3px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Styles généraux pour le body (depuis HTML) - Optimisé */
    /* Propriétés déjà définies dans body, suppression des doublons */

@font-face {
  font-family: 'Aptos';
  src: local('Aptos'), local('Aptos Display'), local('Aptos Regular');
  font-weight: 400;
  font-style: normal;
}


/* ========================================================================== */
/* EN-TÊTE AVEC LOGO                                                          */
/* ========================================================================== */

.div-block {
    padding: 25px 20px; /* Marge réduite */
    text-align: center;
    background: linear-gradient(135deg, #f8fafa 0%, #ffffff 100%);
}

.image-3 {
    max-width: 250px; /* Taille du logo augmentée */
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-3:hover {
    transform: scale(1.05);
}

/* Responsive pour le logo */
@media (max-width: 768px) {
    .image-3 {
        max-width: 250px; /* Augmenté de 200px à 250px */
    }
}

/* Styles spécifiques pour tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .image-3 {
        max-width: 280px; /* Taille adaptée pour tablettes */
    }
    
    .welcome-img, .sophro-img, .massage-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        max-height: 400px !important;
        object-fit: cover !important;
        border-radius: var(--radius) !important;
        box-shadow: var(--shadow) !important;
    }
    
    /* S'assurer que les conteneurs d'images sont visibles */
    .welcome-media, .sophro-media, .massage-media {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Cartes principales sur tablettes */
    .welcome-card, .sophro-card, .massage-card {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        align-items: stretch !important;
    }
    
    /* Égaliser les largeurs et marges des blocs texte et image */
    .welcome-content, .sophro-content, .massage-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* S'assurer que les cartes sophro et massage ont les mêmes marges */
    .sophro-card, .massage-card {
        margin: 0 !important;
        padding: 20px !important;
    }
    
    /* Harmoniser les marges des titres et textes */
    .welcome-content h1, .sophro-content h1, .massage-content h1,
    .welcome-content h2, .sophro-content h2, .massage-content h2,
    .welcome-content p, .sophro-content p, .massage-content p {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .welcome-media, .sophro-media, .massage-media {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .image-3 {
        max-width: 220px; /* Augmenté de 180px à 220px */
    }
}

@media (max-width: 360px) {
    .image-3 {
        max-width: 200px; /* Augmenté de 160px à 200px */
    }
}


/* ========================================================================== */
/* BARRE DE NAVIGATION (CORRIGÉE SELON L'ORIGINAL)                            */
/* ========================================================================== */

#wv-nav,
#wv-nav * {
    box-sizing: border-box;
}

#wv-nav {
    --brand: #cd855f;
    --white: #fff;
    --ink: #000;
    width: 100%;
    background: var(--brand) !important;
    font-family: var(--font-family);
    position: sticky;
    top: 0;
    z-index: 10000;
}

@media (min-width: 992px) {
    #wv-nav * {
        background: transparent !important;
        box-shadow: none !important;
        border: none;
    }
}

#wv-nav .strip {
    display: flex;
    justify-content: center;
    padding: 12px 20px; /* Marge réduite */
    gap: 28px; /* Espace entre les liens réduit */
    flex-wrap: wrap;
}

#wv-nav .link {
    position: relative;
    color: var(--white) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 600;
    font-size: 1.05rem; /* Police légèrement ajustée */
    white-space: nowrap;
    padding: 6px 0;
    transition: opacity .2s;
    background: transparent !important;
}

#wv-nav .link:hover {
    opacity: .9;
}

@media (min-width: 992px) {
    #wv-nav .link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        height: 3px;
        background: var(--white); /* Couleur par défaut pour le survol */
        width: 60%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        transition: transform .3s ease;
        border-radius: 2px;
    }

    #wv-nav .link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    #wv-nav .link.active::after {
        background: var(--ink); /* Couleur pour l'élément actif */
        transform: translateX(-50%) scaleX(1);
        width: 80%;
        height: 4px;
    }
    
    #wv-nav .link.active:hover::after {
        background: var(--ink); /* Assure que le trait reste noir au survol */
        transform: translateX(-50%) scaleX(1);
    }
}

#wv-nav .link.active {
    color: var(--ink) !important;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

#wv-nav .links-desktop {
    display: flex;
    gap: clamp(16px, 2vw, 28px); /* Espace entre les liens adaptatif */
    flex-wrap: nowrap;
}

#wv-nav .burger {
    display: none;
    flex-direction: column;
    width: 40px;
    height: 34px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    z-index: 99998 !important;
    position: relative;
    transition: all .3s ease;
    outline: none;
}

#wv-nav .burger span {
    height: 2px;
    width: 22px;
    background: var(--white) !important;
    margin: 2.5px 0;
    border-radius: 2px;
    transition: all .3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#wv-nav .burger:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05);
}

#wv-nav .burger:focus {
    outline: none;
}

#wv-nav .burger:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Menu mobile - Version simplifiée et fonctionnelle */
@media (max-width: 1300px) {
    #wv-nav .strip {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    #wv-nav .links-desktop {
        display: none !important;
    }
    
    #wv-nav .burger {
        display: flex !important;
        flex-direction: column;
        width: 40px;
        height: 34px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        cursor: pointer;
        padding: 6px;
        margin: 0;
        position: relative;
        z-index: 1000;
        transition: all .3s ease;
    }
    
    /* MENU RESPONSIVE SANS SCROLLBAR - TOUTES LES PAGES VISIBLES */
    #wv-nav .panel {
        overflow-y: visible !important;
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }
    
    #wv-nav .burger span {
        height: 2px;
        width: 22px;
        background: var(--white);
        margin: 2.5px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    #wv-nav .burger:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
    
    /* Panel mobile - Version responsive sans scrollbar */
    #wv-nav .panel {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 75vw !important;
        height: 100vh !important;
        background: var(--brand) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 80px 0 100px 0 !important; /* Plus d'espace en bas pour voir "Accès thérapeute" */
        transition: right 0.3s ease !important;
        z-index: 9999 !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }
    
    /* Contenu du menu responsive */
    #wv-nav .panel-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        height: calc(100vh - 100px);
    }
    
    #wv-nav .panel.show {
        display: flex !important;
        right: 0 !important;
    }
    
    #wv-nav .panel .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    #wv-nav .panel .close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    #wv-nav .panel .panel-title {
        color: white;
        font-size: 1.4rem;
        font-weight: 700;
        padding: 20px 24px 15px 24px;
        margin: 0;
        text-align: center;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    #wv-nav .panel .panel-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }
    
    #wv-nav .panel .link {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 20px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }
    
    #wv-nav .panel .link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(8px);
    }
    
    #wv-nav .panel .link.active {
        background: transparent !important;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* Suppression des indicateurs de scroll - Menu entièrement visible */
    
    /* Animation du burger quand ouvert */
    #wv-nav .burger.open span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
    }
    #wv-nav .burger.open span:nth-child(2) { 
        opacity: 1; 
    }
    #wv-nav .burger.open span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
    }
    
    /* Rendre invisible le bouton burger quand le menu est ouvert (garder l'espace) */
    #wv-nav .burger.open {
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

    
    #wv-nav .panel {
        position: fixed;
        top: 0;
        right: -75vw;
        width: 75vw;
        height: 100vh;
        max-height: 100vh;
        background: var(--brand) !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 0 0 0;
        border-radius: 0;
        border: none !important;
        outline: none !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99999 !important;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
        box-shadow: none;
        backdrop-filter: blur(15px);
        border-left: 4px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Supprimer toutes les bordures des éléments du panel */
    #wv-nav .panel * {
        border: none !important;
        outline: none !important;
    }
    
    /* Bouton de fermeture */
    #wv-nav .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: var(--white);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 100000;
        outline: none;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }
    
    #wv-nav .close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
    
    #wv-nav .close-btn:focus {
        outline: none;
    }
    
    #wv-nav .close-btn:focus-visible {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    }
    
    #wv-nav .close-btn svg {
        width: 20px;
        height: 20px;
        pointer-events: none;
    }
    
    #wv-nav .close-btn:active {
        transform: scale(0.95);
    }

    /* Titre du menu mobile - style sophrotherapie-paris.com */
    #wv-nav .panel-title {
        color: var(--white) !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        padding: 20px 24px 15px 24px !important;
        margin: 0 !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Indicateur de défilement supprimé pour éviter les blocs fixes */
    
    /* Indicateur de défilement supprimé pour éviter les blocs fixes */
    
    /* Conteneur pour le contenu du menu */
    #wv-nav .panel-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 8px;
        margin-right: -8px;
        margin-top: 0;
        position: relative;
    }
    
    
    /* Amélioration des liens du menu mobile - style sophrotherapie-paris.com */
    #wv-nav .panel .link {
        color: var(--white) !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        padding: 16px 24px !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
        border: none !important;
        text-align: left !important;
        margin: 0 !important;
        -webkit-tap-highlight-color: transparent !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    #wv-nav .panel .link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        border-bottom-color: rgba(255, 255, 255, 0.3) !important;
        transform: translateX(8px) !important;
        box-shadow: none !important;
    }
    
    #wv-nav .panel .link:active {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    #wv-nav .panel .link:focus {
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Ajouter des flèches aux liens du menu mobile uniquement */
    #wv-nav .panel .link::after {
        content: '→' !important;
        font-size: 1.1rem !important;
        opacity: 0.7 !important;
        transition: all 0.3s ease !important;
        margin-left: auto !important;
        position: static !important;
        left: auto !important;
        bottom: auto !important;
        height: auto !important;
    }
    
    /* Marge supplémentaire sous "Accès thérapeute" dans le menu hamburger */
    #wv-nav .panel .link[href="acces-therapeute-login.html"] {
        margin-bottom: 30px !important;
        width: auto !important;
        background: none !important;
        transform: none !important;
        border-radius: 0 !important;
    }
    
    #wv-nav .panel .link:hover::after {
        opacity: 1 !important;
        transform: translateX(4px) !important;
    }
    
    /* Indicateur de défilement supprimé pour éviter les blocs fixes */
    
    /* Indicateur de défilement supprimé pour éviter les blocs fixes */
    
    /* Indicateurs de défilement supprimés pour éviter les blocs fixes */
    
    
    /* Style de la scrollbar pour le panneau mobile - très visible et fonctionnelle */
    #wv-nav .panel::-webkit-scrollbar {
        width: 12px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    #wv-nav .panel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        margin: 8px 0;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        border-radius: 6px;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        min-height: 40px;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:active {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-color: rgba(255, 255, 255, 0.7);
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        transform: scale(1.1);
    }
    #wv-nav .panel.show { display: flex !important; }
    #wv-nav .panel.open { right: 0; }
    
    /* Forcer la fermeture du panel quand il n'a pas les classes show/open */
    #wv-nav .panel:not(.show):not(.open) { 
        display: none !important; 
        right: -75vw !important;
    }
    
    /* Cacher la barre principale quand le menu est ouvert */
    #wv-nav .panel.open ~ .strip {
        opacity: 0;
        pointer-events: none;
    }
    
    
    /* Garder l'icône hamburger cliquable même quand le panel est ouvert */
    #wv-nav .panel.open ~ .strip .burger {
        pointer-events: auto !important;
        opacity: 1 !important;
        z-index: 100000 !important;
        position: relative;
    }
    #wv-nav .panel .link { 
        font-size: 1.1rem; 
        padding: 16px 20px; 
        width: 100%; 
        text-align: right; 
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transition: all 0.3s ease;
        color: var(--white);
        -webkit-tap-highlight-color: transparent;
        text-decoration: none;
        border-radius: 8px;
        position: relative;
        font-weight: 500;
    }
    
    #wv-nav .panel .link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateX(-4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    #wv-nav .panel .link:active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    #wv-nav .panel .link:focus {
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Indicateur pour la page active - style harmonieux */
    #wv-nav .panel .link.active {
        background-color: transparent !important;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    
    #wv-nav .burger.open {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    #wv-nav .burger.open span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
        pointer-events: none;
    }
    #wv-nav .burger.open span:nth-child(2) { 
        opacity: 1; 
        transform: none;
        pointer-events: none;
    }
    #wv-nav .burger.open span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
        pointer-events: none;
    }
    
    /* Rendre invisible le bouton burger quand le menu est ouvert (garder l'espace) */
    #wv-nav .burger.open {
        visibility: hidden !important;
        opacity: 0 !important;
    }

@media (min-width: 1301px) {
    #wv-nav .panel { display: none !important; }
    #wv-nav .burger { display: none !important; }
    #wv-nav .links-desktop { display: flex !important; }
}

/* ========================================================================== */
/* MENU MOBILE RESPONSIVE SANS SCROLLBAR - TOUTES LES PAGES VISIBLES        */
/* ========================================================================== */

/* Panel mobile - Version responsive sans scrollbar */
@media (max-width: 1300px) {
    #wv-nav .panel {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 75vw !important;
        height: 100vh !important;
        background: var(--brand) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 80px 0 100px 0 !important; /* Plus d'espace en bas pour voir "Accès thérapeute" */
        transition: right 0.3s ease !important;
        z-index: 9999 !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }
    
    #wv-nav .panel.show {
        display: flex !important;
        right: 0 !important;
    }
    
    /* Contenu du menu responsive */
    #wv-nav .panel-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        height: calc(100vh - 180px); /* Ajusté pour le nouveau padding-bottom */
        overflow-y: visible;
    }
    
    #wv-nav .panel .link {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 20px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }
    
    #wv-nav .panel .link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(8px);
    }
    
    #wv-nav .panel .link.active {
        background: transparent !important;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* Très petits mobiles - Menu plus compact */
@media (max-width: 480px) {
    #wv-nav .panel {
        width: 80vw !important;
        right: -80vw !important;
        padding: 80px 0 80px 0 !important; /* Encore plus d'espace en bas sur petits écrans */
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -80vw !important;
    }
    
    /* Liens plus compacts sur petits écrans */
    #wv-nav .panel .link {
        font-size: 0.9rem;
        padding: 10px 16px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ajuster la hauteur du contenu pour les petits écrans */
    #wv-nav .panel-content {
        height: calc(100vh - 200px) !important; /* Ajusté pour le padding-bottom de 80px */
    }
}

/* iPhone SE 2022 spécifique */
@media (max-width: 375px) and (max-height: 667px) {
    #wv-nav .panel {
        width: 85vw !important;
        right: -85vw !important;
        padding: 80px 0 100px 0 !important; /* Maximum d'espace en bas pour iPhone SE */
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -85vw !important;
    }
    
    /* Liens encore plus compacts */
    #wv-nav .panel .link {
        font-size: 0.85rem;
        padding: 8px 14px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Ajuster la hauteur du contenu pour iPhone SE */
    #wv-nav .panel-content {
        height: calc(100vh - 220px) !important; /* Ajusté pour le padding-bottom de 100px */
    }
}

/* Galaxy Note 20 Ultra et appareils Android similaires */
@media (max-width: 412px) and (min-height: 900px) {
    #wv-nav .panel {
        width: 85vw !important;
        right: -85vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -85vw !important;
    }
    
    /* Liens adaptés pour Android */
    #wv-nav .panel .link {
        font-size: 0.95rem;
        padding: 11px 18px;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Panel caché par défaut - Règles globales */
#wv-nav .panel {
    display: none !important;
}

/* Panel visible quand ouvert - Règles globales */
#wv-nav .panel.show {
    display: flex !important;
}




/* ========================================================================== */
/* PAGE: ACCUEIL                                                              */
/* ========================================================================== */

/* --- Section Bienvenue --- */
.zone-bienvenue {
    padding: 40px 0; /* Marge réduite */
}

.welcome-wrap {
    font-family: "Aptos", sans-serif;
    color: var(--ink);
    width: 100%;
    padding: clamp(20px, 3vw, 40px) 15px; /* Marge harmonisée */
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(8px, 1vw, 15px);
    align-items: stretch;
    grid-template-areas: "text image";
}

.welcome-card {
    grid-area: text;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 30px);
    font-size: clamp(0.85rem, 0.6rem + 0.6vw, 1.2rem);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 0 0 20px;
    text-align: justify;
    hyphens: auto;
    word-spacing: -0.05em;
    min-height: clamp(300px, 40vw, 500px);
}
/* Style harmonisé appliqué via les règles générales */
.welcome-card p { margin: 0 0 12px; }
.welcome-media { grid-area: image; }
.welcome-img {
    width: 100%;
    height: 100%;
    min-height: clamp(300px, 40vw, 500px);
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

/* --- Grille de services --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, 2vw, 25px);
    padding: clamp(10px, 2vw, 20px);
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.card-title { font-weight: 600; color: var(--muted); padding: 10px 8px; font-size: 1rem; }

/* --- Section CTA --- */
.section-prenez-rdv-acceuil { padding: 40px 15px; } /* Marge réduite */
.cta-wrap {
    font-family: "Aptos", sans-serif;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.cta-bg {
    background: url("https://i.postimg.cc/HxrVxpT7/anthony-delanoix-ur-Ud-KCxs-TUI-unsplash.jpg") center/cover no-repeat;
    min-height: 400px; /* Hauteur réduite */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 15px; /* Marge réduite */
    color: var(--white);
    position: relative;
}
.cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}
.cta-content { position: relative; z-index: 1; max-width: 900px; }
/* Style harmonisé appliqué via les règles générales */
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s ease;
}
.cta-btn:hover { opacity: .9; transform: translateY(-2px); }


/* ========================================================================== */
/* STYLES DES PAGES SPÉCIFIQUES                                               */
/* ========================================================================== */

/* --- Qui suis-je ? --- */
.about-wrap { 
    font-family: "Aptos", sans-serif; 
    padding: clamp(20px, 3vw, 40px) 15px; /* Marge harmonisée */
    max-width: 100vw;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1vw, 15px); align-items: stretch; }
.about-left { display: flex; flex-direction: column; justify-content: flex-start; }
/* Style harmonisé appliqué via les règles générales */
.about-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.about-card {
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 30px);
    font-size: 0.95rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: clamp(250px, 35vw, 400px);
    height: 100%;
    /*margin: 0 0 0 20px;*/
    font-family: "Aptos", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}
.about-card p { 
    margin: 0 0 20px; 
    max-width: 750px; 
    line-height: 1.7;
    text-align: justify;
    font-family: "Aptos", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}
.about-card p:first-child {
    margin-top: 0;
}
.about-card p:last-child {
    margin-bottom: 0;
}

/* --- Sophrologie & Massage --- */
.sophro-wrap, .massage-wrap { font-family: "Aptos", sans-serif; padding: clamp(20px, 3vw, 40px) 15px; } /* Marge harmonisée */
.sophro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1vw, 15px); align-items: stretch; }
.massage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1vw, 15px); align-items: stretch; }
.sophro-card, .massage-card { background: var(--brand); color: var(--white); border-radius: var(--radius); padding: clamp(20px, 3vw, 30px); font-size: 0.95rem; line-height: 1.7; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; min-height: clamp(250px, 35vw, 400px); height: 100%; margin: 0; }
.sophro-card p, .massage-card p { margin: 0 0 20px; max-width: 750px; line-height: 1.7; text-align: justify; }
.sophro-right, .massage-left, .sophro-left { display: flex; flex-direction: column; justify-content: flex-start; }
/* Styles harmonisés appliqués via les règles générales */
.sophro-title, .massage-title { text-align: left; }
.about-title { text-align: right; }
.sophro-img, .massage-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Tarifs --- */
.tarifs-wrap { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(8px, 1vw, 15px); 
    align-items: stretch; 
    /*margin-bottom: 40px;*/ 
    padding: clamp(20px, 3vw, 40px) 15px; 
    width: 100%;
    box-sizing: border-box;
} /* Marge harmonisée */
.pricing-card { --header-bg: #c4815b; --panel-bg: #7da3a4; font-family: "Aptos", sans-serif; border-radius: 8px; overflow: hidden; color: #fff; display: flex; flex-direction: column; height: 100%; margin: 0 0 0 20px; }
.pricing-card__head { background: var(--header-bg); padding: 12px 20px; font-weight: 700; }
.pricing-head-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; align-items: center; max-width: 680px; margin: 0 auto; }
.pricing-head-grid span:first-child { text-align: left; }
.pricing-head-grid span:last-child { 
    text-align: right !important; 
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-self: end !important;
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem) !important;
    font-weight: 700 !important;
}
.pricing-card__body { background: var(--panel-bg); padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.pricing-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; row-gap: 6px; column-gap: 20px; align-items: center; max-width: 680px; margin: 0 auto; }
.pricing-grid::before { content: ""; position: absolute; left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); background: #fff; opacity: .9; border-radius: 2px; }
.item { display: contents; }
.label { color: #e8f0f0; font-weight: 500; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem); line-height: 1.4; }
.price { 
    font-weight: 700; 
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem); 
    white-space: nowrap; 
    justify-self: end !important; 
    text-align: right !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}
.item.tarif-reduit .label, .item.tarif-reduit .price { margin-top: 18px; }
.payment-info { 
    background: #f5f7f7; 
    padding: 18px 20px; 
    margin-top: 40px; 
    border-radius: 6px; 
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.05rem); 
    line-height: 1.5; 
    color: #444; 
    text-align: justify;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.payment-info a { color: #3a8b99; text-decoration: none; font-weight: 500; }
.tarifs-img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* --- Témoignages --- */
/* .temoignages-grid défini plus bas */
/* .temoignages-left défini plus bas */
/* Style harmonisé appliqué via les règles générales */
.temoignages-left .widget-wrap { width: 100%; margin: 0 auto; }
.temoignages-right { position: relative; border-radius: 10px; overflow: hidden; min-height: 320px; }
.temoignages-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Google Reviews Grid --- */
/* .google-reviews-container défini plus bas */
.google-reviews-widget { 
    background: #fff; 
    border-radius: 16px; 
    padding: 30px; 
    box-shadow: 0 8px 32px rgba(125, 163, 164, 0.15), 0 2px 8px rgba(0,0,0,0.1); 
    width: 100%; 
    margin: 0 auto;
    border: 1px solid rgba(125, 163, 164, 0.1);
    position: relative;
    overflow: hidden;
}

.google-reviews-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7da3a4 0%, #6a8f90 50%, #7da3a4 100%);
}
.google-reviews-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 25px; 
    padding: 20px; 
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.google-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-header-right {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin-right: 5px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-text {
    color: black;
    font-size: 1rem;
    font-weight: 500;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.google-info h3 {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

/* Styles pour les boutons Google - version principale */
.google-review-btn-header {
    background: #4285f4;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.google-review-btn-header:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    text-decoration: none;
    color: white;
}

.google-review-btn-header:active {
    transform: translateY(0);
    background: #1a73e8;
}

/* Pattern de fond supprimé pour le fond blanc */

.google-logo { 
    margin-right: 20px; 
    padding: 8px;
    position: relative;
    z-index: 1;
}

.google-logo img {
    width: 80px;
    height: 26px;
    object-fit: contain;
}

.google-info { 
    position: relative;
    z-index: 1;
}

.google-info h3 { 
    margin: 0; 
    color: black; 
    font-size: 1.4rem; 
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-rating { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-top: 8px; 
}

.stars { 
    color: #ffd700; 
    font-size: 1.3rem; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-text { 
    color: black; 
    font-size: 1rem; 
    font-weight: 500;
    text-shadow: none;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

/* Grille d'avis 4x2 pour le carrousel avec navigation en bas */
.reviews-slider { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, auto);
    gap: 24px; 
    margin: 25px 0; 
    min-height: 400px;
    width: 100%;
    position: relative;
    align-items: start;
    justify-items: stretch;
}

.reviews-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Indicateur de slide supprimé */

.review-card { 
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); 
    border-radius: 16px; 
    padding: 16px; 
    border: 1px solid rgba(125, 163, 164, 0.15);
    border-left: 4px solid #7da3a4; 
    box-shadow: 0 4px 16px rgba(125, 163, 164, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    aspect-ratio: 0.7;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    visibility: visible;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(125, 163, 164, 0.18);
    transform: translateY(-2px);
}

/* Classe pour les cartes avec texte étendu */
.review-card.expanded {
    aspect-ratio: unset !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: visible !important;
}

.review-card.active {
    visibility: visible;
    opacity: 1;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 163, 164, 0.02) 0%, rgba(106, 143, 144, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 8px 25px rgba(125, 163, 164, 0.2), 0 4px 12px rgba(0,0,0,0.1); 
    border-left-color: #6a8f90;
}

.review-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 10px; 
    position: relative;
    z-index: 3;
}

.reviewer-info { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.reviewer-avatar { 
    width: 36px; 
    height: 36px; 
    background: linear-gradient(135deg, #7da3a4 0%, #6a8f90 100%); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    font-size: 1rem; 
    box-shadow: 0 2px 8px rgba(125, 163, 164, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.reviewer-details strong { 
    display: block; 
    color: #000000; 
    font-size: 0.8rem; 
    font-weight: 600;
}

.review-stars { 
    color: #ffd700; 
    font-size: 0.9rem; 
    margin-top: 2px; 
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.2));
}

.review-date { 
    color: #666; 
    font-size: 0.8rem; 
}

.review-text { 
    color: #000000; 
    font-size: 0.8rem; 
    line-height: 1.3; 
    margin: 0; 
    font-style: italic; 
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    line-clamp: 12;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    position: relative;
    z-index: 3;
    word-break: break-word;
    hyphens: auto;
}

/* Responsive line-clamp pour différents écrans */
@media (max-width: 1200px) {
    .review-text {
        -webkit-line-clamp: 10;
        line-clamp: 10;
    }
}

@media (max-width: 900px) {
    .review-text {
        -webkit-line-clamp: 8;
        line-clamp: 8;
    }
}

@media (max-width: 600px) {
    .review-text {
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }
}

@media (max-width: 480px) {
    .review-text {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

.review-read-more,
.read-more-btn {
    display: none !important;
    text-align: center;
    opacity: 0;
    animation: fadeInReadMore 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 2px 4px rgba(125, 163, 164, 0.2);
    transform: translateY(0);
}

.review-read-more:hover,
.read-more-btn:hover {
    display: none !important;
}

.review-read-more:focus,
.read-more-btn:focus {
    display: none !important;
}

.review-read-more:active,
.read-more-btn:active {
    display: none !important;
}

/* Styles pour la fonctionnalité "Lire la suite" */
.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 16.8em; /* 12 lignes × 1.4 line-height */
}

.review-card.is-expanded .review-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    max-height: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* S'assurer que le texte revient à son état tronqué */
.review-card:not(.is-expanded) .review-text {
    -webkit-line-clamp: 12;
    line-clamp: 12;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 16.8em;
}

.review-card.is-expanded {
    aspect-ratio: unset !important;
    min-height: auto !important;
}

/* Assurer que les cartes étendues fonctionnent sur tous les écrans */
@media (min-width: 1024px) {
.review-card.is-expanded {
    aspect-ratio: unset !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
    
    .review-card.is-expanded .review-text {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
    }
}

.read-more-btn {
    display: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    text-align: left;
    opacity: 0;
    animation: fadeInReadMore 0.3s ease forwards;
}

.read-more-btn:hover {
    display: none !important;
}

/* Animation d'apparition du bouton "Lire la suite" */
@keyframes fadeInReadMore {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-read-more:hover,
.read-more-btn:hover {
    display: none !important;
}

/* Classe pour le texte étendu */
.review-text.expanded {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    white-space: normal !important;
    text-overflow: unset !important;
}

/* Message quand aucun avis n'est disponible */
.no-reviews-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(125, 163, 164, 0.1);
    border-left: 4px solid #7da3a4;
}

.no-reviews-content h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-reviews-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.google-business-link {
    display: inline-block;
    background: #7da3a4;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.google-business-link:hover {
    background: #6a8f90;
    color: white;
    text-decoration: none;
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Boutons d'action */
.reviews-actions { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 20px; 
    padding-top: 20px; 
    border-top: 1px solid #eee; 
}

.review-btn { 
    background: #7da3a4; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 6px; 
    font-size: 0.9rem; 
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block; 
    transition: background-color 0.2s ease; 
}

.review-btn:hover { 
    background: #6a8f90; 
    color: white; 
    text-decoration: none; 
}

/* Responsive */
@media (min-width: 1200px) {
    .temoignages-grid {
        max-width: 95% !important;
        width: 95% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 0 !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        max-width: none !important;
        margin: 20px auto;
    }
    
    .google-reviews-widget {
        width: 100% !important;
        padding: 40px;
    }
    
    .review-card {
        padding: 20px;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
    
    .review-text {
        font-size: 1.1rem;
        line-height: 1.6;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        max-height: 16em !important; /* 10 lignes × 1.6 line-height */
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reviewer-details strong {
        font-size: 1.1rem;
    }
    
    .review-stars {
        font-size: 1rem;
    }
    
    .review-date {
        font-size: 0.9rem;
    }
}

@media (min-width: 1400px) {
    .temoignages-grid {
        max-width: 95% !important;
        width: 95% !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        margin-bottom: 0 !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        margin: 25px auto;
    }
    
    .google-reviews-widget {
        padding: 50px;
    }
    
    .review-card {
        padding: 25px;
        max-width: 700px;
        margin: 0 auto 25px auto;
    }
    
    .review-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .reviewer-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .reviewer-details strong {
        font-size: 1.2rem;
    }
    
    .review-stars {
        font-size: 1.1rem;
    }
    
    .review-date {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .temoignages-grid {
        max-width: 95% !important;
        width: 95% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        margin: 30px auto;
    }
    
    .google-reviews-widget {
        padding: 60px;
    }
    
    .reviews-slider {
        gap: 30px;
    }
    
    .review-card {
        padding: 30px;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }
    
    .review-text {
        font-size: 1.3rem;
        line-height: 1.8;
        -webkit-line-clamp: 12 !important;
        line-clamp: 12 !important;
        max-height: 21.6em !important; /* 12 lignes × 1.8 line-height */
    }
    
    .reviewer-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .reviewer-details strong {
        font-size: 1.3rem;
    }
    
    .review-stars {
        font-size: 1.2rem;
    }
    
    .review-date {
        font-size: 1.1rem;
    }
}

@media (min-width: 1800px) {
    .temoignages-grid {
        max-width: 95% !important;
        width: 95% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        margin: 35px auto;
    }
    
    .google-reviews-widget {
        padding: 70px;
    }
    
    .review-card {
        padding: 35px;
        max-width: 900px;
        margin: 0 auto 35px auto;
    }
    
    .review-text {
        font-size: 1.4rem;
        line-height: 1.9;
    }
    
    .reviewer-avatar {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .reviewer-details strong {
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .temoignages-grid {
        max-width: 95% !important;
        width: 95% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        margin: 40px auto;
    }
    
    .google-reviews-widget {
        padding: 80px;
    }
    
    .review-card {
        padding: 40px;
        max-width: 1000px;
        margin: 0 auto 40px auto;
    }
    
    .review-text {
        font-size: 1.5rem;
        line-height: 2.0;
    }
    
    .reviewer-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .reviewer-details strong {
        font-size: 1.6rem;
    }
}

/* Optimisations pour écrans ultrawide (2560px et plus) */
@media (min-width: 2560px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 2.5rem !important;
    }
}

/* Optimisations pour écrans ultrawide très larges (3440px et plus) */
@media (min-width: 3440px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.2rem !important;
        line-height: 1.9 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 2.8rem !important;
    }
}

/* Optimisations pour écrans ultrawide extrêmes (5120px et plus) */
@media (min-width: 5120px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.4rem !important;
        line-height: 2.0 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 3.2rem !important;
    }
}

/* Optimisations spécifiques pour écrans 21:9 (3440x1440) */
@media (min-width: 3440px) and (max-height: 1440px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.15rem !important;
        line-height: 1.85 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 2.6rem !important;
    }
}

/* Optimisations spécifiques pour écrans 32:9 (5120x1440) */
@media (min-width: 5120px) and (max-height: 1440px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.3rem !important;
        line-height: 1.95 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 3.0rem !important;
    }
}

/* Optimisations pour écrans 4K (3840x2160) */
@media (min-width: 3840px) and (min-height: 2160px) {
    .about-card p, .sophro-card p, .massage-card p {
        font-size: 1.25rem !important;
        line-height: 1.9 !important;
    }
    
    .about-title, .sophro-title, .massage-title {
        font-size: 2.9rem !important;
    }
}

@media (max-width: 1199px) {
    .google-reviews-container {
        width: 95%;
        margin: 15px auto;
    }
    
    .google-reviews-widget {
        padding: 25px;
    }
    
    .reviews-slider { 
        grid-template-columns: repeat(3, 1fr); 
        grid-template-rows: repeat(3, auto); 
        gap: 20px;
        align-items: start;
    }
}

@media (max-width: 1024px) {
    .google-reviews-container {
        width: 95%;
        margin: 15px auto;
    }
    
    .google-reviews-widget {
        padding: 20px;
    }
    
    .reviews-slider { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(4, auto); 
        gap: 18px;
        align-items: start;
    }
    
    .review-card {
        padding: 12px;
    }
}

@media (max-width: 900px) {
    .google-reviews-container {
        width: 95%;
        margin: 15px auto;
    }
    
    .google-reviews-widget {
        padding: 18px;
        border-radius: 12px;
    }
    
    .google-reviews-header {
        padding: 15px;
        border-radius: 10px;
    }
    
    .google-logo {
        padding: 6px;
    }
    
    .google-logo img {
        width: 60px;
        height: 20px;
    }
    
    .reviews-slider { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(4, auto); 
        gap: 12px;
        align-items: start;
    }
    
    .review-card {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .google-reviews-container {
        width: 95%;
        margin: 12px auto;
    }
    
    .google-reviews-widget {
        padding: 15px;
    }
    
    .reviews-slider { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(4, auto); 
        gap: 10px;
        align-items: start;
    }
    
    .review-card {
        padding: 8px;
        aspect-ratio: 1.1;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .reviewer-details strong {
        font-size: 0.8rem;
    }
}

/* Mobiles (@media (max-width: 640px)) : 1 colonne */
@media (max-width: 640px) {
    /* Empêcher le défilement horizontal */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Harmonisation des blocs about, sophro, massage, tarifs, welcome et rdv sur mobile */
    .about-card, .sophro-card, .massage-card, .pricing-card, .welcome-card, .rdv-form-card {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .temoignages-grid {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
    
    /* Contraintes de hauteur uniquement sur mobile */
    .review-card {
        min-height: 280px;
        max-height: 300px;
    }
    
    /* S'assurer que les cartes non-étendues gardent leurs contraintes */
    .review-card:not(.is-expanded) {
        min-height: 280px;
        max-height: 300px;
    }
    
    .google-reviews-container {
        width: 92%;
        margin: 10px auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .google-reviews-widget {
        padding: 12px;
        border-radius: 8px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .reviews-slider { 
        grid-template-columns: 1fr; 
        grid-template-rows: repeat(8, auto); 
        gap: 12px;
        align-items: start;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Correction pour les cartes étendues sur mobile */
    .review-card.is-expanded {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .review-card.is-expanded .review-text {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}

@media (max-width: 480px) {
    /* Empêcher le défilement horizontal sur petits mobiles */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Contraintes de hauteur pour petits mobiles */
    .review-card {
        min-height: 400px;
        max-height: 350px;
    }
    
    /* S'assurer que les cartes non-étendues gardent leurs contraintes */
    .review-card:not(.is-expanded) {
        min-height: 400px;
        max-height: 350px;
    }
    
    /* Optimisation du panneau mobile pour petits écrans */
    #wv-nav .panel {
        width: 100%;
        right: -100%;
        padding: 80px 16px 16px;
        max-height: 100vh;
        box-sizing: border-box;
    }
    
    #wv-nav .panel .panel-content {
        gap: 12px;
        padding-right: 2px;
        margin-right: -2px;
    }
    
    #wv-nav .panel .link {
        font-size: 1rem;
        padding: 10px 0;
        min-height: 40px;
        -webkit-tap-highlight-color: transparent;
    }
    
    #wv-nav .accessibility-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    #wv-nav .accessibility-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Styles du burger harmonisés pour tous les écrans */
    
    .temoignages-grid {
        max-width: 100% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        box-sizing: border-box !important;
    }
    
    .google-reviews-container {
        width: 92%;
        margin: 10px auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .google-reviews-widget {
        padding: 12px;
        border-radius: 8px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .reviews-slider { 
        grid-template-columns: 1fr; 
        grid-template-rows: repeat(8, auto); 
        gap: 8px;
        align-items: start;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Correction pour les cartes étendues sur petits mobiles */
    .review-card.is-expanded {
        aspect-ratio: unset !important;
        min-height: auto !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .review-card.is-expanded .review-text {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .reviews-actions { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .review-card {
        padding: 6px;
        aspect-ratio: 1.3;
    }
    
    .review-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .reviewer-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .reviewer-details strong {
        font-size: 0.75rem;
    }
    
    .review-stars {
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .google-reviews-container {
        width: 98.5%;
        margin: 8px auto;
    }
    
    .google-reviews-widget {
        padding: 10px;
        border-radius: 6px;
    }
    
    .reviews-slider { 
        gap: 6px;
    }
    
    .review-card {
        padding: 6px;
    }
}

/* --- Widget Google Reviews Flottant --- */
.google-reviews-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 16px;
    max-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.google-reviews-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.google-reviews-float .google-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.google-reviews-float .google-logo img {
    width: 60px;
    height: 20px;
    object-fit: contain;
}

.google-reviews-float .rating-display {
    text-align: center;
}

.google-reviews-float .rating-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
}

.google-reviews-float .stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
}

.google-reviews-float .rating-text {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.google-reviews-float .rating-count {
    color: #666;
    font-size: 12px;
    margin: 0;
}

/* Responsive pour le widget flottant */
@media (max-width: 768px) {
    .google-reviews-float {
        bottom: 20px;
        right: 20px;
        max-width: 160px;
        padding: 12px;
    }
    
    .google-reviews-float .google-logo img {
        width: 50px;
        height: 16px;
        object-fit: contain;
    }
    
    .google-reviews-float .stars {
        font-size: 14px;
    }
    
    .google-reviews-float .rating-text {
        font-size: 12px;
    }
    
    .google-reviews-float .rating-count {
        font-size: 10px;
    }
}

/* --- Contact & RDV --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1vw, 15px); font-family: "Aptos", sans-serif; align-items: start; padding: clamp(20px, 3vw, 40px) 15px; } /* Marge harmonisée */
.contact-left { display: flex; flex-direction: column; gap: 20px; }
.contact-slider { 
    position: relative; 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: var(--shadow);
    height: 300px;
    background-color: #f5f5f5;
}
.contact-slider-track { 
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.contact-slider-track img {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}
.contact-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; width: 32px; height: 32px; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; z-index: 3; }
.contact-prev { left: 10px; } .contact-next { right: 10px; }
.contact-form { background: #f5f5f5; border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.contact-field { 
    width: 100%; 
    margin-bottom: 10px; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    color: #000000 !important;
    background-color: #ffffff;
}

.contact-field::placeholder {
    color: #666666;
}
.contact-submit { background: #c4815b; color: #fff; border: 0; border-radius: 6px; padding: 12px; width: 100%; cursor: pointer; }

#form-status {
    color: var(--ink) !important;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}
.contact-info { 
    background: var(--brand); 
    color: #fff; 
    border-radius: var(--radius); 
    padding: 25px; 
    box-shadow: var(--shadow); 
    height: 100%; 
    margin: 0 20px;
}

.contact-info h3 { 
    text-align: left;
    font-weight: 700;
}
.contact-title-white { 
    color: var(--white) !important; 
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #fff;
}

.contact-details p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0.95;
}
.address-description {
    margin-top: 12px !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    opacity: 0.9;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-details a:hover {
    opacity: 0.8;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.contact-description {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.contact-description p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* --- RDV Form --- */
.rdv-wrap { font-family: "Aptos", sans-serif; padding: clamp(20px, 3vw, 40px) 15px; } /* Marge harmonisée */
.rdv-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(8px, 1vw, 15px); 
    align-items: stretch; 
    width: 100%;
    box-sizing: border-box;
}
/* Style harmonisé appliqué via les règles générales */
.rdv-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.rdv-note { 
    background: var(--paper); 
    border-radius: var(--radius); 
    padding: 18px 20px; 
    margin-top: 12px; 
    line-height: 1.6; 
    color: #556566; 
    text-align: justify;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.rdv-note a { color: #3a8b99; text-decoration: none; font-weight: 600; }
.text-desktop { display: inline; } .text-mobile { display: none; }
.rdv-form-card { background: var(--brand); color: var(--white); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; height: 100%; margin: 0 0 0 20px; }
.rdv-form-head { background: var(--accent); color: #fff; font-weight: 700; padding: 10px 14px; border-radius: 6px; margin: -6px -6px 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-col { display: flex; flex-direction: column; gap: 4px; }
.form-full { grid-column: 1 / -1; }
label { font-size: .95rem; color: #fff; }
.field, select, textarea { width: 100%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 6px; padding: 10px 12px; font-size: 1rem; outline: none; }
.field::placeholder, textarea::placeholder { color: #333 !important; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 46px; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; pointer-events: none; }
select option { color: #000 !important; background: #fff !important; }
.avail-card { grid-column: 1 / -1; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; padding: 14px 12px 16px; }
.avail-title { color: #fff; font-weight: 600; margin-bottom: 12px; }
.avail-cell { color: #fff; }
.avail-days-grid { display: grid; grid-template-columns: repeat(3, auto); justify-content: center; gap: 15px 40px; max-width: 600px; margin: 0 auto; }
.avail-cell { display: flex; align-items: center; gap: 8px; font-size: .95rem; }
.chk { 
    width: 18px; 
    height: 18px; 
    accent-color: #4CAF50; 
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 3px;
    cursor: pointer;
}

.chk:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}
.avail-times { grid-column: 1 / -1; display: flex; justify-content: center; gap: 60px; margin-top: 10px; }
textarea { min-height: 110px; }

/* --- Page Mentions légales --- */
.legal-section {
    padding: 40px 20px;
    background: var(--paper);
    min-height: 100vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--font-family);
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--brand);
    padding-bottom: 20px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--brand);
}

.legal-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--paper);
}

.legal-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin: 25px 0 15px 0;
}

.legal-block p {
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-block ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-block li {
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 8px;
}

.legal-block a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-block strong {
    color: var(--ink);
    font-weight: 600;
}

/* Responsive pour les mentions légales */
@media (max-width: 768px) {
    .legal-section {
        padding: 20px 15px;
    }
    
    .legal-container {
        max-width: 95%;
    }
    
    .legal-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .legal-block {
        padding: 20px;
    }
    
    .legal-block h2 {
        font-size: 1.3rem;
    }
    
    .legal-block h3 {
        font-size: 1.1rem;
    }
}
.btn-submit { background: var(--accent); border: none; color: #fff; font-weight: 700; padding: 12px 22px; border-radius: 999px; cursor: pointer; }


/* ========================================================================== */
/* FOOTER (GLOBAL)                                                            */
/* ========================================================================== */

footer { background: #7da3a4; color: #fff; text-align: center; padding: 30px 20px; font-family: "Aptos", sans-serif; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; font-size: 1rem; }
.footer-links a { color: #fff; text-decoration: none; }
.footer-separator { width: 80%; height: 1px; background: #ffffff55; margin: 12px auto 18px; }
.copyright { font-size: 0.95rem; margin-bottom: 18px; }
.copyright a { color: #fff; font-weight: 600; text-decoration: none; }


/* ========================================================================== */
/* STYLES RESPONSIVES GLOBAUX                                                 */
/* ========================================================================== */

@media (max-width: 1200px) {
    .contact-slider-track { height: clamp(220px, 25vw, 300px); }
    .welcome-grid, .about-grid, .sophro-grid, .massage-grid, .contact-grid, .rdv-grid, .tarifs-wrap { gap: 10px; }
    .welcome-card, .sophro-card, .massage-card { padding: 20px; }
    .about-card { padding: 20px; }
    .grid-cards { gap: 15px; }
}

@media (max-width: 991px) {
    .welcome-grid, .about-grid, .sophro-grid, .massage-grid, .contact-grid, .rdv-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }
    
    /* Contact mobile - Image, infos, formulaire */
    .contact-grid {
        grid-template-areas: 
            "contact-slider"
            "contact-info"
            "contact-form" !important;
    }
    
    .contact-slider {
        grid-area: contact-slider;
        order: 1 !important;
    }
    
    .contact-info {
        grid-area: contact-info;
        order: 2 !important;
    }
    
    .contact-form {
        grid-area: contact-form;
        order: 3 !important;
    }
    
    /* Séparer le slider du formulaire dans contact-left */
    .contact-left {
        display: contents !important;
    }
    
    /* Harmoniser les marges des blocs contact sur mobile */
    .contact-info {
        margin: 0 !important; /* Supprimer la marge latérale sur mobile */
    }
    .welcome-grid { 
        gap: 18px !important; 
        grid-template-areas: "image" "text" !important; 
    }
    .welcome-card { 
        min-height: auto !important; 
        padding: 22px !important; 
    }
    /* Styles harmonisés appliqués via les règles générales */
    .welcome-img { 
        min-height: 320px !important; 
        max-height: 320px !important; 
    }
    .grid-cards { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
    .about-card { 
        padding: 20px !important; 
        height: auto !important; 
        align-items: flex-start !important; 
    }
    .sophro-right, .massage-left { 
        order: -1 !important; 
        min-height: auto !important; 
    }
    .sophro-card, .massage-card { 
        min-height: auto !important; 
    }
    .sophro-img, .massage-img { 
        max-height: 320px !important; 
    }
    .sophro-title, .massage-title, .about-title { 
        text-align: left !important; 
    }
    .contact-grid { 
        padding: 20px 15px !important; 
    } 
    .contact-info { 
        margin-right: 0 !important; 
    }
    .contact-cards { 
        gap: 12px !important; 
    }
    .contact-card { 
        padding: 14px !important; 
    }
    .contact-icon { 
        width: 36px !important; 
        height: 36px !important; 
    }
    .contact-icon svg { 
        width: 18px !important; 
        height: 18px !important; 
    }
    .rdv-grid { 
        gap: 22px !important; 
    } 
    .form-grid { 
        grid-template-columns: 1fr !important; 
    }
    .text-desktop { 
        display: none !important; 
    } 
    .text-mobile { 
        display: inline !important; 
    }
}

@media (max-width: 767px) {
    .grid-cards { grid-template-columns: 1fr !important; }
    /* Style harmonisé appliqué via les règles générales */
    .cta-bg { min-height: 300px !important; padding: 30px 16px !important; }
    .tarifs-wrap { grid-template-columns: 1fr !important; gap: 0 !important; /*margin-bottom: 40px !important;*/ padding: 20px 15px !important;}
    .tarifs-img-container { order: 1 !important; margin-bottom: 20px !important; }
    .pricing-card { order: 2 !important; }
    .pricing-grid::before { display: none !important; }
    /* Styles harmonisés appliqués via les règles générales */
    .welcome-card, .sophro-card, .massage-card { padding: 18px !important; }
    .about-card { padding: 18px !important; }
}

@media (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 8px; }
    .footer-links span { display: none; }
    .footer-separator { width: 60%; }
    .copyright { font-size: 0.9rem; }
}

@media (min-width: 1200px) {
    .contact-slider { 
        height: 400px !important; 
        background-color: #f5f5f5 !important;
    }
    .contact-slider-track img {
        height: 400px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }
}

/* Responsive pour les jours de disponibilité */
@media (max-width: 768px) {
    .avail-days-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 20px; max-width: 400px; }
}

@media (max-width: 520px) {
    .welcome-img, .sophro-img, .massage-img { min-height: 220px; max-height: 220px; }
    .avail-days-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 15px; max-width: 300px; }
    .avail-times { flex-direction: column; gap: 10px; }
    .contact-info { padding: 20px; }
    .contact-cards { gap: 10px; }
    .contact-card { padding: 12px; gap: 10px; }
    .contact-icon { width: 32px; height: 32px; }
    .contact-icon svg { width: 16px; height: 16px; }
    .contact-details h4 { font-size: 1rem; }
    .contact-details p { font-size: 0.9rem; }
    .contact-description { padding: 12px; }
    /* Styles harmonisés appliqués via les règles générales */
    .welcome-card, .sophro-card, .massage-card { padding: 15px; }
    .about-card { padding: 15px; }
    .grid-cards { gap: 10px; }
    /* Style harmonisé appliqué via les règles générales */
}

/* --- Témoignages --- */
.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
    margin-top: 30px;
    margin-bottom: 0;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

/* Ajouter une marge égale à celle du haut entre la section témoignages et le footer */
section:has(.temoignages-grid),
section .temoignages-grid,
.temoignages-grid {
    margin-bottom: 30px !important;
    padding-bottom: 0 !important;
}

/* Alternative plus compatible */
main section:last-of-type,
section:last-child {
    margin-bottom: 30px !important;
    padding-bottom: 0 !important;
}

/* Supprimer toute marge du conteneur principal des avis */
.google-reviews-container,
.google-reviews-widget {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

/* Supprimer la marge de la navigation en bas */
.bottom-navigation,
.center-group,
.navigation-line {
    margin-bottom: 0 !important;
}

/* Supprimer toute marge des éléments de la grille */
.temoignages-grid > * {
    margin-bottom: 0 !important;
}

/* Règle globale pour supprimer toute marge avant le footer */
footer {
    margin-top: 0 !important;
}

/* Supprimer toute marge du body et main */
body,
main {
    margin-bottom: 0 !important;
}

/* Cibler spécifiquement le conteneur parent */
.temoignages-grid,
section .temoignages-grid,
div.temoignages-grid {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Supprimer l'espace créé par le div vide temoignages-right */
.temoignages-right {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Supprimer tout espacement des divs vides */
div:empty {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ajouter une marge égale à celle du haut entre la section et le footer */
section {
    margin-bottom: 30px !important;
    padding-bottom: 0 !important;
}

.temoignages-left {
    background: #7da3a4;
    color: #fff;
    padding: 22px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 10px 20px 10px;
    width: calc(100% - 20px);
}

/* Style harmonisé appliqué via les règles générales */

/* Desktop - garder la position originale */
@media (min-width: 769px) {
    .temoignages-left {
        margin: 0 10px 20px 10px !important;
        width: calc(100% - 20px) !important;
        max-width: none !important;
    }
}

.temoignages-left p {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Module Google Reviews */
.google-reviews-container { 
    width: 95% !important; 
    margin: 20px auto !important; 
    padding: 0 0 40px 0 !important; 
    max-width: none !important;
    box-sizing: border-box;
}

/* Wrapper pour le slider avec les flèches */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Flèches intégrées dans la grille */
.nav-arrow-left,
.nav-arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    min-height: 45px;
    outline: none;
}

.nav-arrow-left:focus,
.nav-arrow-right:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-arrow-left:active,
.nav-arrow-right:active {
    background: rgba(0, 0, 0, 0.8);
    transform: none;
}

.nav-arrow-left:disabled,
.nav-arrow-right:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-arrow-left:disabled:hover,
.nav-arrow-right:disabled:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: none;
}

.nav-arrow-left:hover,
.nav-arrow-right:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: none;
}

.nav-arrow-left::before {
    content: "‹";
}

.nav-arrow-right::before {
    content: "›";
}

/* Cellule pour le groupe central */
.nav-arrow-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

/* Flèches dans la ligne de navigation */
.nav-arrow-left,
.nav-arrow-right {
    margin: 0;
}

.center-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.navigation-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation en bas */
.bottom-navigation {
    display: flex;
    justify-content: center;
    margin: 25px 0 0 0;
}


.google-review-btn-center {
    background: white;
    color: black;
    border: 2px solid #7da3a4;
    border-radius: 25px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 50px;
    min-height: 50px;
    box-sizing: border-box;
    outline: none;
}

.google-review-btn-center:focus {
    outline: none;
    box-shadow: none;
}

.google-review-btn-center:active {
    background: white;
    border-color: #7da3a4;
    transform: none;
}

.google-review-btn-center:hover {
    background: #f8f9fa;
    border-color: #6a8f90;
    transform: none;
    box-shadow: none;
    color: black;
    text-decoration: none;
}

.google-review-btn-center svg {
    width: 16px;
    height: 16px;
}

.page-indicator {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 60px;
    justify-content: center;
    height: 50px;
    min-height: 50px;
    box-sizing: border-box;
    margin: 0 auto;
    outline: none;
}

.page-indicator:focus {
    outline: none;
    box-shadow: none;
}

.page-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

.page-indicator:active {
    background: rgba(0, 0, 0, 0.7);
}

.page-indicator .current-page {
    color: #7da3a4;
    font-weight: 700;
    background: rgba(125, 163, 164, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-indicator .total-pages {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-slider-wrapper .nav-btn {
    position: absolute;
    top: 37.5%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reviews-slider-wrapper .nav-btn:hover {
    background: rgba(125, 163, 164, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.reviews-slider-wrapper .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews-slider-wrapper .prev-btn {
    left: -30px;
}

.reviews-slider-wrapper .next-btn {
    right: -30px;
}

.reviews-slider-wrapper .reviews-slider {
    flex: 1;
    margin: 0;
}

/* Forcer la largeur sur les conteneurs parents */
body, html, .main-content, .page-content {
    max-width: none !important;
}

.google-reviews-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.google-logo {
    flex-shrink: 0;
}

.google-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-rating .stars {
    font-size: 1.2rem;
    color: #ffd700;
}

.rating-text {
    font-size: 0.9rem;
    color: black;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.reviews-slider {
    position: relative;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

.review-card {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.review-card.active {
    display: block;
}

@media (min-width: 1200px) {
    .reviews-slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .center-group {
        gap: 12px;
    }
    
    .navigation-line {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .center-group {
        gap: 10px;
    }
    
    .navigation-line {
        gap: 10px;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 36px;
        height: 36px;
        font-size: 16px;
        min-height: 36px;
    }
    
    .google-review-btn-center {
        padding: 10px 16px;
        font-size: 0.8rem;
        height: 40px;
        min-height: 40px;
    }
    
    .page-indicator {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 55px;
        height: 40px;
        min-height: 40px;
    }
    
    .page-indicator .current-page {
        padding: 2px 5px;
    }
    
    .reviews-slider-wrapper .prev-btn {
        left: -25px;
    }
    
    .reviews-slider-wrapper .next-btn {
        right: -25px;
    }
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details strong {
    display: block;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-stars {
    font-size: 0.9rem;
    color: #ffd700;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-text {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    font-style: italic;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-word;
    hyphens: auto;
}

/* Responsive line-clamp pour la deuxième définition */
@media (max-width: 1200px) {
    .review-text {
        -webkit-line-clamp: 7;
        line-clamp: 7;
    }
}

@media (max-width: 900px) {
    .review-text {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

@media (max-width: 600px) {
    .review-text {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

@media (max-width: 480px) {
    .review-text {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
}

.reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.reviews-nav .nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav .nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.reviews-nav .dots {
    display: flex;
    gap: 10px;
}

.reviews-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-nav .dot.active {
    background: #fff;
    transform: scale(1.2);
}

.reviews-nav .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.google-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.google-review-btn,
.google-maps-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

.google-review-btn {
    background: white;
    color: black;
    border: 2px solid #7da3a4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background: #f8f9fa;
    border-color: #6a8f90;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 163, 164, 0.3);
}

.google-maps-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.google-maps-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.temoignages-right {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 320px;
}

.temoignages-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive pour les témoignages */
@media (max-width: 768px) {
    .google-reviews-widget {
        padding: 20px;
    }
    
    .google-reviews-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviews-nav .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .reviews-nav .dots {
        gap: 8px;
    }
    
    .reviews-nav .dot {
        width: 10px;
        height: 10px;
    }
    
    .google-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .google-review-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    /* Indicateur de slide supprimé */
}

@media (max-width: 600px) {
    .temoignages-grid {
        padding-left: 12px;
        padding-right: 12px;
        gap: 20px;
    }
    
    .temoignages-left {
        padding: 20px;
        border-radius: 8px;
    }
    
    .google-reviews-container {
        width: 95%;
        margin: 15px auto;
    }
    
    .google-reviews-widget {
        padding: 18px;
        border-radius: 12px;
    }
    
    .google-reviews-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .google-logo img {
        width: 70px;
        height: 22px;
    }
    
    .google-info h3 {
        font-size: 1.1rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.85rem;
    }
    
    .review-card {
        padding: 14px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .reviewer-details strong {
        font-size: 0.9rem;
    }
    
    .review-stars {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .dots {
        gap: 6px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .google-review-btn,
    .google-maps-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .google-review-btn svg,
    .google-maps-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    /* Harmonisation des blocs about, sophro, massage, tarifs, welcome et rdv sur mobile */
    .about-card, .sophro-card, .massage-card, .pricing-card, .welcome-card, .rdv-form-card {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .temoignages-grid {
        padding-left: 16px;
        padding-right: 16px;
        gap: 18px;
    }
    
    .temoignages-left {
        padding: 16px;
        border-radius: 6px;
        margin: 0 auto !important;
        width: calc(100% - 32px) !important;
        max-width: 400px;
    }
    
    .google-reviews-container {
        width: 95%;
        margin: 12px auto;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 32px;
        height: 32px;
        font-size: 14px;
        min-height: 32px;
    }
    
    .google-review-btn-center {
        padding: 8px 14px;
        font-size: 0.75rem;
        height: 35px;
        min-height: 35px;
    }
    
    .page-indicator {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 50px;
        height: 35px;
        min-height: 35px;
    }
    
    .page-indicator .current-page {
        padding: 1px 4px;
    }
    
    .reviews-slider-wrapper .prev-btn {
        left: -20px;
    }
    
    .reviews-slider-wrapper .next-btn {
        right: -20px;
    }
    
    .google-reviews-widget {
        padding: 14px;
        border-radius: 10px;
    }
    
    .google-reviews-header {
        padding: 12px;
        margin-bottom: 18px;
    }
    
    .google-logo img {
        width: 60px;
        height: 18px;
    }
    
    .google-info h3 {
        font-size: 1rem;
    }
    
    .stars {
        font-size: 0.95rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .reviewer-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .reviewer-details strong {
        font-size: 0.85rem;
    }
    
    .review-stars {
        font-size: 0.8rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .dots {
        gap: 5px;
        margin-bottom: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .google-review-btn,
    .google-maps-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    .google-review-btn svg,
    .google-maps-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .reviews-nav {
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .temoignages-grid {
        padding-left: 8px;
        padding-right: 8px;
        gap: 16px;
    }
    
    .temoignages-left {
        padding: 14px;
        border-radius: 6px;
    }
}

/* === RESPONSIVITÉ COMPLÈTE POUR TOUS LES ÉCRANS === */

/* Très grands écrans (≥2560px) */
@media (min-width: 2560px) {
    .temoignages-grid {
        max-width: 90% !important;
        width: 90% !important;
        margin: 40px auto !important;
    }
    
    .google-reviews-container {
        width: 95% !important;
        margin: 40px auto !important;
    }
    
    .google-reviews-widget {
        padding: 100px;
    }
    
    .review-card {
        min-height: 400px;
    }
    
    .review-text {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .google-review-btn-center {
        height: 60px;
        min-height: 60px;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
    
    .page-indicator {
        height: 60px;
        min-height: 60px;
        padding: 12px 18px;
        font-size: 1.1rem;
        min-width: 80px;
    }
}

/* Écrans ultra-larges (≥3440px) */
@media (min-width: 3440px) {
    .temoignages-grid {
        max-width: 85% !important;
        width: 85% !important;
    }
    
    .google-reviews-container {
        width: 90% !important;
    }
    
    .google-reviews-widget {
        padding: 120px;
    }
}

/* Tablettes en mode paysage (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .temoignages-grid {
        max-width: 96% !important;
        width: 96% !important;
        margin: 25px auto !important;
    }
    
    .google-reviews-container {
        width: 98% !important;
        margin: 25px auto !important;
    }
    
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .center-group {
        gap: 12px;
    }
    
    .navigation-line {
        gap: 12px;
    }
}

/* Tablettes en mode portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .temoignages-grid {
        max-width: 94% !important;
        width: 94% !important;
        margin: 25px auto !important;
    }
    
    .google-reviews-container {
        width: 96% !important;
        margin: 25px auto !important;
    }
    
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Petits mobiles (≤320px) */
@media (max-width: 320px) {
    .temoignages-grid {
        padding-left: 6px;
        padding-right: 6px;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .temoignages-left {
        padding: 12px;
        border-radius: 6px;
    }
    
    .google-reviews-container {
        width: 98% !important;
        margin: 15px auto !important;
    }
    
    .google-reviews-widget {
        padding: 15px;
    }
    
    .review-card {
        min-height: 280px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 30px;
        height: 30px;
        font-size: 14px;
        min-height: 30px;
    }
    
    .google-review-btn-center {
        height: 32px;
        min-height: 32px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .page-indicator {
        height: 32px;
        min-height: 32px;
        padding: 4px 8px;
        font-size: 0.7rem;
        min-width: 45px;
    }
    
    .center-group {
        gap: 8px;
    }
    
    .navigation-line {
        gap: 8px;
    }
}

/* Très petits écrans (≤280px) */
@media (max-width: 280px) {
    .temoignages-grid {
        padding-left: 4px;
        padding-right: 4px;
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .temoignages-left {
        padding: 10px;
        border-radius: 4px;
    }
    
    .google-reviews-container {
        width: 99% !important;
        margin: 10px auto !important;
    }
    
    .google-reviews-widget {
        padding: 10px;
    }
    
    .review-card {
        min-height: 180px;
    }
    
    .review-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 28px;
        height: 28px;
        font-size: 12px;
        min-height: 28px;
    }
    
    .google-review-btn-center {
        height: 30px;
        min-height: 30px;
        padding: 5px 8px;
        font-size: 0.65rem;
    }
    
    .page-indicator {
        height: 30px;
        min-height: 30px;
        padding: 3px 6px;
        font-size: 0.65rem;
        min-width: 40px;
    }
    
    .center-group {
        gap: 6px;
    }
    
    .navigation-line {
        gap: 6px;
    }
}

/* Écrans intermédiaires (480px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .temoignages-grid {
        padding-left: 10px;
        padding-right: 10px;
        gap: 18px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .google-reviews-container {
        width: 94% !important;
        margin: 20px auto !important;
    }
    
    .google-reviews-widget {
        padding: 18px;
    }
    
    .review-card {
        min-height: 220px;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 38px;
        height: 38px;
        font-size: 18px;
        min-height: 38px;
    }
    
    .google-review-btn-center {
        height: 42px;
        min-height: 42px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .page-indicator {
        height: 42px;
        min-height: 42px;
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 55px;
    }
    
    .center-group {
        gap: 12px;
    }
    
    .navigation-line {
        gap: 12px;
    }
}

/* Écrans moyens (601px - 767px) */
@media (min-width: 601px) and (max-width: 767px) {
    .temoignages-grid {
        padding-left: 12px;
        padding-right: 12px;
        gap: 20px;
        margin-top: 28px;
        margin-bottom: 28px;
    }
    
    .google-reviews-container {
        width: 92% !important;
        margin: 25px auto !important;
    }
    
    .google-reviews-widget {
        padding: 20px;
    }
    
    .review-card {
        min-height: 240px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 42px;
        height: 42px;
        font-size: 20px;
        min-height: 42px;
    }
    
    .google-review-btn-center {
        height: 45px;
        min-height: 45px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .page-indicator {
        height: 45px;
        min-height: 45px;
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .center-group {
        gap: 14px;
    }
    
    .navigation-line {
        gap: 14px;
    }
}

/* Optimisation pour les écrans 4K et ultra-larges */
@media (min-width: 3840px) {
    .temoignages-grid {
        max-width: 80% !important;
        width: 80% !important;
        margin: 50px auto !important;
    }
    
    .google-reviews-container {
        width: 85% !important;
        margin: 50px auto !important;
    }
    
    .google-reviews-widget {
        padding: 150px;
    }
    
    .review-card {
        min-height: 400px;
    }
    
    .review-text {
        font-size: 1.4rem;
        line-height: 2;
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .google-review-btn-center {
        height: 70px;
        min-height: 70px;
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .page-indicator {
        height: 70px;
        min-height: 70px;
        padding: 16px 24px;
        font-size: 1.2rem;
        min-width: 90px;
    }
}

/* Optimisation pour les écrans pliables */
@media (min-width: 768px) and (max-height: 600px) {
    .temoignages-grid {
        margin: 15px auto !important;
    }
    
    .google-reviews-container {
        margin: 15px auto !important;
    }
    
    .google-reviews-widget {
        padding: 20px;
    }
    
    .review-card {
        min-height: 280px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .center-group {
        gap: 10px;
    }
    
    .navigation-line {
        gap: 10px;
    }
}

/* === OPTIMISATIONS GÉNÉRALES DE RESPONSIVITÉ === */

/* Viewport meta tag optimization */
@viewport {
    width: device-width;
    initial-scale: 1.0;
}

/* Optimisation pour les écrans haute densité */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .review-card {
        border: 0.5px solid rgba(125, 163, 164, 0.2);
    }
    
    .nav-arrow-left,
    .nav-arrow-right {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }
}

/* Optimisation pour les écrans tactiles */
@media (hover: none) and (pointer: coarse) {
    .nav-arrow-left,
    .nav-arrow-right {
        min-width: 44px;
        min-height: 44px;
    }
    
    .google-review-btn-center {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .page-indicator {
        min-height: 44px;
        padding: 8px 16px;
    }
}

/* Optimisation pour les écrans avec clavier/souris */
@media (hover: hover) and (pointer: fine) {
    .nav-arrow-left:hover,
    .nav-arrow-right:hover {
        transform: scale(1.1);
        transition: transform 0.2s ease;
    }
    
    .google-review-btn-center:hover {
        transform: translateY(-2px);
        transition: transform 0.2s ease;
    }
}

/* Optimisation pour les modes sombre */
@media (prefers-color-scheme: dark) {
    .google-review-btn-center {
        background: #2d3748;
        color: #e2e8f0;
        border-color: #4a5568;
    }
    
    .google-review-btn-center:hover {
        background: #4a5568;
        border-color: #718096;
    }
}

/* Optimisation pour les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .nav-arrow-left,
    .nav-arrow-right,
    .google-review-btn-center,
    .page-indicator {
        transition: none !important;
        animation: none !important;
    }
}

/* Optimisation pour les contraintes de données */
@media (prefers-reduced-data: reduce) {
    .google-reviews-widget {
        background-image: none;
    }
    
    .review-card {
        box-shadow: none;
    }
}



/* Contrainte de largeur supprimée pour permettre l'élargissement */

/* ========================================================================== */
/* NAVIGATION GÉNÉRALE                                                        */
/* ========================================================================== */

/* === NAV (styles pour toutes les pages) === */
#wv-nav,
#wv-nav * {
  box-sizing: border-box;
}


@media (min-width: 992px) {
  #wv-nav * {
    background: transparent !important;
    box-shadow: none !important;
    border: none;
  }
}


#wv-nav .link {
  position: relative;
  color: var(--white) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 0;
  transition: opacity .2s;
  background: transparent !important;
}

#wv-nav .link:hover {
  opacity: .9;
}





/* ========================================================================== */
/* PAGE ACCÈS PATIENT                                                         */
/* ========================================================================== */

/* Header avec code de la page */
.page-header {
    background: #cd855f !important;
    color: white !important;
    padding: 10px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-family: var(--font-family) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
}

.page-code {
    opacity: 0.9 !important;
    color: white !important;
}

.page-title {
    font-weight: 700 !important;
    color: white !important;
}

/* Section principale */
.patient-access-section {
    padding: 0;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Assurer que le body peut défiler sur toutes les résolutions */
body.patient-access-page {
    overflow-y: auto;
    overflow-x: hidden;
}

.patient-access-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.additional-tools-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Titre de la page */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    width: 100%;
}

.page-title h1 {
    color: var(--white);
    margin: 0;
}

/* Grid principal */
.patient-access-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    width: 100%;
    margin: 0 clamp(10px, 2vw, 20px) 20px clamp(10px, 2vw, 20px);
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Image de gauche */
.patient-access-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--brand);
}

.patient-access-image img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* Contenu de droite */
.patient-access-content {
    background: var(--brand);
    color: var(--white) !important;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
}

.patient-access-content * {
    color: var(--white) !important;
}

/* Style harmonisé appliqué via les règles générales */
.patient-access-content {
    text-align: center;
    color: var(--white);
}

/* Style harmonisé appliqué via les règles générales */

.tools-intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Section Chrononutrition */
.tool-section {
    margin-top: 30px;
    color: var(--white) !important;
    text-align: center;
}

.tool-section * {
    color: var(--white) !important;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    color: var(--white) !important;
}

.rule-item * {
    color: var(--white) !important;
}

.rule-number {
    font-weight: 700;
    color: var(--white);
    min-width: 80px;
    flex-shrink: 0;
}

.rule-text {
    color: var(--white);
    line-height: 1.5;
}

/* Section Cohérence Cardiaque */
.heart-coherence-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    /*margin-bottom: 20px;*/
}

.heart-coherence-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin: 0 clamp(10px, 2vw, 20px) 20px clamp(10px, 2vw, 20px);
}

/* Style harmonisé appliqué via les règles générales */
.heart-coherence-content {
    color: var(--ink);
    text-align: center;
}

.coherence-explanation {
    margin-bottom: 30px;
}

.coherence-explanation p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--ink);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.coherence-explanation strong {
    color: var(--brand);
    font-weight: 700;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 18px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    margin-top: 15px;
    min-width: 200px;
    justify-content: center;
}

.video-link:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.video-link svg {
    color: #6c757d;
    fill: currentColor;
}

/* Style harmonisé appliqué via les règles générales */
.practice-section {
    color: var(--ink);
}

.practice-steps {
    margin-bottom: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.step-number {
    background: var(--brand);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    align-self: center;
}

.step p {
    color: var(--ink);
    line-height: 1.6;
    text-align: center;
}

.breathing-rhythm {
    margin-top: 10px;
    padding-left: 0;
    text-align: center;
}

.breathing-rhythm li {
    color: var(--ink);
    margin-bottom: 5px;
    font-weight: 600;
    text-align: center;
}

.practice-note {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 25px;
    padding: 15px;
    background: var(--paper);
    border-radius: 8px;
    border-left: 4px solid var(--brand);
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-links .action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.download-links .action-button.primary {
    background: #7da3a4;
    color: white;
    border: none;
    box-shadow: none;
    font-weight: 600;
}

.download-links .action-button.primary:hover {
    background: #6b8e8f;
    transform: none;
    box-shadow: none;
}

.download-links .action-button.secondary {
    background: #f5f5f5;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.download-links .action-button.secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: none;
}

.download-links .action-button svg {
    flex-shrink: 0;
    fill: currentColor;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--brand);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.download-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-link svg {
    color: var(--white);
}

/* Image de droite */
.heart-coherence-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.heart-coherence-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* ========================================================================== */
/* BOUTONS D'ACTION                                                             */
/* ========================================================================== */

/* Conteneurs de boutons */
.intro-buttons, .section-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Boutons d'action principaux */
.action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.action-button svg {
    flex-shrink: 0;
    fill: currentColor;
}

/* Bouton primaire */
.action-button.primary {
    background: linear-gradient(135deg, #7da3a4, #6b8e8f);
    color: white;
    box-shadow: 0 4px 12px rgba(125, 163, 164, 0.3);
}

.action-button.primary:hover {
    background: linear-gradient(135deg, #6b8e8f, #5a7a7b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 163, 164, 0.4);
}

/* Bouton secondaire */
.action-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Boutons dans les sections teal */
.additional-tools-section .action-button.primary {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #7da3a4;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.additional-tools-section .action-button.primary:hover {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.additional-tools-section .action-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.additional-tools-section .action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
    .intro-buttons, .section-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .action-button {
        min-width: auto;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .action-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ========================================================================== */
/* NOUVEAUX BLOCS D'OUTILS                                                      */
/* ========================================================================== */

/* Section des outils supplémentaires */
.additional-tools-section {
    background: #7da3a4;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.additional-tools-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    width: 100%;
    margin: 0 0 20px 0;
    align-items: stretch;
    background: var(--brand);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.additional-tools-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--brand);
}

.additional-tools-image img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* Règles spécifiques pour l'image de respiration abdominale */
.additional-tools-image#breathing-image-container {
    min-height: 500px !important;
    padding: 0;
    overflow: visible !important;
    margin-right: -20px !important;
}

.additional-tools-image#breathing-image-container img#breathing-image {
    max-width: 120% !important;
    max-height: 95% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-right: -10px !important;
}

/* Règles ultra-spécifiques pour forcer l'application */
html body .patient-access-section .additional-tools-grid .additional-tools-image#breathing-image-container img#breathing-image {
    max-width: 120% !important;
    max-height: 95% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-right: -10px !important;
}

.additional-tools-content {
    background: var(--brand);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-block {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    margin-bottom: 5px;
    text-align: center !important;
}

.tool-block h2 {
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ajouter une marge au-dessus du premier bloc (LA RESPIRATION ABDOMINALE) */
/*.patient-access-content .tool-block:first-child {
    margin-top: 80px;
}*/

.tool-block p {
    color: white;
    line-height: 1.4;
    margin-bottom: 10px;
}

.technique {
    color: white;
    margin-bottom: 8px;
}

.technique strong {
    color: white;
}

.breathing-techniques {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.technique {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 8px 0;
    text-align: center;
}

.technique strong {
    color: #fff;
    font-weight: 600;
}

.app-note-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.monk-illustration {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin: 0;
}

.monk-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.app-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.tool-block p {
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.download-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.download-link svg {
    fill: currentColor;
}

.stop-technique {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stop-step {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 10px 0;
}

.stop-step strong {
    color: #fff;
    font-weight: 600;
}

/* Règles spécifiques pour l'image de respiration abdominale */
#breathing-image-container {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Media queries pour l'image de respiration abdominale */
@media (max-width: 768px) {
    .additional-tools-image#breathing-image-container {
        min-height: 400px !important;
    }
    
    .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 120% !important;
        max-height: 95% !important;
        width: auto !important;
        height: auto !important;
        margin-right: -10px !important;
    }
    
    html body .patient-access-section .additional-tools-grid .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 120% !important;
        max-height: 95% !important;
        width: auto !important;
        height: auto !important;
        margin-right: -10px !important;
    }
}

@media (max-width: 480px) {
    .additional-tools-image#breathing-image-container {
        min-height: 350px !important;
    }
    
    .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 120% !important;
        max-height: 95% !important;
        width: auto !important;
        height: auto !important;
        margin-right: -10px !important;
    }
    
    html body .patient-access-section .additional-tools-grid .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 120% !important;
        max-height: 95% !important;
        width: auto !important;
        height: auto !important;
        margin-right: -10px !important;
    }
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
    .additional-tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .additional-tools-image {
        height: 350px !important;
    }
    
    .additional-tools-image img {
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    
    .tool-block {
        padding: 20px;
    }
    
    .tool-block h2 {
        font-size: 1.2rem;
    }
    
    .breathing-techniques {
        gap: 5px;
    }
    
    .technique, .stop-step {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .app-note-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .monk-illustration {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .additional-tools-section {
        padding: 30px 15px;
    }
    
    .additional-tools-image {
        height: 350px !important;
    }
    
    .additional-tools-image img {
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    
    .tool-block {
        padding: 15px;
    }
    
    /* Style harmonisé appliqué via les règles générales */
    
    .breathing-techniques, .stop-technique {
        gap: 4px;
    }
    
    .technique, .stop-step {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .monk-illustration {
        width: 60px;
        height: 60px;
    }
    
    .app-note {
        font-size: 0.85rem;
    }
}

/* Améliorations pour la page Qui suis-je sur grand écran */
@media (min-width: 1200px) {
    .about-wrap {
        padding: clamp(20px, 3vw, 40px) 15px; /* Marge harmonisée */
        max-width: 100vw;
        margin: 0 auto;
        margin-bottom: 0;
    }
    
    .about-grid {
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }
    
    .about-card {
        padding: 30px;
        font-size: 1.05rem;
    }
    
    .sophro-card, .massage-card {
        font-size: 1.05rem;
    }
    
    .about-card p {
        margin: 0 0 24px;
        line-height: 1.8;
        max-width: 800px;
    }
    .about-card p:first-child {
        margin-top: 0;
    }
    .about-card p:last-child {
        margin-bottom: 0;
    }
    
    .sophro-card p, .massage-card p {
        margin: 0 0 24px;
        line-height: 1.8;
        max-width: 800px;
    }
    
    /* Style harmonisé appliqué via les règles générales */
}

/* Styles pour grands écrans */
@media (min-width: 1200px) {
    .heart-coherence-section {
        margin-bottom: 20px !important;
    }
    
    
    .patient-access-section {
        padding: 0 !important;
    }
    
    .heart-coherence-content {
        padding-right: 20px;
    }
    
    /* Utiliser toute la largeur d'écran avec marges */
    .patient-access-container {
        max-width: 95vw;
        margin: 0 auto;
        padding: 0 2.5vw;
    }
    
    .additional-tools-container {
        max-width: 95vw;
        margin: 0 auto;
        padding: 0 2.5vw;
    }
    
    .patient-access-grid {
        margin: 0 clamp(10px, 2vw, 20px) 20px clamp(10px, 2vw, 20px);
    }
    
    .heart-coherence-grid {
        margin: 0 clamp(10px, 2vw, 20px) 20px clamp(10px, 2vw, 20px);
    }
    
    .additional-tools-grid {
        margin: 0 0 20px 0;
    }
    
    .tools-complementary-grid {
        margin: 0 0 20px 0;
    }
    
    .block5-grid {
        margin: 0 0 20px 0;
    }
    
    .additional-tools-section {
        margin-top: 0;
        padding: 0;
    }
    
    .additional-tools-image {
        height: 500px;
    }
}

/* Améliorations pour la page Qui suis-je sur écrans très larges */
@media (min-width: 1600px) {
    .about-wrap {
        padding: clamp(20px, 3vw, 40px) 15px; /* Marge harmonisée */
        max-width: 100vw;
        margin-bottom: 0;
    }
    
    .about-grid {
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }
    
    .about-card {
        padding: 35px;
        font-size: 1.15rem;
    }
    
    .sophro-card, .massage-card {
        font-size: 1.15rem;
    }
    
    .about-card p {
        margin: 0 0 28px;
        line-height: 1.9;
        max-width: 900px;
    }
    .about-card p:first-child {
        margin-top: 0;
    }
    .about-card p:last-child {
        margin-bottom: 0;
    }
    
    .sophro-card p, .massage-card p {
        margin: 0 0 28px;
        line-height: 1.9;
        max-width: 900px;
    }
    
    /* Style harmonisé appliqué via les règles générales */
}

/* Styles pour écrans très larges */
@media (min-width: 1600px) {
    .patient-access-container {
        max-width: 98vw;
        padding: 0 1vw;
    }
    
    .additional-tools-container {
        max-width: 98vw;
        padding: 0 1vw;
    }
    
    .patient-access-grid {
        gap: 0;
    }
    
    .patient-access-image {
        min-height: 600px;
    }
    
    .heart-coherence-grid {
        gap: 80px;
    }
    
    .heart-coherence-image {
        min-height: 600px;
    }
    
    .additional-tools-grid {
        gap: 80px;
    }
    
    .additional-tools-image {
        min-height: 1200px;
    }
    
    .additional-tools-grid {
        margin: 0 0 20px 0;
    }
}

/* Styles spécifiques pour le bloc 4 (outils complémentaires) - identique au bloc 2 */
.tools-complementary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    width: 100%;
    margin: 0 0 20px 0;
    align-items: stretch;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tools-complementary-content {
    padding: 40px;
    background: white;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tools-complementary-content h2 {
    color: var(--ink);
    margin-bottom: 20px;
    text-align: center;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tool-item {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tool-item h3 {
    color: var(--ink);
    margin-bottom: 10px;
}

.tool-item p {
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.pdf-download:hover {
    background: #2a8a7a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pdf-download svg {
    fill: currentColor;
}

.tools-complementary-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
}

.tools-complementary-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

/* Styles pour le bloc 5 - exercices d'acceptation émotionnelle */
.additional-tools-content .tool-block {
    margin-bottom: 5px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-tools-content .tool-block h2 {
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-tools-content .tool-block h3 {
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-tools-content .tool-block p {
    color: white;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.additional-tools-content .pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.additional-tools-content .pdf-download:hover {
    color: #ff6666;
    text-decoration: underline;
}

.additional-tools-content .pdf-download svg {
    fill: currentColor;
}

/* Styles spécifiques pour le bloc 5 */
.block5-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    width: 100%;
    margin: 0 0 20px 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.block5-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 20px;*/
    background: var(--brand);
}

.block5-image img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.block5-content {
    background: var(--brand);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block5-content .tool-block {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.block5-content .tool-block h2 {
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.block5-content .tool-block h3 {
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.block5-content .tool-block p {
    color: white;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.block5-content .pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.block5-content .pdf-download:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.block5-content .pdf-download svg {
    fill: currentColor;
}

/* Responsive pour la page accès patient */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .patient-access-section {
        padding: 0;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .patient-access-container {
        width: 100%;
        max-width: 95vw;
        margin: 0 auto;
        padding: 0 2.5vw;
    }
    
    .patient-access-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 auto 20px auto;
        width: 100%;
        max-width: 100%;
    }
    
    .page-title {
        text-align: center;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
        margin: 0;
    }
    
    .patient-access-image {
        min-height: 280px;
        order: 2;
        padding: 15px;
        background: var(--brand);
    }
    
    .patient-access-content {
        padding: 20px 10px;
        order: 1;
    }
    
    /* Styles harmonisés appliqués via les règles générales */
    
    .heart-coherence-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 clamp(15px, 3vw, 20px) 20px clamp(15px, 3vw, 20px);
        overflow: hidden !important;
        word-wrap: break-word !important;
    }
    
    .heart-coherence-image {
        min-height: 280px;
        order: 2;
    }
    
    .heart-coherence-section {
        padding: 25px 15px;
    }
    
    .coherence-explanation p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        padding: 0 8px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }
    
    .heart-coherence-content {
        order: 1;
        overflow: hidden !important;
        word-wrap: break-word !important;
    }
    
    /* Bloc 3 - Outils supplémentaires */
    .additional-tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 0 20px 0;
    }
    
    .additional-tools-image {
        order: 2;
        min-height: 350px !important;
    }
    
    .additional-tools-content {
        order: 1;
        padding: 20px;
    }
    
    /* Bloc 4 - Outils complémentaires */
    .tools-complementary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 0 20px 0;
    }
    
    .tools-complementary-image {
        order: 2;
        min-height: 280px;
    }
    
    .tools-complementary-content {
        order: 1;
        padding: 20px;
    }
    
    /* Bloc 5 */
    .block5-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 0 20px 0;
    }
    
    .block5-image {
        order: 2;
        min-height: 280px;
    }
    
    .block5-content {
        order: 1;
        padding: 20px;
    }
    
    /* Styles harmonisés appliqués via les règles générales */
    
    .download-links {
        flex-direction: column;
    }
    
    .download-link {
        justify-content: center;
        text-align: center;
    }
    
    .additional-tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 0 20px 0;
    }
    
    .additional-tools-image {
        min-height: 350px;
        order: 2;
    }
    
    .additional-tools-content {
        order: 1;
    }
}

@media (max-width: 480px) {
    .patient-access-section {
        padding: 0;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .patient-access-container {
        width: 100%;
        max-width: 98vw;
        margin: 0 auto;
        padding: 0 1vw;
    }
    
    .patient-access-grid {
        margin: 0 auto 40px auto;
        width: 100%;
        max-width: 100%;
    }
    
    .page-title {
        text-align: center;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .page-title h1 {
        font-size: 1.6rem;
        margin: 0;
    }
    
    .heart-coherence-grid {
        margin: 0 clamp(10px, 2vw, 15px) 15px clamp(10px, 2vw, 15px);
    }
    
    .additional-tools-grid {
        margin: 0 0 20px 0;
    }
    
    .tools-complementary-grid {
        margin: 0 0 15px 0;
    }
    
    .block5-grid {
        margin: 0 0 15px 0;
    }
    
    .patient-access-content {
        padding: 20px 10px;
    }
    
    /* Styles harmonisés appliqués via les règles générales */
    
    .patient-access-image {
        min-height: 280px;
        padding: 10px;
        background: var(--brand);
    }
    
    /* Bloc 3 - Outils supplémentaires */
    .additional-tools-image {
        min-height: 350px !important;
    }
    
    .additional-tools-content {
        padding: 15px;
    }
    
    /* Bloc 4 - Outils complémentaires */
    .tools-complementary-image {
        min-height: 280px;
    }
    
    .tools-complementary-content {
        padding: 15px;
    }
    
    /* Bloc 5 */
    .block5-image {
        min-height: 280px;
    }
    
    .block5-content {
        padding: 15px;
    }
    
    .heart-coherence-section {
        padding: 20px 10px;
    }
    
    .coherence-explanation p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        padding: 0 5px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }
    
    /* Style harmonisé appliqué via les règles générales */
    
    .heart-coherence-image {
        min-height: 280px;
    }
    
    /* Style harmonisé appliqué via les règles générales */
    
    .step {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .breathing-rhythm {
        text-align: center;
        padding-left: 0;
    }
    
    .rule-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .rule-number {
        min-width: auto;
    }
    
    .additional-tools-section {
        padding: 0;
    }
    
    .additional-tools-image {
        min-height: 350px !important;
    }
    
    .additional-tools-image img {
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    
    .tool-block {
        padding: 15px;
    }
    
    /* Style harmonisé appliqué via les règles générales */
}

/* ========================================================================== */
/* RÈGLES FORCÉES POUR L'IMAGE DE RESPIRATION ABDOMINALE                     */
/* ========================================================================== */


/* Règles pour le texte de fréquence de respiration */
.breathing-frequency {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin: 10px 0 !important;
    white-space: pre-line !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Règles ultra-spécifiques pour forcer l'application */
.patient-access-content .tool-block .breathing-frequency,
.tool-block .breathing-frequency,
.breathing-frequency {
    white-space: pre-line !important;
    display: block !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin: 10px 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: left !important;
}

/* Règles spécifiques pour toutes les résolutions */
@media (max-width: 320px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 15px !important;
        line-height: 1.3 !important;
        display: block !important;
    }
}

@media (max-width: 768px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        display: block !important;
    }
}

@media (min-width: 1025px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 17px !important;
        line-height: 1.5 !important;
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .patient-access-content .tool-block .breathing-frequency,
    .tool-block .breathing-frequency,
    .breathing-frequency {
        white-space: pre-line !important;
        font-size: 18px !important;
        line-height: 1.5 !important;
        display: block !important;
    }
}

/* Règle pour les très grands écrans - forcer le centrage */
@media (min-width: 1400px) {
    .tool-block {
        text-align: center !important;
    }
    
    .tool-block p,
    .tool-block div,
    .tool-block .breathing-frequency {
        text-align: center !important;
    }
}

/* Règle spécifique pour les écrans 4K et ultra-large */
@media (min-width: 2560px) {
    .tool-block {
        text-align: center !important;
    }
    
    .tool-block p,
    .tool-block div,
    .tool-block .breathing-frequency {
        text-align: center !important;
    }
    
    .patient-access-content .tool-block {
        text-align: center !important;
    }
    
    .patient-access-content .tool-block p,
    .patient-access-content .tool-block div,
    .patient-access-content .tool-block .breathing-frequency {
        text-align: center !important;
    }
}

/* Règles ultra-spécifiques pour forcer le centrage sur tous les écrans très larges */
@media (min-width: 1920px) {
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block {
        text-align: center !important;
        margin-bottom: 5px !important;
    }
    
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block p,
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block div,
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block .breathing-frequency {
        text-align: center !important;
    }
    
    html body .patient-access-section .additional-tools-grid .additional-tools-content .tool-block {
        text-align: center !important;
        margin-bottom: 5px !important;
    }
    
    html body .patient-access-section .additional-tools-grid .additional-tools-content .tool-block p,
    html body .patient-access-section .additional-tools-grid .additional-tools-content .tool-block div,
    html body .patient-access-section .additional-tools-grid .additional-tools-content .tool-block .breathing-frequency {
        text-align: center !important;
        margin: 2px 0 !important;
        line-height: 1.2 !important;
    }
}

/* Règle spécifique pour réduire l'espacement entre les blocs sur très grands écrans */
@media (min-width: 1920px) {
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block:not(:last-child) {
        margin-bottom: 5px !important;
    }
    
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block {
        margin-bottom: 5px !important;
    }
    
    /* Forcer la réduction d'espacement même avec les règles de centrage */
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block:first-of-type {
        margin-top: 80px !important;
        margin-bottom: 5px !important;
    }
    
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block:nth-of-type(2) {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    
    html body .patient-access-section .patient-access-container .patient-access-grid .patient-access-content .tool-block:nth-of-type(3) {
        margin-top: 5px !important;
    }
}

/* Règles de base pour l'image de respiration abdominale */
.additional-tools-image#breathing-image-container {
    overflow: visible !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.additional-tools-image#breathing-image-container img#breathing-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Media queries pour l'image de respiration abdominale */
@media (min-width: 1024px) {
    .additional-tools-image#breathing-image-container {
        min-height: 600px !important;
        margin-right: -15px !important;
    }
    
    .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 110% !important;
        margin-right: -10px !important;
    }
}

@media (min-width: 1200px) {
    .additional-tools-image#breathing-image-container {
        min-height: 700px !important;
        margin-right: -15px !important;
    }
    
    .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 110% !important;
        margin-right: -10px !important;
    }
}

@media (max-width: 1023px) {
    .additional-tools-image#breathing-image-container {
        min-height: 400px !important;
        margin-right: -30px !important;
    }
    
    .additional-tools-image#breathing-image-container img#breathing-image {
        max-width: 130% !important;
        margin-right: -20px !important;
    }
}

@media (max-width: 768px) {
    .additional-tools-image#breathing-image-container {
        min-height: 350px !important;
    }
}

@media (max-width: 480px) {
    .additional-tools-image#breathing-image-container {
        min-height: 300px !important;
    }
}

/* ========================================================================== */
/* FOOTER GÉNÉRAL                                                             */
/* ========================================================================== */

footer {
    background: #7da3a4;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-family: var(--font-family);
    margin-top: auto;
}


/* Ligne des liens */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Ligne séparatrice */
.footer-separator {
    width: 80%;
    height: 1px;
    background: #ffffff55;
    margin: 12px auto 18px;
}

/* Copyright */
.copyright {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.copyright a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}


.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #ffffff;
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: #000000;
}

/* 📱 Version mobile */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    /* 👉 cache la barre verticale sur mobile */
    .footer-links span {
        display: none;
    }

    .footer-separator {
        width: 60%;
        margin: 10px auto;
    }

    .copyright {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .copyright a {
        display: block;
        margin-top: 5px;
    }

    .copyright {
        line-height: 1.5;
        font-size: 0.9rem;
    }
}

/* --- Inversion image/texte pour PC uniquement --- */
@media (min-width: 769px) {
    /* Page d'accueil - Section Bienvenue */
    .welcome-grid {
        grid-template-areas: "image text" !important;
    }
    
    
    
    
    /* Titre à gauche sur PC */
    .about-title {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

/* --- Page Sophrologie - Titre toujours à gauche sur mobile --- */
@media (max-width: 768px) {
    
    
    
    /* Titre au-dessus du bloc sur mobile */
    .about-title {
        text-align: left !important;
        margin-bottom: 20px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

/* ========================================================================== */
/* MEDIA QUERIES POUR LE MENU MOBILE - À LA FIN POUR ÉVITER LES CONFLITS      */
/* ========================================================================== */

/* iPhone SE 2022 et très petits mobiles */
@media (max-width: 480px) {
    #wv-nav .panel {
        width: 80vw !important;
        right: -80vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -80vw !important;
    }
    
    /* Scrollbar très visible sur très petits mobiles */
    #wv-nav .panel::-webkit-scrollbar {
        width: 12px !important;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        border-radius: 6px !important;
        min-height: 50px !important;
        box-shadow: none !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
        border-color: rgba(255, 255, 255, 0.8) !important;
        box-shadow: none !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:active {
        background: rgba(255, 255, 255, 1) !important;
        border-color: rgba(255, 255, 255, 1) !important;
        box-shadow: none !important;
    }
}

/* iPhone SE 2022 spécifique (375x667) */
@media (max-width: 375px) and (max-height: 667px) {
    #wv-nav .panel {
        width: 85vw !important;
        right: -85vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -85vw !important;
    }
    
    /* Scrollbar encore plus visible sur iPhone SE */
    #wv-nav .panel::-webkit-scrollbar {
        width: 14px !important;
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 1) !important;
        border: 3px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 7px !important;
        min-height: 60px !important;
        box-shadow: none !important;
    }
    
    /* Indicateurs de scroll plus visibles */
    #wv-nav .panel::before {
        background: rgba(255, 255, 255, 0.2) !important;
        color: rgba(255, 255, 255, 1) !important;
        font-size: 0.9rem !important;
        padding: 12px 16px !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.4) !important;
    }
    
    /* Pseudo-élément supprimé pour éviter les blocs fixes */
    
    /* Forcer la visibilité du burger sur très petits mobiles */
    #wv-nav .burger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 6px !important;
        padding: 8px !important;
    }
}

/* Galaxy Note 20 Ultra 5G et appareils Android similaires */
@media (max-width: 412px) and (min-height: 900px) {
    #wv-nav .panel {
        width: 85vw !important;
        right: -85vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -85vw !important;
    }
    
    /* Scrollbar très visible pour Android */
    /* Scrollbars supprimées pour éviter les blocs fixes */
    
    /* Indicateurs de scroll supprimés pour éviter les blocs fixes */
}

/* Appareils Android avec hauteur importante */
@media (max-width: 450px) and (min-height: 800px) {
    #wv-nav .panel {
        width: 82vw !important;
        right: -82vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -82vw !important;
    }
    
    /* Scrollbar visible pour Android */
    #wv-nav .panel::-webkit-scrollbar {
        width: 14px !important;
        background: rgba(255, 255, 255, 0.35) !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 1) !important;
        border: 3px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 7px !important;
        min-height: 60px !important;
        box-shadow: none !important;
    }
}

/* Règle de fallback pour tous les appareils Android - VERSION ULTRA AGRESSIVE */
@media (max-width: 500px) {
    /* Forcer la visibilité du scrollbar sur tous les mobiles */
    #wv-nav .panel {
        scrollbar-width: auto !important;
        scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0.4) !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        /* Force le scroll même sans overflow */
        min-height: 101vh !important;
    }
    
    /* Scrollbar par défaut plus visible - VERSION ANDROID */
    #wv-nav .panel::-webkit-scrollbar {
        width: 20px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.4) !important;
        border-radius: 10px !important;
        margin: 25px 0 !important;
        -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4) !important;
        box-shadow: none !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 1) !important;
        border: 4px solid rgba(255, 255, 255, 0.9) !important;
        border-radius: 10px !important;
        min-height: 80px !important;
        -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8) !important;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.8) !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 1) !important;
        border-color: rgba(255, 255, 255, 1) !important;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 1) !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, 1) !important;
    }
    
    #wv-nav .panel::-webkit-scrollbar-thumb:active {
        background: rgba(255, 255, 255, 1) !important;
        border-color: rgba(255, 255, 255, 1) !important;
        -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 1) !important;
        box-shadow: none !important;
    }
    
    /* Forcer l'affichage sur Android */
    #wv-nav .panel::-webkit-scrollbar-corner {
        background: rgba(255, 255, 255, 0.4) !important;
    }
    
    /* Indicateurs de scroll supprimés pour éviter les blocs fixes */
}

/* SOLUTION ALTERNATIVE POUR GALAXY NOTE 20 ULTRA - SCROLLBAR CUSTOM */
@media (max-width: 500px) {
    /* Ajouter une scrollbar custom avec pseudo-élément */
    /* Scrollbar custom supprimée pour éviter les blocs fixes */
    
    /* Indicateur de scroll supprimé pour éviter les blocs fixes */
}

/* Classe JavaScript supprimée - plus de scrollbar forcée */

/* Scrollbars supprimées */

/* Mobiles standards */
@media (min-width: 481px) and (max-width: 768px) {
    #wv-nav .panel {
        width: 75vw !important;
        right: -75vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -75vw !important;
    }
    
    /* Forcer la visibilité du burger sur mobiles standards */
    #wv-nav .burger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 6px !important;
        padding: 8px !important;
    }
}

/* Petites tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    #wv-nav .panel {
        width: 70vw !important;
        right: -70vw !important;
    }
    
    #wv-nav .panel:not(.show):not(.open) {
        right: -70vw !important;
    }
    
    /* Forcer la visibilité du burger sur petites tablettes */
    #wv-nav .burger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 6px !important;
        padding: 8px !important;
    }
}


