:root {
     --primary-color: #b89689;
     --accent-color: #e8d8d0;
     --bg-soft: #fbf6f3;
     --text-dark: #3a3533;
     --text-light: #6e6561;
     --border-color: #eee3dd;
     --success-color: #607d64;
     --danger-color: #b05c5c;
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     color: var(--text-dark);
     background-color: #ffffff;
     line-height: 1.6;
     overflow-x: hidden;
    /* Évite les légers scrolls horizontaux sur mobile */
}
 h1, h2, h3, h4, .logo-main {
     font-family: 'Playfair Display', serif;
}
 a {
     text-decoration: none;
     color: inherit;
     transition: all 0.3s ease;
}
 img {
     max-width: 100%;
     height: auto;
}
 a {
     text-decoration: none;
}
 .btn-cta, .btn-primary {
     background-color: var(--primary-color);
     color: #ffffff;
     padding: 10px 22px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     display: inline-block;
     box-shadow: 0 4px 10px rgba(184, 150, 137, 0.2);
     border: none;
     cursor: pointer;
     text-align: center;
}
 .btn-primary {
     padding: 14px 30px;
     font-size: 1rem;
}
/* ========================================================================== PAGE D'ACCUEIL CONTENU ========================================================================== */
/* --- SECTION HERO --- */
 .hero-section {
     background: linear-gradient(135deg, var(--bg-soft) 0%, #ffffff 100%);
     padding: 80px 20px;
}
 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 60px;
}
 .hero-image {
     flex: 1;
     text-align: center;
}
 .hero-image img {
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(184, 150, 137, 0.15);
     border: 8px solid #ffffff;
}
 .hero-content {
     flex: 1.2;
}
 .hero-content .subtitle {
     display: inline-block;
     color: var(--primary-color);
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 2px;
     font-weight: 600;
     margin-bottom: 15px;
}
 .hero-content h1 {
     font-size: 3rem;
     color: var(--text-dark);
     line-height: 1.2;
     margin-bottom: 20px;
}
 .hero-content p {
     font-size: 1.15rem;
     color: var(--text-light);
     line-height: 1.7;
     margin-bottom: 35px;
}
/* --- SECTION INFOS & ENGAGEMENTS --- */
 .info-section {
     max-width: 1200px;
     margin: 80px auto;
     padding: 0 20px;
}
 .info-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
}
 .info-card {
     background: #ffffff;
     padding: 45px;
     border-radius: 20px;
     border: 1px solid var(--border-color);
     box-shadow: 0 5px 20px rgba(184, 150, 137, 0.03);
     transition: transform 0.3s ease;
}
 .info-card:hover {
     transform: translateY(-5px);
}
 .info-card .icon {
     font-size: 2.5rem;
     margin-bottom: 20px;
}
 .info-card h3 {
     font-size: 1.6rem;
     color: var(--text-dark);
     margin-bottom: 20px;
}
 .info-card p {
     margin-bottom: 15px;
     color: var(--text-light);
     line-height: 1.6;
}
 .commitments-list {
     list-style: none;
     padding: 0;
}
 .commitments-list li {
     margin-bottom: 15px;
     color: var(--text-light);
     line-height: 1.6;
}
/* --- SECTION AVIS CLIENTS --- */
 .reviews-section {
     background-color: var(--bg-soft);
     padding: 80px 20px;
     text-align: center;
}
 .reviews-section h2 {
     font-size: 2.4rem;
     color: var(--text-dark);
     margin-bottom: 10px;
}
 .reviews-subtitle {
     color: var(--primary-color);
     font-style: italic;
     font-size: 1.1rem;
     margin-bottom: 50px;
}
 .reviews-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     flex-wrap: wrap;
     justify-content: center;
}
}
 .review-card {
     background: #ffffff;
	 flex: 0 0 calc(33.333% - 14px);
     min-width: 280px;
     box-sizing: border-box;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	 
}
 .review-card .stars {
     margin-bottom: 15px;
     font-size: 1.1rem;
}
 .review-text {
     font-style: italic;
     color: var(--text-light);
     line-height: 1.6;
     margin-bottom: 20px;
}
 .review-author {
     font-weight: 600;
     color: var(--text-dark);
     font-size: 0.95rem;
}
/* ========================================================================== BOUTON D'ACTION DE REDIRECTION FACEBOOK ========================================================================== */
 .leave-review-container {
     margin-top: 50px;
     display: flex;
     flex-direction: column;
     align-items: center;
	 text-align: center;
     gap: 15px;
}
 .leave-review-container p {
     font-size: 1.05rem;
     color: var(--text-light);
}
 .btn-secondary {
     background-color: transparent;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
     padding: 12px 28px;
     border-radius: 50px;
     font-size: 0.95rem;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s ease;
}
 .btn-secondary i {
     font-size: 1.1rem;
     color: #1877f2;
    /* Couleur officielle bleu Facebook pour l'icône */
}
 .btn-secondary:hover {
     background-color: var(--primary-color);
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(184, 150, 137, 0.15);
}
 .btn-secondary:hover i {
     color: #ffffff;
    /* L'icône devient blanche au survol pour l'esthétique */
}
/* ========================================================================== FOOTER ========================================================================== */
 .main-footer {
     background-color: var(--text-dark);
     color: #ffffff;
     padding: 60px 20px 20px 20px;
}
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 40px;
     border-bottom: 1px solid #524a47;
     padding-bottom: 40px;
}
 .footer-col {
     flex: 1;
     min-width: 250px;
}
 .footer-col h4 {
     font-size: 1.3rem;
     margin-bottom: 20px;
     color: var(--accent-color);
}
 .footer-col p {
     margin-bottom: 12px;
     color: #d1c7c3;
}
/* ========================================================================== FOOTER - DISPOSITION GAUCHE / DROITE ========================================================================== */
 .main-footer {
     background-color: var(--text-dark);
     color: #ffffff;
     padding: 60px 20px 20px 20px;
}
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 40px;
     border-bottom: 1px solid #524a47;
     padding-bottom: 40px;
}
 .footer-col {
     flex: 1;
}
 .contact-col h4 {
     font-size: 1.3rem;
     margin-bottom: 25px;
     color: var(--accent-color);
}
 .contact-col p {
     margin-bottom: 15px;
     color: #d1c7c3;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.95rem;
}
 .contact-col p i {
     color: var(--primary-color);
     width: 20px;
}
 .footer-socials {
     display: flex;
     gap: 12px;
     margin-top: 20px;
}
 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background-color: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(232, 216, 208, 0.1);
     border-radius: 50px;
     color: #e8d8d0;
     font-size: 1.1rem;
     transition: all 0.3s ease;
}
 .social-link.fb:hover {
     background-color: #1877f2;
     color: #ffffff;
     border-color: #1877f2;
     transform: translateY(-3px);
}
 .social-link.ig:hover {
     background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
     color: #ffffff;
     border-color: transparent;
     transform: translateY(-3px);
}
 .payment-col {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     text-align: right;
}
 .payment-col h4 {
     font-size: 1.3rem;
     margin-bottom: 25px;
     color: var(--accent-color);
}
 .payment-container {
     display: flex;
     flex-direction: column;
     gap: 20px;
     align-items: flex-end;
}
 .payment-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
}
 .group-title {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 600;
}
 .payment-group.accept .group-title {
     color: #a3c2a8;
}
 .payment-group.refuse .group-title {
     color: #e2a3a3;
}
 .logos-grid {
     display: flex;
     gap: 12px;
     justify-content: flex-end;
     flex-wrap: wrap;
}
 .logo-item {
     display: flex;
     align-items: center;
     gap: 8px;
     background-color: rgba(255, 255, 255, 0.04);
     padding: 8px 14px;
     border-radius: 8px;
     font-size: 0.9rem;
     color: #e8d8d0;
     border: 1px solid rgba(232, 216, 208, 0.08);
}
 .logo-item i {
     font-size: 1.1rem;
}
 .payment-group.accept .logo-item i {
     color: var(--success-color);
}
 .logo-item.disabled {
     opacity: 0.35;
}
 .logo-item.disabled i {
     color: var(--danger-color);
}
 .logo-item.disabled span, .logo-item.disabled i {
     text-decoration: line-through;
}
 .footer-bottom {
     max-width: 1200px;
     margin: 20px auto 0 auto;
     text-align: center;
     font-size: 0.85rem;
     color: #9c908b;
}
 .footer-legal-links {
     margin-top: 8px;
}
 .footer-legal-links a {
     color: #9c908b;
     margin: 0 5px;
}
 .footer-legal-links a:hover {
     color: var(--accent-color);
}
/* Section Google Maps */
 .map-section {
     padding: 40px 0;
     width: 100%;
     background-color: var(--bg-light, #fff);
    /* S'adapte à ta couleur de fond */
}
 .map-container {
     max-width: 1200px;
    /* Aligné sur la largeur maximale de ton site */
     margin: 0 auto;
     padding: 0 20px;
}
 .map-container iframe {
     width: 100%;
     border-radius: 12px;
    /* Pour un rendu plus doux et moderne */
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Ombre légère pour le relief */
}
 .btn-cta, .btn-primary {
     display: inline-block;
     background-color: #b89689;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(184, 150, 137, 0.15);
     border: none;
     cursor: pointer;
}
 .section-title {
     text-align: center;
     margin-bottom: 30px;
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.8rem;
}
/* ========================================================================== NAVIGATION RESPONSIVE ========================================================================== */
 .main-header {
     background-color: #ffffff;
     border-bottom: 1px solid var(--border-color);
     position: sticky;
     top: 0;
     z-index: 1000;
}
 .header-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     flex-direction: column;
     z-index: 1010;
}
 .logo-main {
     font-size: 1.8rem;
     font-weight: 700;
     letter-spacing: 1px;
     color: var(--primary-color);
     line-height: 1;
}
 .logo-sub {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     color: var(--text-light);
     margin-top: 4px;
}
/* ========================================================================== NOUVEAU SYSTÈME DE NAVIGATION ÉPURÉ & DROPDOWNS ========================================================================== */
 .nav-menu ul {
     list-style: none;
     display: flex;
     gap: 25px;
     align-items: center;
}
 .nav-menu a {
     font-size: 0.95rem;
     font-weight: 500;
     color: var(--text-light);
     padding: 10px 0;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     position: relative;
}
/* --- STRUCTURE DES DROPDOWNS (ORDINATEUR) --- */
 .nav-menu li {
     position: relative;
    /* Position pivot pour le sous-menu */
}
 .nav-menu .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     background-color: #ffffff;
     box-shadow: 0 10px 30px rgba(184, 150, 137, 0.12);
     border: 1px solid var(--border-color);
     border-radius: 12px;
     padding: 12px 0;
     min-width: 200px;
     z-index: 1000;
     flex-direction: column;
     gap: 0;
}
/* Liens internes du menu déroulant */
 .nav-menu .dropdown-menu li a {
     display: block;
     padding: 10px 20px;
     color: var(--text-dark);
     font-size: 0.9rem;
     font-weight: 400;
     white-space: nowrap;
     width: 100%;
     transition: background-color 0.2s, color 0.2s;
}
 .nav-menu .dropdown-menu li a:hover, .nav-menu .dropdown-menu li a.active {
     background-color: var(--bg-soft);
     color: var(--primary-color);
}
/* Flèche indicative */
 .dropdown-trigger::after {
     content: '▾';
     font-size: 0.8rem;
     color: var(--text-light);
     transition: transform 0.3s ease;
}
 .dropdown-trigger:hover::after {
     color: var(--primary-color);
}
/* Déclenchement au survol sur écran d'ordinateur */
 @media (min-width: 1025px) {
     .nav-menu li.dropdown:hover .dropdown-menu {
         display: flex;
    }
}
 .nav-menu a:hover, .nav-menu a.active {
     color: var(--primary-color);
}
 .mobile-cta-item {
     display: none;
}
 .menu-toggle-checkbox, .menu-burger-label {
     display: none;
}
 .btn-cta:hover, .btn-primary:hover {
     background-color: var(--text-dark);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     transform: translateY(-1px);
}
 .info-card:hover {
     transform: translateY(-5px);
}
 .btn-secondary:hover {
     background-color: var(--primary-color);
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(184, 150, 137, 0.15);
}
 .btn-secondary:hover i {
     color: #ffffff;
    /* L'icône devient blanche au survol pour l'esthétique */
}
/* Réajustement responsive pour mobile (les blocs se remettent l'un sous l'autre) */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         align-items: flex-start;
         gap: 40px;
    }
     .payment-col, .payment-container {
         align-items: flex-start;
         text-align: left;
    }
     .logos-grid {
         justify-content: flex-start;
    }
     .cta-container a.btn-page-cta {
         font-size: 14px;
         padding: 12px 24px;
         display: inline-block;
    }
}
 @media (max-width: 1024px) {
     .btn-cta {
         display: none;
    }
     .mobile-cta-item .btn-primary {
         color: #ffffff;
    }
     .menu-burger-label {
         display: flex;
         flex-direction: column;
         justify-content: space-between;
         width: 30px;
         height: 21px;
         cursor: pointer;
         z-index: 10000;
    }
     .menu-burger-label span {
         display: block;
         height: 3px;
         width: 100%;
         background-color: var(--primary-color);
         border-radius: 3px;
         transition: all 0.3s ease;
    }
     .nav-menu {
         position: fixed;
         top: 0;
         right: -100%;
        /* Caché à droite par défaut */
         width: 80%;
         max-width: 400px;
         height: 100vh;
         background-color: #ffffff;
         box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
         padding: 100px 40px 40px 40px;
         transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
         z-index: 9999;
    }
     .nav-menu ul {
         flex-direction: column;
         align-items: flex-start;
         gap: 25px;
    }
     .nav-menu a {
         font-size: 1.2rem;
         display: block;
         width: 100%;
    }
     .mobile-cta-item {
         display: block;
         width: 100%;
         margin-top: 20px;
    }
     .mobile-cta-item .btn-primary {
         display: block;
         width: 100%;
    }
     .menu-toggle-checkbox:checked ~ .nav-menu {
         right: 0;
    }
     .menu-toggle-checkbox:checked ~ .menu-burger-label span:nth-child(1) {
         transform: translateY(9px) rotate(45deg);
    }
     .menu-toggle-checkbox:checked ~ .menu-burger-label span:nth-child(2) {
         opacity: 0;
    }
     .menu-toggle-checkbox:checked ~ .menu-burger-label span:nth-child(3) {
         transform: translateY(-9px) rotate(-45deg);
    }
    /* Ajustement des menus déroulants pour le volet mobile */
     .nav-menu .dropdown-menu {
         display: none;
         position: static;
         transform: none;
         box-shadow: none;
         border: none;
         padding: 5px 0 5px 15px;
         background: transparent;
         min-width: auto;
    }
    /* Affiche le sous-menu sur mobile au clic/survol */
.nav-menu .dropdown.open > .dropdown-menu {
    display: flex;
}
     .nav-menu .dropdown-menu li a {
         font-size: 1.05rem;
         padding: 8px 0;
         color: var(--text-light);
    }
}
 @media (max-width: 768px) {
     .hero-section {
         padding: 40px 20px;
    }
     .hero-container {
         flex-direction: column;
         text-align: center;
         gap: 30px;
    }
     .hero-image {
         order: -1;
    }
     .hero-image img {
         max-width: 85%;
    }
     .hero-content h1 {
         font-size: 2.2rem;
    }
     .hero-content p {
         font-size: 1.05rem;
         margin-bottom: 25px;
    }
     .info-section {
         margin: 50px auto;
    }
     .info-card {
         padding: 30px 20px;
    }
     .reviews-section {
         padding: 60px 20px;
    }
     .reviews-section h2 {
         font-size: 1.8rem;
    }
    /* ========================================================================== FIX DÉBORDEMENT CATALOGUE SOINS ========================================================================== */
    /* 1. Force la ligne entière à passer en colonne pour empiler titre et prix */
     .menu-item-row {
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         gap: 5px;
    }
     .item-main-info, .item-title-dots {
         display: block;
         width: 100%;
         white-space: normal;
    }
     .item-title-dots .item-title {
         display: block;
         width: 100%;
         max-width: 100%;
         word-wrap: break-word;
         overflow-wrap: break-word;
         white-space: normal;
         font-size: 1.5rem;
         line-height: 1.3;
         color: var(--header-color);
    }
     .item-title-dots .item-dots {
         display: none;
    }
     .footer-container {
         flex-direction: column;
         gap: 30px;
    }
}
/* Style du lien dans le footer */
 .footer-link {
     color: var(--primary);
     text-decoration: none;
     font-weight: 700;
     transition: opacity 0.3s ease;
}
 .footer-link:hover {
     text-decoration: underline;
     opacity: 0.8;
}
/* ========================================================================== PAGE À PROPOS - IDENTITÉ CAMILLE ========================================================================== */
 .about-page-content {
     background-color: var(--bg-soft);
}
 .about-bio-section {
     padding: 80px 20px;
     background-color: #ffffff;
}
 .about-bio-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 50px;
}
 .about-bio-text {
     flex: 1.2;
}
 .about-bio-text .subtitle {
     font-size: 0.95rem;
     color: var(--primary-color);
     font-weight: 600;
     display: block;
     margin-bottom: 15px;
}
 .about-bio-text h1 {
     font-size: 3rem;
     color: var(--text-dark);
     margin-bottom: 20px;
}
 .about-bio-text p {
     font-size: 1.05rem;
     line-height: 1.7;
     color: var(--text-light);
     margin-bottom: 15px;
}
 .about-bio-text p.lead {
     font-size: 1.25rem;
     color: var(--text-dark);
     font-weight: 500;
}
/* Bloc Diplômes & Spécialités */
 .diplomas-block {
     background-color: var(--bg-soft);
     padding: 25px 30px;
     border-radius: 20px;
     margin-top: 30px;
     border: 1px solid var(--border-color);
}
 .diplomas-block h3 {
     font-size: 1.2rem;
     color: var(--text-dark);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
}
 .diplomas-block h3 i {
     color: var(--primary-color);
}
 .skills-list {
     list-style: none;
     padding: 0;
     margin-top: 15px;
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .skills-list li {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1rem;
     color: var(--text-dark);
}
 .skills-list li i {
     color: var(--primary-color);
     font-size: 0.85rem;
}
/* Zone Photo Institut / Camille */
 .about-bio-gallery {
     flex: 0.8;
}
 .main-photo-wrapper {
     background-color: #ffffff;
     padding: 12px;
     border-radius: 24px;
     box-shadow: 0 15px 35px rgba(184, 150, 137, 0.12);
     border: 1px solid var(--border-color);
     text-align: center;
}
 .main-photo-wrapper img {
     max-width: 100%;
     height: auto;
     border-radius: 16px;
     display: block;
}
 .photo-caption {
     display: inline-block;
     margin-top: 12px;
     font-size: 0.85rem;
     color: var(--text-light);
     font-style: italic;
}
/* SECTION GRILLE DES PRESTATIONS VISUELLES */
 .about-services-section {
     padding: 80px 20px;
     max-width: 1200px;
     margin: 0 auto;
}
 .services-intro {
     text-align: center;
     margin-bottom: 50px;
}
 .services-intro h2 {
     font-size: 2.2rem;
     color: var(--text-dark);
     margin-bottom: 10px;
}
 .services-intro p {
     font-size: 1.05rem;
     color: var(--text-light);
}
 .services-visual-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 25px;
     justify-content: center;
}
 .service-visual-card {
     background-color: #ffffff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
     border: 1px solid var(--border-color);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .service-visual-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(184, 150, 137, 0.12);
}
 .service-card-info {
     padding: 20px;
     text-align: center;
}
 .service-card-info h3 {
     font-size: 1.1rem;
     color: var(--text-dark);
     font-weight: 600;
}
 .service-card-info .small-tag {
     display: block;
     font-size: 0.8rem;
     color: var(--text-light);
     font-weight: 400;
     margin-top: 4px;
}
 .about-action-call {
     text-align: center;
     margin-top: 50px;
}
/* RESPONSIVE DESIGN */
 @media (max-width: 992px) {
     .about-bio-container {
         flex-direction: column;
         gap: 40px;
    }
     .about-bio-gallery {
         width: 100%;
         max-width: 500px;
    }
     .about-bio-text h1 {
         font-size: 2.5rem;
    }
}
 @media (max-width: 576px) {
     .services-visual-grid {
         grid-template-columns: 1fr;
         max-width: 320px;
         margin: 0 auto;
    }
}
/* ========================================================================== SYSTEME DE MINI-CARROUSEL SUR LES CARTES ========================================================================== */
 .service-slider-container {
     position: relative;
     width: 100%;
     height: 220px;
     overflow: hidden;
     background-color: #f5f5f5;
}
 .service-slides {
     display: flex;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     width: 100%;
     height: 100%;
    /* Masquer la barre de défilement sur tous les navigateurs */
     scrollbar-width: none;
    /* Firefox */
     -ms-overflow-style: none;
    /* IE/Edge */
}
 .service-slides::-webkit-scrollbar {
     display: none;
    /* Chrome/Safari */
}
 .service-slides img {
     flex: 0 0 100%;
     width: 100%;
     height: 100%;
     object-fit: cover;
     scroll-snap-align: start;
     transition: transform 0.5s ease;
}
/* Boutons Flèches */
 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 32px;
     height: 32px;
     background-color: rgba(255, 255, 255, 0.85);
     border: none;
     border-radius: 50%;
     color: var(--text-dark);
     font-size: 0.8rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
     transition: all 0.3s ease;
     opacity: 0;
    /* Caché par défaut */
     z-index: 10;
}
 .slider-btn.prev {
     left: 10px;
}
 .slider-btn.next {
     right: 10px;
}
/* Afficher les flèches uniquement au survol de la carte */
 .service-visual-card:hover .slider-btn {
     opacity: 1;
}
 .slider-btn:hover {
     background-color: var(--primary-color);
     color: #ffffff;
}
/* Forcer l'affichage des boutons sur mobile puisqu'il n'y a pas de survol "Hover" */
 @media (max-width: 768px) {
     .slider-btn {
         opacity: 1;
         background-color: rgba(255, 255, 255, 0.95);
    }
}
/* Ajustement des menus déroulants pour le volet mobile */
 .nav-menu .dropdown-menu {
     display: none;
     position: static;
     transform: none;
     box-shadow: none;
     border: none;
     padding: 5px 0 5px 15px;
     background: transparent;
     min-width: auto;
}
/* Affiche le sous-menu sur mobile au clic/survol */
 .nav-menu li.dropdown:hover .dropdown-menu, .nav-menu li.dropdown:focus-within .dropdown-menu {
     display: flex;
}
 .nav-menu .dropdown-menu li a {
     font-size: 1.05rem;
     padding: 8px 0;
     color: var(--text-light);
}
/* Grille des services enfants*/
 .service-card {
     background: #ffffff;
     padding: 20px;
     border: 1px solid #f3ece9;
     border-radius: 12px;
     text-align: center;
     transition: 0.3s;
}
 .service-card:hover {
     border-color: #e8d8d4;
     transform: translateY(-3px);
}
 .btn-page-cta {
     display: inline-block;
     padding: 16px 20px;
     background-color: var(--primary-color);
     color: #ffffff;
     font-family: var(--font-body);
     font-size: 1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 10px;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .btn-page-cta:hover {
     background-color: #be9688;
     transform: translateY(-2px);
     color: #ffffff;
}
/* ========================================================================== PAGE DÉTAIL CILS - CONFIGURATION GÉNÉRALE & HERO ========================================================================== */
 .hero-prestation-content {
     max-width: 800px;
     margin: 0 auto;
}
/* Le sous-titre tout en haut */
 .prestation-subtitle {
     color: #b89689;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.9rem;
     display: block;
     margin: 0 auto 10px auto;
    /* Centre le bloc de texte */
     text-align: center;
    /* Centre le texte à l'intérieur */
     width: 100%;
}
/* Le titre principal H1 */
 .prestation-hero-section h1 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 2.8rem;
     margin: 0 auto 15px auto;
    /* Centre le bloc de texte */
     text-align: center;
    /* Centre le texte à l'intérieur */
     width: 100%;
}
/* Le premier paragraphe d'accroche */
 .prestation-lead-text {
     color: #7a6b68;
     font-size: 1.2rem;
     margin: 0 auto 10px auto;
     font-family: 'Plus Jakarta Sans', sans-serif;
     text-align: center;
     width: 100%;
}
/* Le deuxième paragraphe d'accroche (en rose et italique) */
 .prestation-lead-text.highlight-text {
     font-size: 1.1rem;
     font-style: italic;
     color: #b89689;
     margin: 0 auto;
     text-align: center;
     width: 100%;
}
/* ========================================================================== PAGE SPA PARTY - HERO & EN-TÊTE ========================================================================== */
 .prestation-hero-section.section-kids {
     background: #fff9fa;
     padding: 80px 20px;
     text-align: center;
     border-bottom: 1px solid #fce4e8;
}
 .hero-prestation-content {
     max-width: 800px;
     margin: 0 auto;
}
 .prestation-subtitle {
     color: #f7a8b8;
    /* Applique la couleur rose d'origine */
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.9rem;
     display: block;
     margin: 0 auto 10px auto;
     text-align: center;
     width: 100%;
}
 .prestation-hero-section h1 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 2.8rem;
     margin: 0 auto 15px auto;
     text-align: center;
     width: 100%;
}
 .badge-price {
     background: #f7a8b8;
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-weight: 500;
     margin-bottom: 15px;
     display: inline-block;
}
 .prestation-lead-text {
     color: #7a6b68;
     font-size: 1.2rem;
     margin: 0 auto 10px auto;
     font-family: 'Plus Jakarta Sans', sans-serif;
     text-align: center;
     width: 100%;
}
 .prestation-lead-text.highlight-text {
     font-size: 1.1rem;
     font-style: italic;
     color: #f7a8b8;
     margin: 0 auto;
     text-align: center;
     width: 100%;
}
/* ========================================================================== SECTION CONTENU & GRILLE SUR 2 LIGNES ========================================================================== */
 .spa-content {
     max-width: 900px;
     margin: 40px auto;
     padding: 0 20px;
}
 .spa-content h3 {
     text-align: center;
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     margin-bottom: 30px;
}
/* ========================================================================== BLOC INFOS CONDITIONS & BOUTON CTA ========================================================================== */
 .spa-conditions-block {
     margin-top: 40px;
     text-align: center;
     background: #faf6f5;
     padding: 30px;
     border-radius: 16px;
}
 .cta-container {
     text-align: center;
     margin-bottom: 50px;
}
/* ========================================================================== SECTION CONTENU (PRESTATIONS & GALERIE) ========================================================================== */
 .prestation-menu-section {
     padding-bottom: 0;
}
 .prestation-category-block h2 i {
     color: #b89689;
     margin-right: 10px;
}
/* ========================================================================== SECTION BASSE - CONSEILS & RENDRE-VOUS ========================================================================== */
 .bottom-booking-section {
     width: 100%;
     max-width: 1200px;
     margin: 40px auto 60px auto;
     padding: 0 20px;
     box-sizing: border-box;
}
 .bottom-booking-section h2 {
     text-align: center;
     margin-bottom: 30px;
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.8rem;
}
/* Grille des conseils */
 .bottom-booking-section .info-grid {
     display: flex;
     gap: 30px;
     margin-bottom: 50px;
     flex-wrap: wrap;
}
/* Boîtes de rappel de qualité (Avant / Après) */
 .quality-callout-box {
     flex: 1;
     min-width: 280px;
     background-color: #ffffff;
     padding: 25px;
     border-radius: 0 16px 16px 0;
     box-shadow: 0 4px 15px rgba(74, 62, 61, 0.02);
}
/* Personnalisation des bordures gauches */
 .quality-callout-box.before-care {
     border-left: 4px solid #b89689;
}
 .quality-callout-box.after-care {
     border-left: 4px solid #8fa89b;
}
 .quality-callout-box h4 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.15rem;
     margin: 0 0 15px 0;
}
 .quality-callout-box h4 i.icon-before {
     color: #b89689;
     margin-right: 6px;
}
 .quality-callout-box h4 i.icon-after {
     color: #8fa89b;
     margin-right: 6px;
}
 .quality-callout-box ul {
     margin: 0;
     padding-left: 20px;
     color: #706260;
     font-size: 0.95rem;
     line-height: 1.6;
}
 .quality-callout-box ul li {
     margin-bottom: 8px;
}
/* ========================================================================== STRUCTURE GÉNÉRALE & TYPOGRAPHIE ========================================================================== */
 .prestation-detail-page {
     font-family: 'Plus Jakarta Sans', sans-serif;
     color: #4a3e3d;
	 width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
/* ========================================================================== SECTIONS HERO ========================================================================== */
 .prestation-hero-section {
     padding: 80px 20px;
     text-align: center;
}
 .hero-prestation-content {
     max-width: 850px;
     margin: 0 auto;
}
 .prestation-subtitle {
     display: block;
     font-family: 'Plus Jakarta Sans', sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 25px;
     font-size: 0.9rem;
}
 .prestation-hero-section h1 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 3.2rem;
     font-weight: 700;
     margin: 0 0 25px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     line-height: 1.2;
}
 .prestation-lead-text {
     font-family: 'Plus Jakarta Sans', sans-serif;
     color: #7a6b68;
     font-size: 1.2rem;
     line-height: 1.6;
     margin: 0 auto 15px auto;
     max-width: 700px;
     font-weight: 400;
}
/* Variations de thèmes couleurs pour les Heros */
 .section-nails{
     background: #faf6f5;
     border-bottom: 1px solid #e8d8d4;
}
 .section-nails .prestation-subtitle{
     color: #b89689;
}
 .section-kids {
     background: #fff9fa;
     border-bottom: 1px solid #fce4e8;
}
 .section-kids .prestation-subtitle {
     color: #f7a8b8;
}
/* ========================================================================== COMPOSANTS REUTILISABLES (BADGES & BOUTONS) ========================================================================== */
 .badge-price {
     display: inline-block;
     background: #f7a8b8;
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-weight: 500;
     margin-bottom: 15px;
}
 .btn-cta:hover, .btn-primary:hover {
     background-color: #a38175;
     transform: translateY(-2px);
     box-shadow: 0 6px 15px rgba(184, 150, 137, 0.25);
}
/* ========================================================================== LISTE DES MENUS & PRESTATIONS ========================================================================== */
 .prestation-menu-section {
     padding-bottom: 15px;
}
 .prestation-category-block h2 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.8rem;
     margin-bottom: 10px;
}
 .category-intro-text {
     color: #8c7e7c;
     margin-bottom: 30px;
}
 .menu-item-row {
     margin-bottom: 20px;
}
 .item-title-dots {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
}
 .item-title {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.25rem;
     font-weight: 600;
}
 .item-dots {
     flex: 1;
     border-bottom: 1px dotted #ccc;
     margin: 0 10px;
}
 .item-description {
     color: #7a6b68;
     font-size: 0.95rem;
     line-height: 1.5;
}
/* ========================================================================== GRILLE DES SERVICES & CARTES ========================================================================== */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
}
 .service-card {
     background: #ffffff;
     padding: 25px;
     border-radius: 14px;
     border: 1px solid #eae1de;
     text-align: center;
     box-shadow: 0 4px 15px rgba(74, 62, 61, 0.02);
}
 .service-card h4 {
     margin: 10px 0 5px 0;
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
}
/* ========================================================================== SECTION ENCADRÉ DE RÉSERVATION (BOOKING) ========================================================================== */
 .booking-section {
     padding: 40px 20px;
}
 .services-selection {
     max-width: 600px;
     margin: 20px auto;
     text-align: left;
}
 .services-selection-title {
     color: #8c7e7c;
     font-size: 0.9rem;
     text-align: center;
     margin-bottom: 15px;
}
 .service-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px;
     background: #ffffff;
     border: 2px solid #eae1de;
     border-radius: 12px;
     margin-bottom: 12px;
     cursor: pointer;
     transition: all 0.2s ease;
}
 .service-option:hover {
     border-color: #b89689;
}
 .booking-container {
     max-width: 550px;
     margin: 20px auto;
     padding: 30px;
     background-color: #faf6f5;
     border-radius: 16px;
     border: 1px solid #f3ece9;
     text-align: center;
}
 .policy-label {
     display: flex;
     align-items: flex-start;
     text-align: left;
     gap: 12px;
     cursor: pointer;
     font-size: 0.85rem;
     color: #7a6b68;
     margin-bottom: 25px;
     background: #ffffff;
     padding: 15px;
     border-radius: 12px;
     border: 1px solid #eae1de;
     line-height: 1.5;
}
 .policy-checkbox {
     margin-top: 3px;
     width: 16px;
     height: 16px;
     accent-color: #b89689;
     cursor: pointer;
}
/* ========================================================================== BLOCS CONSEILS & INFOS (AVANT/APRÈS) ========================================================================== */
 .bottom-booking-section {
     width: 100%;
     max-width: 1200px;
     margin: 60px auto;
     padding: 0 20px;
     box-sizing: border-box;
}
 .quality-callout-box {
     flex: 1;
     min-width: 280px;
     background-color: #ffffff;
     padding: 25px;
     border-radius: 0 16px 16px 0;
     box-shadow: 0 4px 15px rgba(74, 62, 61, 0.02);
}
 .quality-callout-box h4 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 1.15rem;
     margin: 0 0 15px 0;
}
 .quality-callout-box ul {
     margin: 0;
     padding-left: 20px;
     color: #706260;
     font-size: 0.95rem;
     line-height: 1.6;
}
 .quality-callout-box li {
     margin-bottom: 8px;
}
/* ========================================================================== SECTION DE RÉSERVATION & SÉLECTION ========================================================================== */
 .booking-section {
     padding: 40px 20px;
}
 .services-selection {
     max-width: 600px;
     margin: 20px auto;
     font-family: 'Plus Jakarta Sans', sans-serif;
     text-align: left;
}
 .services-selection-title {
     color: #8c7e7c;
     font-size: 0.9rem;
     text-align: center;
     margin-bottom: 15px;
}
/* Options de soins interactives */
 .service-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px;
     background: #ffffff;
     border: 2px solid #eae1de;
     border-radius: 12px;
     margin-bottom: 12px;
     cursor: pointer;
     transition: all 0.2s ease;
}
/* Gestion du survol native en CSS */
 .service-option:hover {
     border-color: #b89689;
}
 .service-icon {
     font-size: 1.2rem;
     margin-right: 8px;
}
 .service-title {
     color: #4a3e3d;
     font-size: 0.95rem;
}
 .service-acompte {
     color: #b89689;
     font-weight: 600;
     font-size: 0.95rem;
}
/* Conteneur global de validation */
 .booking-container {
	 max-width: 1200px;
     padding: 30px;
     background-color: #faf6f5;
     border-radius: 16px;
     border: 1px solid #f3ece9;
     font-family: 'Plus Jakarta Sans', sans-serif;
     text-align: center;
	 width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
/* Case à cocher & texte réglementaire */
 .policy-label {
     display: flex;
     align-items: flex-start;
     text-align: left;
     gap: 12px;
     cursor: pointer;
     font-size: 0.85rem;
     color: #7a6b68;
     margin-bottom: 25px;
     background: #ffffff;
     padding: 15px;
     border-radius: 12px;
     border: 1px solid #eae1de;
     line-height: 1.5;
}
 .policy-checkbox {
     margin-top: 3px;
     width: 16px;
     height: 16px;
     accent-color: #b89689;
     cursor: pointer;
}
/* Bouton d'action principal (Désactivé par défaut) */
 .btn-booking {
     display: block;
     width: 100%;
     box-sizing: border-box;
     padding: 16px 20px;
     font-size: 1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #ffffff;
     background-color: #cbd5e1;
     border-radius: 10px;
     text-decoration: none;
     pointer-events: none;
     opacity: 0.7;
     transition: all 0.3s;
}
/* ========================================================================== SLIDER INTERACTIF D'IMAGES ========================================================================== */
 .slide-tag {
     position: absolute;
     bottom: 15px;
     left: 15px;
     background: rgba(255, 255, 255, 0.95);
     color: #4a3e3d;
     padding: 6px 14px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     box-shadow: 0 4px 10px rgba(74, 62, 61, 0.05);
}
 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.9);
     color: #4a3e3d;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(0,0,0,0.05);
     z-index: 10;
}
 .slider-arrow:hover {
     background: #b89689;
     color: #ffffff;
}
 .arrow-left {
     left: 15px;
}
 .arrow-right {
     right: 15px;
}
 .gallery-help-text {
     text-align: center;
     font-size: 0.8rem;
     margin-top: 10px;
     color: #7a6b68;
}
/* ========================================================================== PAGE : MODELAGE CORPS & DOS ========================================================================== */
 .hero-prestation-content {
     max-width: 800px;
     margin: 0 auto;
}
/* 2. Structure principale (Menu + Galerie) */
 .prestation-menu-section {
     background-color: #faf6f5;
     padding: 80px 20px;
}
.prestation-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligne les blocs tout en haut */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
/* Colonne de Gauche : Prestations */
 .prestation-items-details {
     display: table-cell;
     width: 55%;
     vertical-align: top;
     padding-right: 5%;
}
 .prestation-category-block h2 {
     font-family: "Playfair Display", serif;
     font-size: 2rem;
     color: #4a3e3d;
     margin-bottom: 10px;
}
 .category-intro-text {
     color: #8c7e7c;
     font-size: 1.05rem;
     margin-bottom: 40px;
     line-height: 1.5;
}
/* Lignes de prestations avec pointillés */
 .menu-list {
     margin-bottom: 50px;
}
 .menu-item-row {
     margin-bottom: 30px;
     background: #ffffff;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(74, 62, 61, 0.03);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .menu-item-row:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(74, 62, 61, 0.07);
}
 .item-title-dots {
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     width: 100%;
}
 .item-title {
     font-family: "Playfair Display", serif;
     font-size: 1.35rem;
     color: #4a3e3d;
     font-weight: 600;
     white-space: nowrap;
}
 .item-dots {
     flex-grow: 1;
     border-bottom: 2px dotted #e8d8d4;
     margin: 0 15px;
     position: relative;
     top: -4px;
}
 .item-description {
     color: #706260;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-top: 10px;
}
 .item-meta {
     margin-top: 15px;
     display: flex;
     justify-content: flex-start;
}
 .item-duration {
     background-color: #f3ece9;
     color: #4a3e3d;
     font-size: 0.85rem;
     font-weight: 600;
     padding: 6px 14px;
     border-radius: 50px;
}
 .item-duration i {
     color: #b89689;
     margin-right: 5px;
}
/* Encadré Qualité */
 .quality-callout-box {
     background-color: #fcf9f8;
     border-left: 4px solid #b89689;
     padding: 25px;
     border-radius: 0 16px 16px 0;
     box-shadow: inset 0 0 10px rgba(0,0,0,0.01);
}
 .quality-callout-box h4 {
     font-family: "Playfair Display", serif;
     font-size: 1.15rem;
     color: #4a3e3d;
     margin-bottom: 10px;
}
 .quality-callout-box h4 i {
     color: #b89689;
     margin-right: 6px;
}
 .quality-callout-box p {
     color: #706260;
     font-size: 0.95rem;
     line-height: 1.6;
}
/* Colonne de Droite : Galerie Photo interactive */
.prestation-media-gallery {
    flex: 0 0 50%;
    max-width: 500px; /* Limite la largeur maximale du cadre à 500px par exemple */
    margin: 0 auto;    /* Centre le cadre dans sa colonne si besoin */
    position: sticky;
    top: 20px;
    box-sizing: border-box;
}

 .interactive-slider {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(74, 62, 61, 0.12);
     background-color: #4a3e3d;
}
 .slider-slides-container {
     display: flex;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
}
 .slider-slides-container::-webkit-scrollbar {
     display: none;
    /* Cache la scrollbar brute */
}
 .slide-picture-item {
     flex: 0 0 100%;
     scroll-snap-align: start;
     position: relative;
     height: 480px;
}
 .slide-picture-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
}
 .slide-tag {
     position: absolute;
     bottom: 25px;
     left: 25px;
     background-color: rgba(42, 35, 34, 0.8);
     backdrop-filter: blur(5px);
     color: #ffffff;
     padding: 8px 18px;
     border-radius: 30px;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
}
/* Flèches de navigation */
 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: #ffffff;
     color: #4a3e3d;
     border: none;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0,0,0,0.15);
     transition: background-color 0.3s, color 0.3s, transform 0.2s;
     z-index: 10;
}
 .slider-arrow:hover {
     background-color: #b89689;
     color: #ffffff;
}
 .slider-arrow:active {
     transform: translateY(-50%) scale(0.95);
}
 .arrow-left {
     left: 15px;
}
 .arrow-right {
     right: 15px;
}
 .gallery-help-text {
     text-align: center;
     color: #8c7e7c;
     font-size: 0.85rem;
     margin-top: 15px;
     font-style: italic;
}
 .gallery-help-text i {
     color: #b89689;
     margin-right: 4px;
}
/* 3. Adaptabilité Mobile (Responsive) */
 @media (max-width: 992px) {
     .prestation-menu-container {
         display: block;
    }
     .prestation-items-details {
         display: block;
         width: 100%;
         padding-right: 0;
         margin-bottom: 50px;
    }
     .prestation-media-gallery {
         display: block;
         width: 100%;
    }
     .slide-picture-item {
         height: 380px;
    }
}
 @media (max-width: 576px) {
     .hero-prestation-content h1 {
         font-size: 2.2rem;
    }
     .item-title-dots {
         flex-direction: column;
    }
     .item-dots {
         display: none;
        /* Supprimé sur petit mobile pour éviter le chevauchement */
    }
}
/* Style du sous-titre */
 .prestation-hero-section .prestation-subtitle {
     display: block;
     color: #b89689;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 25px;
}
/* Style du titre avec l'icône */
 .prestation-hero-section h1 {
     font-family: 'Playfair Display', serif;
     color: #4a3e3d;
     font-size: 2.8rem;
     margin: 0 0 25px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
}
/* Style de la deuxième ligne de texte en italique */
 .prestation-hero-section{
     color: #b89689;
     font-size: 1.15rem;
     font-style: italic;
     margin-inline: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
}
 .hero-prestation-content {
     max-width: 800px;
     margin: 0 auto;
}
/* Forcer la structure de la galerie en mode statique */
 .static-gallery-wrapper {
     position: relative;
}
/* --- Mise en page Animations Enfants --- */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     max-width: 1000px;
     margin: 40px auto;
     padding: 0 20px;
}
 .service-card {
     background: #ffffff;
     padding: 25px;
     border-radius: 12px;
     border: 1px solid #eae1de;
     text-align: center;
     transition: all 0.3s ease;
     cursor: pointer;
}
 .service-card:hover {
     transform: translateY(-5px);
     border-color: #b89689;
     box-shadow: 0 8px 20px rgba(184, 150, 137, 0.1);
}

/* Badge prix */
 .badge-price {
     display: inline-block;
     padding: 6px 16px;
     background-color: #fce4e4;
     color: #4a3e3d;
     font-size: 0.85rem;
     font-weight: 600;
     border-radius: 30px;
     letter-spacing: 0.5px;
     text-transform: uppercase;
}
/* ==========================================================================
   MODULE CARROUSEL AVIS CLIENTS
   ========================================================================== */

.reviews-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

/* Flèches de navigation */
.review-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #b392ac;
    z-index: 10;
    transition: color 0.2s ease;
}

.review-nav-arrow:hover {
    color: #a17fa2;
}

#prev-review-btn {
    left: 10px;
}

#next-review-btn {
    right: 10px;
}

/* Grille animée par le JavaScript */
.reviews-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}
.review-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
/* Intégration de la colonne horaires */
.hours-col .footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.hours-col .footer-hours-list p {
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 0.9rem;
    color: #d1c7c3; /* Aligné sur la couleur de ton lien email */
    border-bottom: 1px dashed rgba(209, 199, 195, 0.2);
    padding-bottom: 4px;
}

.hours-col .footer-hours-list .closed-day {
    color: #c97a7a; /* Rouge doux esthétique pour le jour fermé */
}
/* ==========================================================================
   MODULE CARROUSEL AVIS CLIENTS (PUR CSS ET DEFILEMENT AUTOMATIQUE)
   ========================================================================== */

/* Conteneur principal */
section.reviews-section .reviews-carousel-container {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

/* Base commune et design des disques des flèches (Structure Div Neutre) */
section.reviews-section .reviews-carousel-container #prev-review-btn,
section.reviews-section .reviews-carousel-container #next-review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    
    /* Dimensions strictes et forme du disque blanc de l'institut */
    background: #ffffff;
    border: 1px solid #f3ece9;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(42, 35, 34, 0.08);
    
    /* Centrage parfait de l'icône interne */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Positionnements absolus Gauche / Droite */
section.reviews-section .reviews-carousel-container #prev-review-btn {
    left: 15px;
    right: auto;
}

section.reviews-section .reviews-carousel-container #next-review-btn {
    right: 15px;
    left: auto;
}

/* Dessin du chevron interne en pur CSS (Évite Font Awesome) */
section.reviews-section .reviews-carousel-container .arrow-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #b89689; /* Couleur rose cuivré de ta charte */
    border-right: 2px solid #b89689;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Inclinaison pour faire une flèche Gauche */
section.reviews-section .reviews-carousel-container .arrow-icon.left {
    transform: rotate(-135deg);
    margin-left: 2px;
}

/* Inclinaison pour faire une flèche Droite */
section.reviews-section .reviews-carousel-container .arrow-icon.right {
    transform: rotate(45deg);
    margin-right: 2px;
}

/* Effets graphiques au survol du disque */
section.reviews-section .reviews-carousel-container #prev-review-btn:hover,
section.reviews-section .reviews-carousel-container #next-review-btn:hover {
    background: #b89689;
    border-color: #b89689;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(184, 150, 137, 0.2);
}

/* Le chevron dessiné devient blanc au survol */
section.reviews-section .reviews-carousel-container #prev-review-btn:hover .arrow-icon,
section.reviews-section .reviews-carousel-container #next-review-btn:hover .arrow-icon {
    border-color: #ffffff;
}

/* Effet mécanique de pression au clic */
section.reviews-section .reviews-carousel-container #prev-review-btn:active,
section.reviews-section .reviews-carousel-container #next-review-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Zone de défilement des cartes */
section.reviews-section .reviews-carousel-container .reviews-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    padding: 25px 5px;
    box-sizing: border-box;
    /* Gère la fluidité linéaire de la glisse (Automatique et Manuelle) */
    transition: transform 0.5s ease-in-out; 
}

/* Design des cartes d'avis */
section.reviews-section .reviews-carousel-container .reviews-slider .review-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 280px;
    box-sizing: border-box;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(42, 35, 34, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Étoiles */
section.reviews-section .reviews-carousel-container .reviews-slider .review-card .stars {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffb800;
}

/* Texte de l'avis */
section.reviews-section .reviews-carousel-container .reviews-slider .review-card .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c4e4c;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Auteur de l'avis */
section.reviews-section .reviews-carousel-container .reviews-slider .review-card .review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a3e3d;
    margin: 0;
}

/* Pied de section */
section.reviews-section .leave-review-container {
    margin-top: 40px;
    text-align: center;
}

section.reviews-section .review-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* ==========================================================================
   GESTION RESPONSIVE ADAPTATIVE MOBILE / TABLETTE
   ========================================================================== */
@media (max-width: 1024px) {
    section.reviews-section .reviews-carousel-container .reviews-slider .review-card {
        flex: 0 0 calc(50% - 10px); /* 2 cartes visibles sur tablette */
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    section.reviews-section .reviews-carousel-container {
        padding: 0 40px;
    }
    section.reviews-section .reviews-carousel-container .reviews-slider .review-card {
        flex: 0 0 100%; /* 1 seule carte visible sur mobile */
        max-width: 100%;
    }
}
/* ==========================================================================
   ISOLATION COMPLÈTE : GRILLE DES TARIFS (SANS CONFLIT DE NOM)
   ========================================================================== */

/* Variables locales appliquées uniquement à cette page */
.page-tarifs-institut {
    background-color: #fcf9f7 !important;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.page-tarifs-institut .prices-page-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 60px 20px 0;
    box-sizing: border-box;
}

.page-tarifs-institut .section-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.page-tarifs-institut .section-title-block h1 {
    font-size: 2.6rem;
    color: #4a3e3d;
    margin: 0 0 10px 0;
}

.page-tarifs-institut .section-subtitle {
    color: #b89689;
    font-style: italic;
    margin: 5px 0 0 0;
}

/* Grille et Cartes isolées */
.page-tarifs-institut .prices-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-tarifs-institut .price-category-card {
    background: #ffffff !important;
    border: 1px solid #f3ece9 !important;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(42, 35, 34, 0.02);
    box-sizing: border-box;
}

.page-tarifs-institut .price-category-card h2 {
    font-size: 1.4rem;
    color: #4a3e3d;
    border-bottom: 2px solid #f3ece9;
    padding-bottom: 15px;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Lignes de prix */
.page-tarifs-institut .price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-tarifs-institut .price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 26px;
    position: relative;
}

.page-tarifs-institut .price-item:last-child {
    margin-bottom: 0;
}

.page-tarifs-institut .price-details {
    flex-grow: 1;
    padding-right: 20px;
}

.page-tarifs-institut .item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #4a3e3d;
    background: #ffffff;
    position: relative;
    z-index: 2;
    padding-right: 6px;
}

.page-tarifs-institut .item-description {
    font-size: 0.88rem;
    color: #5c4e4c;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

.page-tarifs-institut .item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b89689;
    white-space: nowrap;
    background: #ffffff;
    padding-left: 6px;
    position: relative;
    z-index: 2;
}
.item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b89689;
    white-space: nowrap;
    background: #ffffff;
    padding-left: 6px;
    position: relative;
    z-index: 2;
}
/* Pointillés d'alignement */
.page-tarifs-institut .price-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    border-bottom: 1px dotted #e1d5d2;
    z-index: 1;
}

/* Bas de page & Bouton unique */
.page-tarifs-institut .prices-cta-block {
    margin-top: 60px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f3ece9;
    padding: 40px;
    border-radius: 20px;
}

.page-tarifs-institut .btn-primary-tarifs {
    display: inline-block;
    background: #b89689;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-tarifs-institut .btn-primary-tarifs:hover {
    background: #a38174;
}
/* Mode mobile responsive */
@media (max-width: 968px) {
    .page-tarifs-institut .prices-grid-container {
        grid-template-columns: 1fr;
    }
}
/* Style des titres cliquables de catégories */
.page-tarifs-institut .price-category-card h2 a.category-link {
    text-decoration: none;
    color: #4a3e3d; /* Reste sur le brun foncé d'origine */
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

/* Effet de survol : le titre passe doucement à la couleur cuivrée */
.page-tarifs-institut .price-category-card h2 a.category-link:hover {
    color: #b89689; 
}
/* --- BLOC D'INFO HAUTE VISIBILITÉ --- */
.info-box-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fffaf7; /* Fond très clair pour le contraste */
    border-left: 4px solid #b89689; /* Bordure latérale épaisse pour attirer l'œil */
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    color: #4a3e3d;
    font-weight: 600; /* Texte plus gras */
    font-size: 1.05rem; /* Texte légèrement plus grand */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Légère ombre pour le détacher du fond */
}

.info-box-highlight i {
    color: #b89689;
    font-size: 1.3rem;
}
/* Défilement fluide pour toute la page */
html {
    scroll-behavior: smooth;
	overflow-x: hidden;
}

/* Style des liens de prestations */
.prestation-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prestation-link:hover .menu-item-row {
    background-color: #fcf4ee; /* Légère couleur au survol pour indiquer que c'est cliquable */
    border-radius: 8px;
}
/* Style de base (état inactif - grisé) */
#booking-btn {
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%);
    background-color: #333333; /* Gris par défaut */
    color: #ffffff;
    cursor: not-allowed;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none; /* Pour éviter le soulignement du lien */
}

/* État actif (bleu profond - case cochée) */
#booking-btn.active {
    pointer-events: auto;
    opacity: 1;
    filter: none; /* Supprime le gris */
    background-color: #b89689;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3); /* Ombre bleutée légère */
}

/* Effet au survol pour rendre le bleu plus vivant */
#booking-btn.active:hover {
    background-color: #9E7B6E; /* Bleu plus clair au survol */
}
/* Ajustements pour les écrans mobiles */
@media screen and (max-width: 768px) {
    /* Permet au bloc principal de s'adapter sans dépasser */
    .prestation-menu-container, 
    .prestation-items-details, 
    .menu-item-row {
        width: 100%;
        box-sizing: border-box;
    }

    /* Empêche les points de suspension de pousser le prix hors champ */
    .item-title-dots {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .item-dots {
        flex-grow: 1;
        margin: 0 10px;
        /* Réduit les points si l'écran est trop petit pour éviter la cassure */
        min-width: 10px; 
    }

    /* S'assure que le prix reste toujours bien calé à droite et visible */
    .item-price {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* --- CORRECTION FINALE MOBILE --- */
@media screen and (max-width: 768px) {
    .page-tarifs-institut .price-item {
        display: block;
        margin-bottom: 24px;
        position: relative;
    }

    .page-tarifs-institut .price-details {
        padding-right: 0;
        width: 100%;
    }

    .page-tarifs-institut .item-title {
        display: inline-block;
        padding-right: 0;
        background: transparent;
    }

    .page-tarifs-institut .price-item::after,
    .page-tarifs-institut .price-details::after {
        display: none;
    }

    .page-tarifs-institut .item-price {
        display: block;
        text-align: right;
        margin-top: 4px;
        background: transparent;
        padding-left: 0;
    }
}
.prestation-link.selected .menu-item-row {
    background-color: #fce4ec; /* Rose très doux */
    border-color: #d81b60;     /* Bordure rose plus prononcée */
    border-radius: 8px;
    transition: all 0.3s ease;
}
/* --- Styles généraux & Grille --- */
.prices-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-block h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Grille des cartes de prestations */
.prices-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes par défaut sur grand écran */
    gap: 30px;
}

.price-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.price-category-card:hover {
    transform: translateY(-3px);
}

/* Style des liens de catégories cliquables */
.price-category-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.category-link {
    color: #2c2c2c;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #d4a373; /* Couleur douce et élégante au survol (à adapter selon votre charte) */
}

/* --- CONTENEURS GLOBAUX RESPONSIVES --- */
.prices-page-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 20px 15px;
}

.prices-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* --- LIGNES DE PRIX (100% SÉCURISÉES ANTI-DÉPASSEMENT) --- */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 0;
    border-bottom: 1px dashed #f0f0f0;
    gap: 15px;
}

.price-details {
    flex: 1;
    min-width: 0; /* Empêche le texte de forcer un retour à la ligne erroné */
    box-sizing: border-box;
}

.price-item:last-child {
    border-bottom: none;
}

.price-category-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}

.item-title {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.item-price {
    flex-shrink: 0; /* Empêche le prix d'être écrasé ou rejeté en bas */
    text-align: right;
    font-weight: 700;
    color: #d4a373;
    font-size: 0.95rem;
    margin-top: 0; /* Remonte le prix à côté du titre */
    white-space: nowrap; /* Empêche le prix de se couper en deux */
}

.item-description {
    font-size: 0.85rem;
    color: #777;
    margin-top: 4px;
    display: block;
    width: 100%;
}

/* --- MEDIA QUERIES MOBILE & TABLETTE --- */
@media screen and (max-width: 900px) {
    .prices-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .prices-page-section {
        padding: 10px 5px;
    }

    .section-title-block h1 {
        font-size: 1.8rem;
    }

    .price-category-card {
        padding: 12px;
    }
}
body.menu-open {
    overflow: hidden;
    height: 100vh;
}
/* Empêche le texte des prestations de s'empiler verticalement */
.price-item, .price-details, .item-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    word-break: normal !important;
    white-space: normal !important;
}

/* S'assure que le texte reste bien horizontal dans sa carte */
.item-title {
    display: inline-block !important;
}
.hygiene-section{
    padding:80px 20px;
    background:#faf6f5;
}

.hygiene-section h2{
    text-align:center;
    margin-bottom:15px;
}

.section-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
}

.hygiene-card{
    display:flex;
    gap:50px;
    align-items:center;
    max-width:1100px;
    margin:auto;
}

.hygiene-card img{
    width:350px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.hygiene-text{
    flex:1;
}

.hygiene-text ul{
    padding-left:20px;
    line-height:2;
}

.hygiene-text p{
    margin-top:25px;
    font-weight:600;
}

@media(max-width:768px){

.hygiene-card{
    flex-direction:column;
    text-align:center;
}

.hygiene-text ul{
    text-align:left;
}

.hygiene-card img{
    width:100%;
    max-width:320px;
}

}
