    /* Défilement fluide vers les sections (LastCall, A propos, Contact, Nos établissements) */
    html {
        scroll-behavior: smooth;
    }
    @keyframes en-direct-halo-breathe {
        0%, 100% {
            box-shadow:
                0 0 0 0 rgba(249, 163, 146, 0.28),
                0 0 10px rgba(249, 163, 146, 0.18);
        }
        50% {
            box-shadow:
                0 0 0 7px rgba(249, 163, 146, 0.06),
                0 0 22px 8px rgba(249, 163, 146, 0.32);
        }
    }
    .en-direct-halo {
        display: inline-block;
        border-radius: 24px;
        animation: en-direct-halo-breathe 2.8s ease-in-out infinite;
        will-change: box-shadow;
    }
    .en-direct-halo .en-direct-badge {
        border: 1px solid #F9A392 !important;
    }
    .btn-promo-hover:hover {
        background: white !important;
        color: black !important;
        border-color: white !important;
    }

    /* Couleur personnalisée pour les étoiles */
    .text-warning {
        color: #F9A392 !important;
    }

    /* Accordéon section "Nos prestations" */
    .group-services-faq {
        margin-top: 3rem;
    }
    .group-services-faq .faq-container {
        max-width: 100%;
        margin: 0 auto;
        background: #ffffff;
    }
    .group-services-faq .faq-item {
        background: transparent;
        margin-bottom: 0;
        overflow: hidden;
        border-bottom: 1px solid #d3d3d3;
    }
    .group-services-faq .faq-item:last-child {
        border-bottom: none;
    }
    .group-services-faq .faq-question {
        width: 100%;
        padding: 0.95rem 0.2rem;
        background: transparent;
        border: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-appearance: none;
        appearance: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
        color: #1d1d1f;
    }
    .group-services-faq .faq-question span {
        flex: 1;
        padding-right: 1rem;
        color: #4f4f4f;
    }
    .group-services-faq .faq-question i {
        color: #1d1d1f;
        font-size: 0.78rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .group-services-faq .faq-question[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    .group-services-faq .faq-question:focus,
    .group-services-faq .faq-question:focus-visible,
    .group-services-faq .faq-question:active,
    .group-services-faq .faq-question[aria-expanded="true"] {
        border: 0 !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .group-services-faq .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.2rem;
        background: transparent;
    }
    .group-services-faq .faq-question[aria-expanded="true"] + .faq-answer {
        max-height: 1200px;
        padding: 0 0.2rem 0.95rem 0.2rem;
    }
    .group-services-faq .faq-answer p {
        margin: 0.28rem 0 0;
        color: #86868b;
        line-height: 1.45;
        font-size: 0.86rem;
    }

    .group-services-faq .faq-services-list {
        list-style: none;
        margin: 0;
        padding: 0 0 0 1rem;
    }
    .group-services-faq .faq-services-list-item {
        padding: 0.5rem 0;
        border-top: 1px dashed rgba(0, 0, 0, 0.08);
    }
    .group-services-faq .faq-services-list-item:first-child {
        border-top: 0;
    }
    .group-services-faq .faq-service-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.35rem 0.6rem;
    }
    .group-services-faq .faq-service-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: #7a7a80;
        margin: 0;
    }
    .group-services-faq .faq-service-meta {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.3rem 0.55rem;
    }
    .group-services-faq .faq-service-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.78rem;
        font-style: italic;
        font-weight: 600;
        color: #8a8a90;
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    .group-services-faq .faq-answer .faq-services-list:last-child {
        margin-bottom: 1rem;
    }

    /* Système d'onglets avec morphing background */
    .js-morph-bg-wrapper {
        position: relative;
        margin-bottom: 2rem;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Filtre salon - Style inspiré de la page d'accueil */
    .slots-lastcall-section {
        overflow-x: hidden;
    }
    
    .salon-filter-section {
        margin-bottom: 2rem;
    }
    /* Masquer le hint "Cliquez pour changer de salon" quand le menu des salons est ouvert */
    @media (min-width: 768px) {
        .salon-filter-section:has(.salon-filter-list.expanded) .salon-filter-hint {
            display: none !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .salon-filter-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
    }
    
    .salon-filter-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 20px 20px;
    }
    
    @media (max-width: 767.98px) {
        .salon-filter-scroll-container {
            padding-bottom: 4px;
        }
        .salon-filter-hint-mobile {
            margin-top: 0.5rem !important;
        }
    }
    
    @media (min-width: 768px) {
        .salon-filter-scroll-container {
            overflow-x: visible;
            padding: 0;
        }
    }
    
    .salon-filter-scroll-container::-webkit-scrollbar {
        display: none;
    }
    
    .salon-filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        width: 100%;
    }
    
    @media (max-width: 767.98px) {
        .salon-filter-list {
            flex-wrap: nowrap;
            width: max-content;
            justify-content: flex-start;
        }
        .salon-filter-item:last-child {
            margin-right: 12px;
        }
    }
    
    .salon-filter-item {
        flex: 0 0 auto;
    }
    
    @media (min-width: 768px) {
        /* Par défaut sur desktop, masquer toutes les bulles sauf celle active */
        .salon-filter-list:not(.expanded) .salon-filter-item:not(.active) {
            display: none;
        }
        
        /* Quand on clique sur le "+", afficher toutes les bulles avec effet de fondu */
        .salon-filter-list.expanded .salon-filter-item:not(.active) {
            display: flex;
            opacity: 0;
            animation: fadeIn 0.3s ease forwards;
        }
        
        /* Animation de fondu pour l'apparition */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
    }
    
    .salon-filter-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1.25rem;
        border-radius: 50em;
        background: white;
        color: rgb(255, 142, 120);
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        border: 1px solid rgb(255, 203, 194);
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
        outline: none;
        gap: 0.5rem;
        position: relative;
    }
    
    .salon-filter-item {
        padding-top: 2px;
    }
    
    .salon-filter-expand-icon {
        display: none;
        margin-left: 0.5rem;
        font-size: 1.5rem;
        font-weight: 400;
        transition: transform 0.2s ease;
        line-height: 1;
    }
    
    @media (min-width: 768px) {
        .salon-filter-item.active .salon-filter-expand-icon {
            display: inline-block;
        }
    }
    
    @media (min-width: 768px) {
        .salon-filter-list.expanded .salon-filter-item.active .salon-filter-expand-icon {
            transform: rotate(45deg);
        }
    }
    
    .salon-filter-button:hover {
        background: rgba(255, 142, 120, 0.1);
    }
    
    .salon-filter-button:active {
        transform: none;
    }
    
    .salon-filter-button:focus,
    .salon-filter-button:active,
    .salon-filter-button:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }
    
    .salon-filter-item.active .salon-filter-button {
        background: rgb(255, 227, 222);
        color: rgb(255, 142, 120);
        border: 1px solid rgb(255, 169, 155);
    }
    
    .salon-filter-item.active .salon-filter-button:hover {
        background: rgb(255, 227, 222);
    }
    
    .salon-filter-item.active .salon-filter-button:active {
        transform: none;
        background: rgb(255, 227, 222) !important;
    }
    
    .salon-filter-item.active .salon-filter-button:focus,
    .salon-filter-item.active .salon-filter-button:active,
    .salon-filter-item.active .salon-filter-button:focus-visible {
        outline: none !important;
        border: 1px solid rgb(255, 169, 155) !important;
        box-shadow: none !important;
        background: rgb(255, 227, 222) !important;
        color: rgb(255, 142, 120) !important;
    }
    
    .salon-filter-badge {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgb(255, 142, 120);
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    
    .salon-filter-item.active .salon-filter-badge {
        background: rgb(255, 142, 120);
    }
    
    @media (max-width: 768px) {
        .salon-filter-scroll-container {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        /* Enlever le margin-top sur mobile pour les messages "Aucun LastCall" */
        .slots-no-promo-message .d-inline-flex,
        .slots-no-promo-global-message .d-inline-flex,
        #slots-no-promo-all-message .d-inline-flex {
            margin-top: 0 !important;
        }
    }
    
    /* Styles pour les cartes how-it-works */
    .slots-how-it-works-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
        padding: 2rem 0;
    }
    
    @media (max-width: 768px) {
        .slots-how-it-works-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }
    
    .slots-how-it-works-card {
        background: linear-gradient(139deg, rgba(254, 241, 239, 1) 2%, rgba(240, 229, 240, 1) 48%, rgba(249, 163, 146, 1) 93%);
        border-radius: 28px;
        padding: 2rem 1.75rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 320px;
        text-decoration: none;
        color: inherit;
    }
    
    .slots-how-it-works-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        text-decoration: none;
        color: inherit;
    }
    
    .slots-how-it-works-card {
        cursor: pointer;
        text-decoration: none;
    }
    
    .slots-how-it-works-promo {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 2rem;
        font-weight: 700;
        color: #F9A392;
    }
    
    .slots-how-it-works-date {
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
        font-weight: 600;
        color: #915448;
    }
    
    .slots-how-it-works-card-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #915448;
        text-align: center;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .slots-how-it-works-card-text {
        font-size: 0.95rem;
        color: #915448;
        text-align: center;
        line-height: 1.5;
        flex: 1;
        margin-bottom: 1rem;
    }

    .slots-remaining-places-wrap {
        margin-top: 0.4rem;
        text-align: center;
    }

    .slots-remaining-places-badge {
        display: inline-block;
        background: #ffffff;
        color: #F9A392;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.4rem 0.85rem;
        border-radius: 999px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    }
    
    .slots-how-it-works-link {
        text-align: center;
        color:rgb(248, 109, 82);
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        margin-top: 0.5rem;
        display: block;
        width: 100%;
    }
    
    .slots-how-it-works-link:hover {
        color: #e89382;
        text-decoration: underline;
    }

    .slots-how-it-works-reserve-btn {
        margin-top: auto;
        align-self: center;
        padding: 12px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #915448;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.35);
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .slots-how-it-works-reserve-btn:hover {
        background: rgba(255, 255, 255, 0.35);
        color: #915448;
        text-decoration: none;
        transform: translateY(-1px);
    }

    @media (max-width: 767.98px) {
        .slots-how-it-works-container {
            gap: 0.9rem;
            padding: 0.75rem 0;
        }
        .slots-how-it-works-card {
            border-radius: 18px;
            padding: 1rem 0.9rem;
            min-height: 0;
        }
        .slots-how-it-works-promo {
            margin-bottom: 0.35rem;
            font-size: 1.45rem;
            line-height: 1.1;
        }
        .slots-how-it-works-date {
            margin-bottom: 0.3rem;
            font-size: 1.08rem;
            line-height: 1.25;
        }
        .slots-how-it-works-employee {
            margin-top: 0.2rem !important;
            font-size: 0.78rem !important;
            line-height: 1.2;
        }
        .slots-how-it-works-card-title {
            margin-top: 0.55rem !important;
            margin-bottom: 0.35rem;
            font-size: 0.83rem;
            line-height: 1.2;
        }
        .slots-how-it-works-card-text {
            margin-bottom: 0.35rem;
            font-size: 0.8rem;
            line-height: 1.3;
        }
        .slots-remaining-places-wrap {
            margin-top: 0.2rem;
        }
        .slots-remaining-places-badge {
            font-size: 0.72rem;
            padding: 0.22rem 0.55rem;
        }
        .slots-how-it-works-reserve-btn {
            margin-top: 0.4rem;
            padding: 0.5rem 1rem;
            font-size: 0.82rem;
        }
    }
    
    
    .slots-content-section {
        display: none;
    }
    
    .slots-content-section.active {
        display: block;
    }
    
    /* Styles pour les cartes LastCall par date (page slots) */
    .slots-lastcall-section {
        background: #fff;
        padding: 0;
        margin: 0;
    }
    .slots-date-section {
        margin-bottom: 30px;
    }
    .slots-date-header {
        margin-bottom: 15px;
        padding: 0;
    }
    .slots-date-title {
        font-size: 3.5rem;
        font-weight: 600;
        color: #F9A392;
        margin: 1.5rem 0 0 0;
        line-height: 1.1;
    }
    .slots-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 20px 40px;
    }
    @media (min-width: 1200px) {
        .slots-scroll-container {
            padding-left: 12rem;
        }
    }
    .slots-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .slots-card-container {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: max-content;
    }
    .slots-card-item {
        flex: 0 0 auto;
        width: 380px;
        height: 480px;
    }
    .slots-card {
        position: relative;
        width: 100%;
        height: 100%;
        background: #1d1d1f;
        border-radius: 28px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        will-change: transform;
    }
    .slots-card:hover {
        transform: translateY(-4px);
    }
    .slots-card-date {
        position: relative;
        font-size: 0.875rem;
        color: #fff;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .slots-card-header {
        position: absolute;
        top: 24px;
        left: 24px;
        right: 24px;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .slots-card-promo {
        position: relative;
        padding: 8px 16px;
        border-radius: 20px;
        background: linear-gradient(135deg, #F9A392 0%, #e89382 100%);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(249, 163, 146, 0.4);
        margin-left: auto;
    }
    .slots-card-salon-info {
        position: absolute;
        top: 80px;
        left: 24px;
        right: 24px;
        z-index: 2;
    }
    .slots-card-salon-name {
        position: relative;
        font-size: 1.75rem;
        font-weight: 600;
        color: #fff;
        line-height: 1.2;
        margin: 0;
    }
    .slots-card-address {
        position: relative;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: #fff;
        font-weight: 700;
        margin: 0.5rem 0 0 0;
        line-height: 1.4;
    }
    .slots-card-rating {
        position: relative;
        margin-top: 0.75rem;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 6px 12px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
    }
    .slots-card-rating i {
        font-size: 1rem;
    }
    .slots-card-time {
        position: absolute;
        bottom: 80px;
        left: 24px;
        z-index: 2;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    .slots-card-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .slots-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        filter: brightness(0.7);
    }
    .slots-card-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }
    .slots-card-btn {
        position: absolute;
        bottom: 24px;
        right: 24px;
        z-index: 2;
        padding: 12px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.875rem;
        font-weight: 500;
        white-space: nowrap;
    }
    .slots-card-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        color: #fff;
        text-decoration: none;
    }
    @media (max-width: 767.98px) {
        .slots-date-title {
            font-size: 2rem;
        }
        .slots-card-item {
            width: 300px;
            height: 400px;
        }
        .slots-card-salon-name {
            font-size: 1.5rem;
        }
        .slots-card-address {
            font-size: 0.85rem;
        }
        .slots-card-time {
            font-size: 1.3rem;
        }
        .slots-card-rating {
            font-size: 0.85rem;
            padding: 5px 10px;
        }
        .slots-card-rating i {
            font-size: 0.85rem;
        }
        .slots-card:hover {
            transform: none;
        }
    }

    /* Cartes stats (salons / spécialistes) */
    .group-stats-card {
        min-height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .group-stats-card h3 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    .group-stats-card h6 {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }

    @media (max-width: 767.98px) {
        .group-stats-card {
            min-height: 140px;
        }
        .group-stats-card h3 {
            font-size: 1.8rem;
        }
        .group-stats-card h6 {
            font-size: 0.75rem;
        }
    }

    /* Carousel salons (style proche de la home) */
    .group-salons-section {
        background: #fff;
        padding: 60px 0 40px;
        margin: 0;
    }
    .group-salons-header {
        margin-bottom: 40px;
        padding: 0;
    }
    .group-salons-header h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #F9A392;
        margin: 0;
        line-height: 1.1;
    }
    .group-salons-gallery {
        position: relative;
        overflow: visible;
    }
    .group-salons-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 20px 20px;
    }
    .group-salons-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .group-salons-item-container {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: max-content;
    }
    .group-salons-item {
        flex: 0 0 auto;
        width: 360px;
        height: 440px;
    }
    .group-salons-card {
        position: relative;
        width: 100%;
        height: 420px;
        background: #1d1d1f;
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .group-salons-topic {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .group-salons-headline {
        position: absolute;
        top: 52px;
        left: 20px;
        right: 20px;
        z-index: 2;
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
        line-height: 1.3;
        margin: 0;
    }
    .group-salons-rating {
        position: absolute;
        bottom: 22px;
        left: 20px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }
    .group-salons-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .group-salons-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        filter: brightness(0.7);
    }
    .group-salons-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }
    .group-salons-link {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 2;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }
    .group-salons-link:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        text-decoration: none;
    }

    /* Section "Nos établissements" - layout type articles, alignée à gauche comme A propos */
    .group-places-section {
        background: #fff;
        padding: 60px 0 40px;
    }
    .group-places-container {
        padding: 0;
    }
    .group-places__title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #F9A392;
        margin-bottom: 32px;
    }
    .group-places__list-grid {
        display: grid;
        gap: 40px; /* espace un peu plus généreux entre les établissements */
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .group-places__item-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
        gap: 20px;
        align-items: stretch;
    }
    .group-places__item-grid > * {
        min-width: 0;
    }
    .group-places__img-wrapper {
        display: block;
        border-radius: 14px;
        overflow: hidden;
    }
    .group-places__img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
    }
    .group-places__img--placeholder {
        background: linear-gradient(135deg, #f5f5f7 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .group-places__img--placeholder i {
        font-size: 2rem;
        color: #c0c4cc;
    }
    .group-places__content {
        display: flex;
        flex-direction: column;
    }
    .group-places__headline {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 0.4rem;
    }
    .group-places__meta {
        color: #86868b;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    .group-places__meta i {
        margin-right: 0.4rem;
    }
    .group-places__description {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    .group-places__footer {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 0.75rem; /* bouton légèrement décollé du texte au-dessus */
        flex-wrap: wrap;
    }
    .group-places__rating {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.9rem;
        color: #1d1d1f;
    }
    .group-places__rating-stars i {
        font-size: 0.85rem;
    }
    .group-places__rating-stars i.text-warning {
        color: #ffc107 !important;
    }
    .group-reviews-card__stars i.text-warning {
        color: #ffc107 !important;
    }
    .group-reviews-modal-card__stars i.text-warning {
        color: #ffc107 !important;
    }
    .group-places__cta {
        padding: 0.55rem 1.4rem;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: 500;
        border: 1px solid transparent;
    }
    .group-places__cta--outline {
        border-color: #F9A392;
        color: #F9A392;
        background: transparent;
    }
    .group-places__cta--outline:hover {
        background: #FDE0D7;
        color: #c55e34;
        text-decoration: none;
    }

    /* Avis par salon — scroll horizontal, 6 avis max + bouton Voir tous */
    .group-places__reviews {
        margin-top: 1rem;
    }
    .group-places__reviews-scroll {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .group-places__reviews-scroll::-webkit-scrollbar {
        height: 6px;
    }
    .group-places__reviews-scroll::-webkit-scrollbar-track {
        background: #f5f5f7;
        border-radius: 3px;
    }
    .group-places__reviews-scroll::-webkit-scrollbar-thumb {
        background: #d1d1d6;
        border-radius: 3px;
    }
    .group-reviews-card {
        flex: 0 0 auto;
        min-width: 230px;
        max-width: 380px;
        width: max-content;
        height: 100px;
        padding: 0.75rem 1rem;
        background: #fafafa;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow: hidden;
    }
    .group-reviews-card--no-comment {
        width: auto;
        min-width: 230px;
        max-width: 380px;
        height: 100px;
        min-height: 0;
    }
    .group-reviews-card__header {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.35rem 0.5rem;
    }
    .group-reviews-card__stars {
        margin: 0;
        display: inline-flex;
        align-items: center;
    }
    .group-reviews-card__stars .fa-star {
        font-size: 0.8rem;
        margin-right: 0.05rem;
    }
    .group-reviews-card__name {
        font-size: 0.8rem;
        color: #1d1d1f;
        font-weight: 500;
    }
    .group-reviews-card__date {
        font-size: 0.7rem;
        color: #86868b;
        margin: 0;
    }
    .group-reviews-card__comment {
        flex: 1;
        font-size: 0.85rem;
        color: #1d1d1f;
        line-height: 1.4;
        margin: 0;
        min-height: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .group-reviews-card__meta {
        display: none;
    }
    .group-google-reviews-fallback {
        margin-top: 0.75rem;
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 12px;
        background: #ffffff;
        padding: 0.75rem;
    }
    .group-google-reviews-fallback__title {
        font-size: 0.85rem;
        font-weight: 600;
        color: #6f6f75;
        margin-bottom: 0.5rem;
    }
    .group-google-reviews-fallback__list {
        max-height: 280px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        padding-right: 0.25rem;
    }
    .group-google-reviews-fallback__item {
        background: #fafafa;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 10px;
        padding: 0.6rem 0.7rem;
    }
    .group-google-reviews-fallback__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.35rem;
    }
    .group-google-reviews-fallback__name {
        font-size: 0.82rem;
        font-weight: 600;
        color: #3f3f45;
    }
    .group-google-reviews-fallback__date {
        font-size: 0.75rem;
        color: #8c8c91;
        white-space: nowrap;
    }
    .group-google-reviews-fallback__stars i {
        font-size: 0.72rem;
    }
    .group-google-reviews-fallback__text {
        font-size: 0.82rem;
        color: #4a4a50;
        line-height: 1.35;
        margin: 0;
        white-space: pre-wrap;
    }
    .group-google-reviews-fallback__empty {
        font-size: 0.82rem;
        color: #8c8c91;
        text-align: center;
        margin: 0;
        padding: 0.65rem 0;
    }
    .group-reviews-voir-tous-card {
        width: auto;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 0;
        height: 50px;
        padding: 0.5rem 1rem;
        border-radius: 70px;
        cursor: pointer;
        background: #ffefeb !important;
        border: none !important;
        color: #F9A392;
        font-size: 0.9rem;
        font-weight: 500;
        transition: background 0.2s, color 0.2s;
    }
    .group-reviews-voir-tous-card:hover {
        background: #FEF1EF !important;
        color: #e89382;
    }
    .group-reviews-voir-tous-card__label {
        display: block;
        font-weight: 350;
        margin-bottom: 0;
        line-height: 1.3;
    }
    .group-reviews-voir-tous-card__count {
        display: block;
        font-size: 0.7rem;
        font-weight: 400;
        opacity: 0.9;
        margin-top: 0.15rem;
    }
    .group-global-reviews {
        padding: 16px 0 28px;
        background: #fff;
    }
    .group-global-reviews__summary {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-bottom: 1.2rem;
    }
    .group-global-reviews__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    .group-global-reviews__filter {
        min-width: 260px;
        max-width: 420px;
        width: 100%;
    }
    .group-global-reviews__filter .form-control {
        border-radius: 12px;
        min-height: 44px;
        background: #f5f5f7;
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #1d1d1f;
    }
    .group-global-reviews__rating {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1d1d1f;
    }
    .group-global-reviews__count {
        color: #86868b;
        font-size: 0.92rem;
    }
    .group-global-reviews__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .group-global-reviews__card {
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        background: #fff;
        padding: 1rem;
    }
    .group-global-reviews__header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
        margin-bottom: 0.6rem;
    }
    .group-global-reviews__identity {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        min-width: 0;
    }
    .group-global-reviews__avatar {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 700;
        background: linear-gradient(135deg, #8b7bb8 0%, #6b5b95 100%);
        flex-shrink: 0;
    }
    .group-global-reviews__name {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1d1d1f;
        line-height: 1.25;
    }
    .group-global-reviews__date {
        font-size: 0.75rem;
        color: #86868b;
        margin-top: 0.1rem;
    }
    .group-global-reviews__comment {
        margin: 0;
        font-size: 0.9rem;
        color: #1d1d1f;
        line-height: 1.5;
    }
    .group-global-reviews__stars .fa-star {
        font-size: 0.8rem;
    }
    .group-global-reviews__stars .text-warning {
        color: #ffc107 !important;
    }
    .group-global-reviews__empty {
        color: #86868b;
        font-size: 0.9rem;
        margin: 0;
        display: none;
    }
    @media (max-width: 991.98px) {
        .group-global-reviews__cards {
            grid-template-columns: 1fr;
        }
        .group-global-reviews__filter {
            min-width: 0;
            max-width: 100%;
        }
    }
    /* Modal tous les avis */
    .group-reviews-modal .modal-dialog {
        max-width: 520px;
    }
    .group-reviews-modal .modal-content {
        border-radius: 20px;
        border: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    .group-reviews-modal-body {
        max-height: 60vh;
        overflow-y: auto;
    }
    .group-reviews-modal-card {
        padding: 1rem;
        background: #fafafa;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 0.75rem;
        display: flex;
        gap: 1rem;
    }
    .group-reviews-modal-card:last-of-type {
        margin-bottom: 0;
    }
    .group-reviews-modal-card__left {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    .group-reviews-modal-card__stars {
        margin: 0 0 0.2rem;
    }
    .group-reviews-modal-card__stars .fa-star {
        font-size: 0.85rem;
        margin-right: 0.05rem;
    }
    .group-reviews-modal-card__name {
        display: block;
        font-size: 0.85rem;
        color: #1d1d1f;
        font-weight: 500;
        white-space: nowrap;
    }
    .group-reviews-modal-card__date {
        font-size: 0.75rem;
        color: #86868b;
        margin: 0;
    }
    .group-reviews-modal-card__comment {
        flex: 1;
        font-size: 0.9rem;
        color: #1d1d1f;
        line-height: 1.5;
        margin: 0;
    }
    .group-reviews-modal-card__meta {
        display: none;
    }

    @media (max-width: 767.98px) {
        .group-places-section {
            padding: 40px 0 30px;
        }
        .group-places__title {
            font-size: 1.8rem;
            margin-bottom: 24px;
        }
        .group-places__item-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .group-places__img-wrapper {
            border-radius: 12px;
        }
        .group-places__img {
            min-height: 220px;
        }
    }
    @media (max-width: 767.98px) {
        .group-salons-section {
            padding: 40px 0 30px;
        }
        .group-salons-header h2 {
            font-size: 2rem;
        }
        .group-salons-item {
            width: 300px;
            height: 380px;
        }
        .group-salons-headline {
            font-size: 1.3rem;
        }
    }

    /* Galerie d'images - cartes en quinconce, sans ombre, sans scroll horizontal */
    .group-gallery {
        padding: 40px 0 40px;
        background: #fff;
    }
    .group-gallery-grid {
        display: grid;
        gap: 14px;
        grid-auto-rows: 260px;
    }
    /* 4 images : grande/petite | petite/grande */
    .group-gallery-grid[data-gallery-count="4"] {
        grid-template-columns: repeat(3, 1fr);
    }
    .group-gallery-grid[data-gallery-count="4"] .group-gallery-card:nth-child(1) { grid-column: 1 / 3; }
    .group-gallery-grid[data-gallery-count="4"] .group-gallery-card:nth-child(2) { grid-column: 3 / 4; }
    .group-gallery-grid[data-gallery-count="4"] .group-gallery-card:nth-child(3) { grid-column: 1 / 2; }
    .group-gallery-grid[data-gallery-count="4"] .group-gallery-card:nth-child(4) { grid-column: 2 / 4; }
    /* 5 images : grande/petite/petite | grande/grande */
    .group-gallery-grid[data-gallery-count="5"] {
        grid-template-columns: repeat(4, 1fr);
    }
    .group-gallery-grid[data-gallery-count="5"] .group-gallery-card:nth-child(1) { grid-column: 1 / 3; }
    .group-gallery-grid[data-gallery-count="5"] .group-gallery-card:nth-child(2) { grid-column: 3 / 4; }
    .group-gallery-grid[data-gallery-count="5"] .group-gallery-card:nth-child(3) { grid-column: 4 / 5; }
    .group-gallery-grid[data-gallery-count="5"] .group-gallery-card:nth-child(4) { grid-column: 1 / 3; }
    .group-gallery-grid[data-gallery-count="5"] .group-gallery-card:nth-child(5) { grid-column: 3 / 5; }
    /* Autres nombres : grille 4 colonnes par défaut */
    .group-gallery-grid:not([data-gallery-count="4"]):not([data-gallery-count="5"]) {
        grid-template-columns: repeat(4, 1fr);
    }
    .group-gallery-grid:not([data-gallery-count="4"]):not([data-gallery-count="5"]) .group-gallery-card:nth-child(4n+1) { grid-column: 1 / 3; }
    .group-gallery-grid:not([data-gallery-count="4"]):not([data-gallery-count="5"]) .group-gallery-card:nth-child(4n+2) { grid-column: 3 / 5; }
    .group-gallery-grid:not([data-gallery-count="4"]):not([data-gallery-count="5"]) .group-gallery-card:nth-child(4n+3) { grid-column: 2 / 4; }
    .group-gallery-grid:not([data-gallery-count="4"]):not([data-gallery-count="5"]) .group-gallery-card:nth-child(4n+4) { grid-column: 4 / 5; }
    .group-gallery-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        background: #000;
        min-height: 260px;
    }
    .group-gallery-media {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center center;
        transform: scale(1.04);
        transition: transform 0.6s ease-out, filter 0.6s ease-out;
        /* plus aucun filtre de luminosité */
        filter: none;
    }
    .group-gallery-card::before {
        /* suppression de l'assombrissement : plus de gradient au-dessus de l'image */
        content: '';
        position: absolute;
        inset: 0;
        background: transparent;
        z-index: 1;
        pointer-events: none;
    }
    .group-gallery-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 18px 22px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }
    .group-gallery-kicker {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        opacity: 0.85;
        margin-bottom: 0.4rem;
    }
    .group-gallery-title {
        font-size: 1.15rem;
        font-weight: 600;
        line-height: 1.3;
        margin: 0;
    }
    .group-gallery-card:hover .group-gallery-media {
        transform: scale(1.06);
        filter: brightness(0.95);
    }
    @media (min-width: 992px) {
        .group-gallery-grid {
            grid-auto-rows: 300px;
        }
    }
    @media (max-width: 767.98px) {
        .group-gallery {
            padding-top: 32px;
            padding-bottom: 36px;
            padding-left: 0;
            padding-right: 0;
            position: relative;
        }
        .group-gallery .container {
            padding-left: 0;
            padding-right: 0;
        }
        /* Sur mobile : scroll horizontal comme les témoignages de la homepage */
        .group-gallery-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 16px;
            overflow-x: auto;
            overflow-y: visible;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 20px 24px;
            margin-left: -20px;
            margin-right: -20px;
        }
        .group-gallery-grid::-webkit-scrollbar {
            display: none;
        }
        .group-gallery-card {
            flex: 0 0 280px;
            width: 280px;
            min-height: 280px;
            grid-column: unset !important;
        }
        .group-gallery-title {
            font-size: 1rem;
        }
        /* Boutons paddle pour la galerie mobile */
        .group-gallery .group-gallery-paddle-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
            padding: 0 20px;
        }
    }
    /* Paddle nav caché sur desktop */
    .group-gallery .group-gallery-paddle-nav {
        display: none;
    }
    .group-gallery .group-gallery-paddle-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #1d1d1f;
    }
    .group-gallery .group-gallery-paddle-btn:hover:not(:disabled) {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.1);
    }
    .group-gallery .group-gallery-paddle-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .group-gallery .group-gallery-paddle-btn svg {
        width: 20px;
        height: 20px;
    }
    #groupSalonsMap {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }
    .map-container {
        border-radius: 12px;
        overflow: hidden;
    }
    
    /* Centrer les cartes des employés */
    .team.mx-auto {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Ombre sur les cartes des employés */
    .team {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: box-shadow 0.3s ease;
    }
    
    .team:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Corriger l'affichage des images des employés */
    .team img.img-fluid {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
    /* (anciens styles du carrousel d'images supprimés - remplacés par .group-gallery) */
    
    /* Styles pour la carte en mobile */
    @media (max-width: 991.98px) {
        .contact-map-col {
            margin-top: -1.5rem;
        }
        /* Réduire le padding-top du container de l'onglet contact en mobile */
        .contact-page-container {
            padding-top: 1rem !important;
        }
    }
    

    
    /* Styles pour les liens des réseaux sociaux */
    .social-network-link:hover {
        background: #ffffff !important;
        border-color: currentColor !important;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Modal S'abonner aux établissements */
    .group-subscribe-modal-content {
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: none;
    }
    .group-subscribe-modal-content .modal-title {
        font-weight: 600;
        color: #1d1d1f;
    }
    .group-subscribe-list {
        border-radius: 12px;
    }
    .group-subscribe-item {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    .group-subscribe-item:first-child {
        border-top: none;
    }
    .group-subscribe-item:hover {
        background: #f5f5f7;
    }
    .group-header-bell-wrap {
        margin-left: 1rem;
    }
