/* =====================================================
   VARIABLES & BASE
   ===================================================== */

:root {
    --sage: #8B9D83;
    --sage-light: #A8B89E;
    --sage-dark: #6B7D63;

    --earth-brown: #B89968;
    --earth-beige: #D4C4A8;

    --powder-pink: #E8C5C3;
    --powder-pink-light: #F5E5E4;

    --coral: #E89681;
    --coral-light: #F4B5A4;

    --cream: #FAF8F3;
    --warm-white: #FFFBF5;

    --text-dark: #3D3D3D;
    --text-medium: #6B6B6B;
    --text-light: #8A8A8A;

    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER FIXE MINIMALISTE
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 251, 245, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    filter: contrast(1.2);
}

.discover-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    filter: contrast(1.2);
}

.offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    filter: contrast(1.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
}

.logo-accent {
    color: var(--sage);
    font-style: italic;
}

.header-info {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: var(--text-medium);
}

.header-phone {
    color: var(--sage-dark);
    text-decoration: none;
    font-weight: 600;
}

.header-phone:hover {
    color: var(--sage);
}

/* =====================================================
   HERO AVEC SUPERPOSITION D'IMAGES EN BLEND MODE - ULTRA PASTEL
   ===================================================== */

/* =====================================================
   BARRE STICKY PANNEAUX
===================================================== */
.panels-sticky-bar {
    position: fixed;
    top: 72px; /* sous le header */
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: stretch;
    height: 42px;
    background: rgba(255,251,245,0.97);
    border-bottom: 1px solid rgba(212,196,168,0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.panels-sticky-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.panels-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: background 0.18s;
    padding: 0 20px;
}

.panels-sticky-btn--coiffure {
    color: #4D6B44;
}

.panels-sticky-btn--coiffure:hover {
    background: rgba(77,107,68,0.06);
}

.panels-sticky-btn--service {
    color: #B56364;
}

.panels-sticky-btn--service:hover {
    background: rgba(181,99,100,0.06);
}

.panels-sticky-arrow {
    font-size: 14px;
    transition: transform 0.18s;
}

.panels-sticky-btn--coiffure:hover .panels-sticky-arrow {
    transform: translateX(-3px);
}

.panels-sticky-btn--service:hover .panels-sticky-arrow {
    transform: translateX(3px);
}

.panels-sticky-divider {
    width: 1px;
    background: rgba(212,196,168,0.6);
    margin: 8px 0;
    flex-shrink: 0;
}

.hero {
    position: relative;
    padding: 0;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image fleur abeille comme fond PRINCIPAL - TRÃˆS CLAIR */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/fleur_abeille.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.5) saturate(0.5) contrast(0.9);
}

/* Texture header en blend mode PAR DESSUS - TRÃˆS SUBTIL */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.3;
    z-index: 2;
    filter: brightness(1.5);
}

.hero > div {
    position: relative;
    z-index: 4;
}

/* Cercle blanc blur derriÃ¨re le contenu */
.hero-content-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

/* Overlay blanc pastel ENTRE les images et le contenu - PLUS OPAQUE */
.hero-pastel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 3;
    pointer-events: none;
}

.hero-logo-image {
    width: 320px;
    height: 320px;
    margin: 0 auto 30px;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.3s;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hero-logo-accent {
    color: var(--sage);
    font-style: italic;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 260px;
        text-align: center;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
    background: var(--sage);
    color: white;
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 157, 131, 0.3);
}

.btn-accent {
    background: var(--coral);
    color: white;
}

.btn-accent:hover {
    background: #d88570;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 150, 129, 0.3);
}

.btn-light {
    background: white;
    color: var(--sage-dark);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* =====================================================
   OFFERS SECTION AVEC PANNEAUX COULISSANTS
   ===================================================== */

.offers-section {
    padding: 60px 20px;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.offer-card:nth-child(1) {
    animation-delay: 0.2s;
}

.offer-card:nth-child(2) {
    animation-delay: 0.4s;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.offer-card:hover .offer-image-banner::before {
    opacity: 0;
}

.offer-card:hover .offer-image-banner {
    transform: scale(1.05);
}

/* IMAGES Ã€ LA PLACE DES EMOJIS */
.offer-image-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:nth-child(1) .offer-image-banner {
    background-image: url('images/coiffure.jpg');
}

.offer-card:nth-child(2) .offer-image-banner {
    background-image: url('images/soin.jpg');
}

/* Filtre colorÃ© par dÃ©faut */
.offer-image-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: color;
}

.offer-card:nth-child(1) .offer-image-banner::before {
    background: var(--sage);
}

.offer-card:nth-child(2) .offer-image-banner::before {
    background: var(--powder-pink);
}

/* Retirer le filtre au survol */
.offer-card:hover .offer-image-banner::before {
    opacity: 0;
}

.offer-text-content {
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    filter: contrast(1.2);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.offer-description {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

/* ZONE CTA = FOND COMPLET COLORÃ‰ */
.offer-cta-section {
    padding: 35px 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.offer-card:nth-child(1) .offer-cta-section {
    background: var(--sage);
}

.offer-card:nth-child(2) .offer-cta-section {
    background: var(--powder-pink);
}

.offer-card:hover .offer-cta-section {
    padding: 40px;
    background: var(--sage-dark);
}

.offer-card:nth-child(2):hover .offer-cta-section {
    background: var(--coral);
}

.offer-cta-section .btn {
    width: 100%;
    background: transparent;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.offer-cta-section .btn:hover {
    background: transparent;
    transform: none;
}

/* =====================================================
   PANNEAUX COULISSANTS
   ===================================================== */

.side-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 60vw;
    max-width: 780px;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.18);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    padding: 0 40px 40px;
    font-size: 16px;
}

.side-panel.left {
    left: 0;
}

.side-panel.right {
    right: 0;
    transform: translateX(100%);
}

.side-panel.active {
    transform: translateX(0);
}

.panel-close-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-medium);
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    line-height: 1;
}

.panel-close-fixed.visible {
    display: flex;
}

.panel-close-fixed:hover {
    color: var(--text-dark);
}

.panel-header {
    margin-bottom: 30px;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.panel-subtitle {
    color: var(--text-medium);
    font-size: 18px;
}

.panel-section {
    margin-bottom: 35px;
}

.panel-section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--sage-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sage-light);
}

.prestation-item {
    padding: 14px 16px;
    background: var(--cream);
    margin-bottom: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prestation-item:last-child {
    margin-bottom: 0;
}

.prestation-item:hover {
    transform: translateX(4px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.07);
}

.prestation-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.prestation-nom {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 17px;
}

.prestation-prix {
    font-weight: 600;
    color: var(--sage);
    font-size: 17px;
}

.prestation-description {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--text-medium);
    margin-top: 4px;
}

.prestation-inclus {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.prestation-inclus strong {
    color: var(--text-medium);
}

.forfait-item {
    background: var(--cream);
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forfait-item:hover {
    transform: translateX(5px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.08);
}

.forfait-nom {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.forfait-prix {
    font-size: 26px;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 10px;
}

.forfait-inclus-list {
    list-style: none;
    padding: 0;
}

.forfait-inclus-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-medium);
}

.forfait-inclus-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */

.content-section {
    padding: 80px 20px;
    background: var(--cream);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

.title-accent {
    color: var(--sage);
    font-style: italic;
    display: inline-block;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-dark));
    border-radius: 2px;
    opacity: 0.6;
}

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

/* =====================================================
   DISCOVER HAIRBLOOM - AVEC FILTRES COLORÃ‰S
   ===================================================== */

.discover-hairbloom {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.discover-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    min-height: 500px;
}

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

.discover-item:nth-child(1) {
    animation-delay: 0.1s;
}

.discover-item:nth-child(2) {
    animation-delay: 0.2s;
}

.discover-item:nth-child(3) {
    animation-delay: 0.3s;
}

.discover-item:nth-child(4) {
    animation-delay: 0.4s;
}

.discover-item:nth-child(5) {
    animation-delay: 0.5s;
}

.discover-item:nth-child(even) {
    direction: rtl;
}

.discover-item:nth-child(even) > * {
    direction: ltr;
}

.discover-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.discover-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: contrast(1.1) saturate(0.9);
    image-rendering: -webkit-optimize-contrast;
}

.discover-image-wrapper:hover img {
    filter: contrast(1) saturate(1);
}

/* FILTRES EN MIX-BLEND-MODE COLOR - COULEURS PASTELS */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    mix-blend-mode: color;
    opacity: 0.6;
}

/* Charly - Violet pastel trÃ¨s clair */
.discover-item:nth-child(1) .image-overlay {
    background: #E8DDE6;
}

/* Coloration vÃ©gÃ©tale - Sage trÃ¨s clair */
.discover-item:nth-child(2) .image-overlay {
    background: #C9D4A8;
}

/* Terre de Couleur - Jaune citron trÃ¨s clair */
.discover-item:nth-child(3) .image-overlay {
    background: #E8E5A3;
}

/* Rythmobiologie - Beige trÃ¨s clair */
.discover-item:nth-child(4) .image-overlay {
    background: #F8F5EF;
}

/* Masques dÃ©tox - Coral trÃ¨s clair */
.discover-item:nth-child(5) .image-overlay {
    background: #F9C4A9;
}

/* EFFET AU SURVOL - Retirer le filtre */
.discover-image-wrapper:hover .image-overlay {
    opacity: 0;
}

.discover-image-wrapper:hover img {
    transform: scale(1.08) rotate(1deg);
}

.discover-text {
    padding: 40px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-slider {
    margin-top: auto;
    padding-top: 20px;
}

/* DOTS DE NAVIGATION - SANS GRADIENT */
.slider-dots {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding: 30px 0;
    margin: 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 157, 131, 0.3);
    border: 2px solid var(--sage);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--sage);
    transform: scale(1.2);
}

.discover-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    filter: contrast(1.2);
}

.discover-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

/* =====================================================
   SLIDER DE CONTENU - DOTS VISIBLES & SCROLLABLE
   ===================================================== */

.content-slider {
    margin-top: 20px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 60px;
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.slide.active {
    display: block;
}

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

.slide p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.slide ul {
    list-style: none;
    padding-left: 0;
}

.slide li {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.slide li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

/* DOTS DE NAVIGATION - TRÃˆS VISIBLES */
.slider-dots {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 25px;
    padding: 20px 0;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sage-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    border: 2px solid var(--sage-light);
    position: relative;
}

/* Indicateur de survol */
.dot:hover {
    opacity: 1;
    transform: scale(1.3);
    border-color: var(--sage);
    background: white;
}

.dot.active {
    background: var(--sage);
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(139, 157, 131, 0.15);
    border-color: var(--sage-dark);
}

/* Animation pulse sur le dot actif */
.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--sage);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* =====================================================
   MASQUES DÃ‰TOX - DESIGN Ã‰LÃ‰GANT
   ===================================================== */

.masques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.masque-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 520px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.masque-card:nth-child(1) { animation-delay: 0.1s; }
.masque-card:nth-child(2) { animation-delay: 0.2s; }
.masque-card:nth-child(3) { animation-delay: 0.3s; }
.masque-card:nth-child(4) { animation-delay: 0.4s; }
.masque-card:nth-child(5) { animation-delay: 0.5s; }
.masque-card:nth-child(6) { animation-delay: 0.6s; }
.masque-card:nth-child(7) { animation-delay: 0.7s; }

.masque-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Image de fond TRÃˆS HAUTE - 320px */
.masque-image-hero {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* Images de fond pour chaque masque */
.masque-card:nth-child(1) .masque-image-hero {
    background-image: url('images/masque-jaune.jpg');
}

.masque-card:nth-child(2) .masque-image-hero {
    background-image: url('images/masque-orange.jpg');
}

.masque-card:nth-child(3) .masque-image-hero {
    background-image: url('images/masque-rose.jpg');
}

.masque-card:nth-child(4) .masque-image-hero {
    background-image: url('images/masque-vert.jpg');
}

.masque-card:nth-child(5) .masque-image-hero {
    background-image: url('images/masque-rouge.jpg');
}

.masque-card:nth-child(6) .masque-image-hero {
    background-image: url('images/masque-bleu.jpg');
}

.masque-card:nth-child(7) .masque-image-hero {
    background-image: url('images/masque-violet.jpg');
}

.masque-card:hover .masque-image-hero {
    transform: scale(1.05);
}

/* Petit badge colorÃ© en haut Ã  gauche */
.masque-color-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    border: 3px solid white;
    z-index: 3;
}

/* Couleurs des badges */
.masque-color-badge.jaune {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.masque-color-badge.orange {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6347 100%);
}

.masque-color-badge.rose {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.masque-color-badge.vert {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
}

.masque-color-badge.rouge {
    background: linear-gradient(135deg, #FF6B6B 0%, #DC143C 100%);
}

.masque-color-badge.bleu {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
}

.masque-color-badge.violet {
    background: linear-gradient(135deg, #DDA0DD 0%, #8B008B 100%);
}

/* Nom de la couleur Ã©crit directement sur l'image */
.masque-couleur-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 2;
    letter-spacing: 1px;
}

.masque-info-box {
    padding: 20px;
    text-align: center;
    background: white;
    margin-top: auto;
}

.masque-propriete {
    color: var(--sage);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.masque-bienfaits {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.masque-bienfaits li {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 3px;
}

.masque-details {
    padding: 15px 20px;
    background: var(--cream);
    font-size: 13px;
    color: var(--text-medium);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.masque-details strong {
    color: var(--text-dark);
}

/* =====================================================
   CTA SECTION - FOND VERT SAGE
   ===================================================== */

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons .btn {
    min-width: 220px;
    background: white;
    color: var(--text-dark);
}

.cta-buttons .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* =====================================================
   IMAGE + TEXT SECTION - FOND ABEILLE + RECTANGLE BLANC
   ===================================================== */

.image-text-section {
    padding: 80px 20px;
    background-image: url('images/fleur_abeille.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Overlay pastel trÃ¨s clair */
.image-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    filter: brightness(1.4) saturate(0.6);
    z-index: 1;
}

.image-text-grid {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

/* Rectangle blanc avec image */
.image-text-image {
    background: white;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.image-text-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.image-text-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.image-text-content ul {
    list-style: none;
    padding: 0;
}

.image-text-content li {
    color: var(--text-medium);
    font-size: 17px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
}

.image-text-content li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 20px;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--sage-light);
    font-weight: 400;
}

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--sage);
}

.badge {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    margin-right: 8px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .hero-logo {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .discover-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .discover-item:nth-child(even) {
        direction: ltr;
    }

    .image-text-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .masques-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        padding: 8px 16px;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .header-info {
        flex-direction: row;
        gap: 12px;
        font-size: 11px;
        justify-content: center;
    }

    .side-panel {
        width: 100%;
        max-width: 100vw;
        padding: 0 20px 100px;
        font-size: 16px;
    }

    /* Header compact sur mobile */
    .header-content {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
        padding: 0 16px;
    }

    .header-info {
        flex-direction: column;
        gap: 2px;
        align-items: flex-end;
        font-size: 12px;
    }

    /* Hero image moins rognée sur mobile */
    .hero::before {
        background-position: center top;
    }

    .hero::after {
        background-position: center top;
    }

    .hero-logo-image {
        width: 200px;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Panel sticky header padding réduit sur mobile */
    .panel-sticky-header {
        padding: 16px 20px 10px;
        margin: 0 -20px 0;
    }

    .panel-nav {
        gap: 6px;
        flex-wrap: wrap;
    }

    .panel-nav-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .discover-title {
        font-size: 26px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   PANNEAUX COULISSANTS
   ===================================================== */


/* =====================================================
   PANEL STICKY HEADER — titre + filet + nav fixe au scroll
   ===================================================== */

.panel-sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    padding: 28px 40px 14px;
    margin: 0 -40px 0;
    border-bottom: 1px solid var(--earth-beige);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.panel-sticky-header .panel-title {
    margin-bottom: 2px;
}

.panel-sticky-header .panel-subtitle {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
}

.panel-sticky-header--sp {
    border-bottom-color: #E8B5B5;
}

/* =====================================================
   PANEL NAV — Navigation interne Femme/Homme/Enfant
   ===================================================== */

.panel-nav {
    display: flex;
    gap: 8px;
    background: white;
    padding: 0;
}

.panel-nav-btn {
    flex: 1;
    padding: 10px 8px;
    border: 1.5px solid var(--sage-light);
    background: white;
    color: var(--text-medium);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.panel-nav-btn:hover {
    background: var(--cream);
    color: var(--text-dark);
}

/* Femmes — rose */
.panel-nav-btn--femmes:not(.active) { border-color: #E8B5B5; color: #B56364; background: white; }
.panel-nav-btn--femmes:not(.active):hover { background: #FBF0F0; border-color: #B56364; }
.panel-nav-btn--femmes.active { background: #B56364; border-color: #B56364; color: white; font-weight: 700; }

/* Hommes — vert */
.panel-nav-btn--hommes:not(.active) { border-color: #A8B89E; color: #4D6B44; background: white; }
.panel-nav-btn--hommes:not(.active):hover { background: #EFF4ED; border-color: #4D6B44; }
.panel-nav-btn--hommes.active { background: #4D6B44; border-color: #4D6B44; color: white; font-weight: 700; }

/* Enfants — doré */
.panel-nav-btn--enfants:not(.active) { border-color: #D4C4A8; color: #A07C3A; background: white; }
.panel-nav-btn--enfants:not(.active):hover { background: #F8F3EA; border-color: #A07C3A; }
.panel-nav-btn--enfants.active { background: #A07C3A; border-color: #A07C3A; color: white; font-weight: 700; }

.panel-section-anchor {
    padding-top: 10px;
}

.panel-separator {
    height: 1px;
    background: var(--earth-beige);
    margin: 30px 0;
}

/* =====================================================
   TITRES DE SECTIONS — couleurs par genre
   ===================================================== */

.panel-section-title--femmes {
    color: #B56364;
    border-color: #E8B5B5;
    font-size: 32px;
    font-weight: 700;
}

.panel-section-title--hommes {
    color: #4D6B44;
    border-color: #A8B89E;
    font-size: 32px;
    font-weight: 700;
}

.panel-section-title--enfants {
    color: #A07C3A;
    border-color: #D4C4A8;
    font-size: 32px;
    font-weight: 700;
}

/* Sous-titres de section — Instrument Serif, grands, colorés */
.panel-subsection-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--sage-dark);
    margin: 28px 0 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.panel-subsection-title--femmes { color: #B56364; }
.panel-subsection-title--hommes { color: #4D6B44; }
.panel-subsection-title--enfants { color: #A07C3A; }

.panel-section-desc {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* =====================================================
   TABLEAU DE PRIX PAR LONGUEUR
   ===================================================== */

.prix-longueur-table-wrap {
    overflow-x: auto;
    margin-bottom: 10px;
}

.prix-longueur-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.prix-longueur-table thead tr {
    background: var(--cream);
}

.prix-longueur-table th {
    padding: 11px 10px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: var(--sage-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--earth-beige);
}

.prix-longueur-table th:first-child { text-align: left; }

.prix-longueur-table td {
    padding: 14px 10px;
    text-align: center;
    border-bottom: 1px solid var(--cream);
    color: var(--sage-dark);
    font-weight: 600;
    font-size: 16px;
    vertical-align: top;
}

.prix-longueur-table td:first-child { text-align: left; }

.prix-longueur-table tbody tr:hover { background: var(--cream); }
.prix-longueur-table tbody tr:last-child td { border-bottom: none; }

.table-nom {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.table-sous-titre {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2px;
}

.table-duree {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

/* =====================================================
   OPTIONS / SUPPLÉMENTS — sans arrondi
   ===================================================== */

.options-bloc {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--earth-beige);
}

.option-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream);
}

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

.option-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--sage-dark);
    flex: 1;
}

.option-prix {
    font-size: 14px;
    color: var(--text-medium);
}

.option-sous-titre {
    display: block;
    width: 100%;
    font-size: 13px;
    color: var(--text-light);
}

/* =====================================================
   FORFAITS
   ===================================================== */

.forfait-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.forfait-sous-titre {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.forfait-duree {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* =====================================================
   NOTE FLEUR — remplacement ⚠
   ===================================================== */

.prestation-note {
    font-size: 15px;
    color: var(--text-medium);
    margin-top: 8px;
    font-style: italic;
}

.prestation-note--fleur {
    font-size: 16px;
    color: #B56364;
    font-style: italic;
    margin-top: 10px;
    padding: 10px 16px;
    background: #FBF0F0;
    border-left: 3px solid #E8B5B5;
}

/* =====================================================
   BOUTON RÉSERVER — panneau coiffure, sans arrondi
   ===================================================== */

.panel-reserver-wrap {
    text-align: center;
    margin: 30px 0 10px;
}

.btn-reserver {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 125, 99, 0.3);
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 125, 99, 0.4);
}

/* =====================================================
   TARIFS GROUPE
   ===================================================== */

.groupe-bloc {
    background: var(--cream);
    padding: 20px;
}

.groupe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.groupe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    background: white;
    border: 1px solid var(--earth-beige);
    border-radius: 0;
}

.groupe-nb {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.groupe-reduction {
    font-size: 22px;
    font-weight: 700;
    color: var(--sage-dark);
}

/* =====================================================
   PANNEAU SERVICE À LA PERSONNE
   ===================================================== */

.sp-panel-title {
    color: #B56364;
}

.sp-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Intro — Instrument Serif grand, élégant */
.sp-intro {
    margin: 28px 0 32px;
}

.sp-intro-texte {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.75;
}

/* Expertise autisme — image + texte Nunito, sans fond ni encadré */
.sp-expertise-libre {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 32px;
}

.sp-expertise-libre-img {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
}

.sp-expertise-libre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-expertise-libre-texte {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    flex: 1;
    padding-top: 4px;
}

/* Bloc devis — filet + image gauche + bouton & phrase à droite */
.sp-devis-bloc {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin: 32px 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--earth-beige);
}

.sp-devis-img {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    align-self: flex-end;
}

.sp-devis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-devis-contenu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.sp-devis-texte {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Aussi supprimer le panel-reserver-wrap dans SP */
.sp-devis-bloc .btn-sp-contact {
    align-self: flex-start;
}

/* Titres sections SP — gros, rose, filet */
.sp-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #B56364;
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8B5B5;
}

/* Liste services SP — filets comme panneau coiffure */
.sp-services-list {
    display: flex;
    flex-direction: column;
}

.sp-service-item {
    display: flex;
    flex-direction: column;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream);
}

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

.sp-service-nom {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.sp-service-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Tags Pour qui — bulles roses */
.sp-public-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.sp-public-tag {
    padding: 10px 20px;
    background: #E8B5B5;
    color: #7A3D3E;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

/* Bouton contact — rosé uni sans arrondi */
.btn-sp-contact {
    display: inline-block;
    padding: 16px 36px;
    background: #B56364;
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-sp-contact:hover {
    background: #9E4F50;
    transform: translateY(-2px);
}

/* =====================================================
   DISCOVER ITEMS — desktop : pas de dots, tout visible
   ===================================================== */

@media (min-width: 769px) {
    .content-slider .slider-dots {
        display: none;
    }

    .content-slider .slider-wrapper {
        overflow: visible;
        height: auto !important;
    }

    .content-slider .slide {
        display: block !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
    }
}

/* =====================================================
   RESPONSIVE MOBILE
   ===================================================== */

@media (max-width: 768px) {
    .panel-sticky-header {
        padding: 20px 20px 12px;
        margin: 0 -20px 0;
    }

    .panel-nav-btn {
        font-size: 13px;
        padding: 10px 6px;
    }

    .prix-longueur-table th,
    .prix-longueur-table td {
        padding: 10px 6px;
        font-size: 13px;
    }

    .prix-longueur-table td:not(:first-child) { font-size: 15px; }

    .groupe-grid { grid-template-columns: repeat(2, 1fr); }

    .sp-expertise-libre {
        flex-direction: column;
    }

    .sp-expertise-libre-img {
        width: 100%;
        height: 140px;
    }

    .sp-devis-bloc {
        flex-direction: column;
    }

    .sp-devis-img {
        width: 100%;
        height: 140px;
        align-self: auto;
    }

    .sp-intro-texte { font-size: 19px; }
    .sp-public-tag { font-size: 14px; padding: 9px 16px; }
}
