/* ==========================================
   Style page d'accueil - Couleurs marque rose/violet
   ========================================== */

:root {
    --mondial-brand: #D91AA8;
    --mondial-brand-dark: #6B2A80;
    --mondial-brand-light: #E04DB8;
    --mondial-accent: var(--color-accent, #FFD700);
    --mondial-accent-light: #FFE566;
    --mondial-gray: #666;
    --mondial-header-height: 108px;
}

/* Header - badge & mail au-dessus du logo */
.page-mondial .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: auto;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.logo-badge {
    display: inline-block;
    background: var(--mondial-brand, #D91AA8);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1.2;
}

/* Header Mondial — PC vs téléphone */
.page-mondial .mondial-header-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.page-mondial .mondial-header-mobile {
    display: none;
    width: 100%;
}

.mondial-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.mondial-header-fixed.header--hidden {
    transform: translateY(-100%);
}

.logo-email {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--mondial-brand, #D91AA8);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.logo-email:hover {
    opacity: 0.75;
}

.logo-email svg {
    flex-shrink: 0;
    stroke: var(--mondial-brand, #D91AA8);
}

.page-mondial .header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

.page-mondial .header.show {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-mondial .nav-link {
    color: var(--mondial-brand-dark);
    font-size: 17px;
    font-weight: 500;
}

.page-mondial .nav-link:hover,
.page-mondial .nav-link--highlight {
    color: var(--mondial-brand);
    font-weight: 600;
}

.page-mondial .phone {
    color: var(--mondial-brand-dark);
}

.page-mondial .btn-nous-appelez {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--mondial-brand);
    border: 2px solid var(--mondial-brand);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.page-mondial .btn-nous-appelez:hover {
    background: var(--mondial-brand);
    color: #fff;
}

.page-mondial .btn-nous-appelez:hover svg {
    stroke: #fff;
}

.page-mondial .btn-nous-appelez svg {
    flex-shrink: 0;
}

.page-mondial .btn-prendre-rdv {
    background: var(--mondial-brand);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
}

.page-mondial .btn-prendre-rdv:hover {
    background: var(--mondial-brand-dark);
}

.page-mondial .btn-login {
    color: var(--mondial-brand);
    border-color: var(--mondial-brand);
}

.page-mondial .btn-login:hover {
    background: var(--mondial-brand);
    color: #fff;
}

.page-mondial .user-name {
    color: var(--mondial-brand-dark);
}

.page-mondial .btn-logout {
    color: var(--mondial-brand);
    border-color: var(--mondial-brand);
}

.page-mondial .btn-logout:hover {
    background: var(--mondial-brand);
    color: #fff;
}

/* Header — utilisateur connecté */
.page-mondial .header-right.is-connected {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.page-mondial .mondial-user-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.page-mondial .mondial-user-bar__profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f7f2fa;
    border-radius: 50px;
    max-width: 180px;
}

.page-mondial .mondial-user-bar__icon {
    flex-shrink: 0;
    stroke: var(--mondial-brand-dark);
}

.page-mondial .mondial-user-bar__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--mondial-brand-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.page-mondial .mondial-user-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: 2px solid var(--mondial-brand-dark);
    color: var(--mondial-brand-dark);
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    min-height: 44px;
    box-sizing: border-box;
}

.page-mondial .mondial-user-bar__btn:hover {
    background: var(--mondial-brand-dark);
    color: #fff;
}

.page-mondial .mondial-user-bar__btn--admin {
    border-color: var(--mondial-brand);
    color: var(--mondial-brand);
}

.page-mondial .mondial-user-bar__btn--admin:hover {
    background: var(--mondial-brand);
    color: #fff;
    border-color: var(--mondial-brand);
}

.page-mondial main {
    padding-top: var(--mondial-header-height, 118px);
    background: #fff;
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
}

.page-mondial .offres-section .offres-desktop-title,
.page-mondial .offres-section .offres-desktop-title strong,
.page-mondial .offres-section .offres-desktop-subtitle {
    color: #1a1a1a !important;
}

.page-mondial .offres-section > .container > p {
    color: #555 !important;
}

/* HERO MONDIAL */
.mondial-hero {
    background: #fff;
    padding: 55px 24px 0;
    overflow: hidden;
}

.mondial-hero__container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    min-height: 600px;
}

.mondial-hero__left h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
}

.mondial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mondial-rating__stars {
    color: var(--mondial-accent);
    font-size: 22px;
    letter-spacing: 3px;
}

.mondial-rating__text {
    font-size: 15px;
    color: var(--mondial-gray);
}

.mondial-features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}

.mondial-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 18px;
    color: #444;
    line-height: 1.45;
}

.mondial-features li span:not(.mondial-features__arrow) {
    font-weight: 400;
    color: #1a1a1a;
}

.mondial-features li strong {
    color: var(--mondial-brand);
    font-weight: 600;
}

.mondial-features__arrow {
    color: var(--mondial-brand);
    font-size: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.mondial-cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn-mondial-rdv,
.btn-mondial-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 18px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-mondial-rdv {
    background: var(--mondial-brand);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--mondial-accent);
}

.btn-mondial-contact {
    background: var(--mondial-accent);
    color: var(--mondial-brand-dark);
    box-shadow: inset 4px 0 0 var(--mondial-accent-light);
    white-space: normal;
}

.btn-mondial-contact__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-align: left;
}

.btn-mondial-contact__number {
    font-weight: 700;
}

.btn-mondial-rdv:hover,
.btn-mondial-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 42, 128, 0.3);
}

.btn-mondial-rdv:hover {
    background: var(--mondial-brand-dark);
}

.btn-mondial-contact:hover {
    background: #f0c800;
    color: var(--mondial-brand-dark);
}

.mondial-urgence {
    font-size: 15px;
    color: var(--mondial-gray);
}

.mondial-urgence strong {
    font-weight: 700;
}

.mondial-urgence a {
    color: var(--mondial-brand);
    font-weight: 700;
    text-decoration: underline;
}

/* Hero promo 200€ */
.mondial-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mondial-hero-promo {
    width: 100%;
    max-width: 520px;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px 60px 60px 20px;
    overflow: hidden;
}

.mondial-hero-promo__img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    display: block;
    border-radius: 60px 60px 60px 20px;
}

/* TROUVER UN CENTRE */
.mondial-centre {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 270px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.mondial-centre__photo {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
}

.mondial-centre__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.9);
    display: block;
}

.mondial-centre__content {
    background: linear-gradient(135deg, var(--mondial-brand) 0%, var(--mondial-brand-dark) 100%);
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mondial-centre__circle {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.mondial-centre__pins {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28%;
    min-width: 150px;
    max-width: 220px;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='32' viewBox='0 0 24 32'%3E%3Cpath fill='%23fff' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 20 12 20s12-11 12-20C24 5.4 18.6 0 12 0zm0 16c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 28px 36px;
    background-position: right top;
    pointer-events: none;
}

.mondial-centre__content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.mondial-centre__content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.mondial-centre__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mondial-centre__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
    background: #fff;
    color: var(--mondial-brand-dark);
    border: 2px solid #fff;
}

.mondial-centre__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mondial-centre__btn--outline {
    background: transparent;
    color: #fff;
}

.mondial-centre__btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .mondial-hero__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mondial-hero__right {
        order: -1;
    }

    .mondial-hero-promo {
        min-height: 280px;
        max-width: 100%;
        border-radius: 40px;
    }

    .mondial-hero-promo__img {
        max-height: 320px;
        border-radius: 40px;
    }

    .mondial-centre {
        grid-template-columns: 1fr;
    }

    .mondial-centre__photo {
        min-height: 220px;
    }

    .mondial-centre__photo img {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    :root {
        --mondial-header-height: 96px;
    }

    body.page-mondial .mondial-header-desktop {
        display: none !important;
    }

    body.page-mondial .mondial-header-mobile {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        padding: 0 2px;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-top .logo-badge {
        font-size: 7px;
        padding: 3px 8px;
        flex-shrink: 0;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-top__email {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: var(--mondial-brand-dark, #6B2A80);
        text-decoration: none;
        font-size: 10px;
        font-weight: 600;
        padding: 4px 8px;
        border: 1px solid rgba(217, 26, 168, 0.25);
        border-radius: 50px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-top__email svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    body.page-mondial .mondial-header-fixed.header--hidden {
        transform: none;
        pointer-events: auto;
    }

    body.page-mondial .header {
        padding: 6px 0;
    }

    body.page-mondial .mondial-header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
    }

    body.page-mondial main {
        padding-top: var(--mondial-header-height, 96px) !important;
        padding-bottom: 88px;
        transition: padding-top 0.28s ease-in-out;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo nav actions";
        align-items: center;
        gap: 4px 6px;
        width: 100%;
    }

    body.page-mondial .mondial-header-mobile .logo-link {
        grid-area: logo;
    }

    body.page-mondial .mondial-header-mobile .logo-link img,
    body.page-mondial .mondial-header-mobile .logo-img {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 130px !important;
        width: auto !important;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-nav {
        grid-area: nav;
        display: flex;
        justify-content: flex-start;
        gap: 6px;
        flex: unset;
        min-width: 0;
    }

    body.page-mondial .mondial-header-mobile .mondial-header-nav .nav-link {
        font-size: 11px !important;
        padding: 2px 4px !important;
        white-space: nowrap;
    }

    body.page-mondial .mondial-header-mobile .header-right {
        grid-area: actions;
        gap: 4px;
        margin-left: 0;
    }

    body.page-mondial .mondial-header-mobile .btn-nous-appelez {
        padding: 8px;
        font-size: 0;
        min-width: 36px;
        min-height: 36px;
        justify-content: center;
    }

    body.page-mondial .mondial-header-mobile .btn-nous-appelez span:not(.btn-nous-appelez__icon) {
        display: none;
    }

    body.page-mondial .mondial-header-mobile .btn-login {
        padding: 6px 10px;
        font-size: 10px;
        white-space: nowrap;
    }

    body.page-mondial .mondial-header-mobile .mondial-user-bar__profile {
        padding: 6px 8px;
        max-width: 90px;
    }

    body.page-mondial .mondial-header-mobile .mondial-user-bar__name {
        font-size: 10px;
    }

    body.page-mondial .mondial-header-mobile .mondial-user-bar__btn {
        padding: 6px 10px;
        font-size: 10px;
        min-height: 34px;
    }

    .logo-top {
        gap: 6px;
    }

    .logo-badge {
        font-size: 7px;
        padding: 3px 8px;
    }

    .logo-email {
        font-size: 9px;
    }

    .mondial-hero__left h1 {
        font-size: 32px;
    }

    .mondial-cta-buttons {
        flex-direction: column;
    }

    .btn-mondial-rdv,
    .btn-mondial-contact {
        width: 100%;
        justify-content: center;
    }

    .btn-mondial-contact__text {
        align-items: center;
        text-align: center;
    }

    .mondial-centre__content {
        padding: 36px 24px;
    }

    .mondial-centre__content h2 {
        font-size: 26px;
    }

    .mondial-centre__actions {
        flex-direction: column;
    }

    .mondial-centre__btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .page-mondial .btn-nous-appelez span:not(.btn-nous-appelez__icon) {
        display: none;
    }

    .page-mondial .btn-nous-appelez {
        padding: 10px 14px;
    }

    .page-mondial .header-right.is-connected {
        gap: 6px;
    }

    .page-mondial .mondial-user-bar {
        gap: 6px;
    }

    .page-mondial .mondial-user-bar__profile {
        padding: 8px 10px;
        max-width: 120px;
    }

    .page-mondial .mondial-user-bar__name {
        font-size: 12px;
    }

    .page-mondial .mondial-user-bar__btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 38px;
    }

    .page-mondial .mondial-user-bar__btn--logout span {
        display: none;
    }

    .page-mondial .mondial-user-bar__btn--logout::after {
        content: 'Sortir';
    }
}

/* ==========================================
   CTA section — boutons violet (comme le footer)
   ========================================== */

.page-mondial .btn-cta-rdv,
.page-mondial .btn-cta-phone {
    background-color: var(--mondial-brand-dark, #6B2A80);
    box-shadow: 0 10px 30px rgba(107, 42, 128, 0.3);
}

.page-mondial .btn-cta-rdv:hover,
.page-mondial .btn-cta-phone:hover {
    background-color: #572068;
    box-shadow: 0 15px 40px rgba(107, 42, 128, 0.4);
}

/* ==========================================
   Footer style Mondial - rose/violet
   ========================================== */

.mondial-footer {
    position: relative;
    background: linear-gradient(160deg, var(--mondial-brand-dark, #6B2A80) 0%, #4a1d5c 55%, #3a1748 100%);
    color: #fff;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}

.mondial-footer__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.06;
}

.mondial-footer__watermark img {
    width: min(420px, 70vw);
    height: auto;
    filter: brightness(0) invert(1);
}

.mondial-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 36px;
}

.mondial-footer__logo {
    text-align: center;
    margin-bottom: 40px;
}

.mondial-footer__logo img {
    height: 56px;
    width: auto;
    max-width: 240px;
}

.mondial-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 40px;
    margin-bottom: 40px;
}

.mondial-footer__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.mondial-footer__subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--mondial-accent, #FFD700);
    margin: 18px 0 8px;
}

.mondial-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mondial-footer__links li {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.92;
}

.mondial-footer__links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.mondial-footer__links a:hover {
    color: var(--mondial-accent, #FFD700);
    opacity: 1;
}

.mondial-footer__contact {
    font-size: 13px;
    line-height: 1.6;
    margin: 10px 0 0;
    opacity: 0.9;
}

.mondial-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    padding-top: 8px;
}

.mondial-footer__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    padding: 10px;
}

.mondial-footer__badge-icon {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--mondial-accent, #FFD700);
}

.mondial-footer__badge--gold {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--mondial-accent, #FFD700);
}

.mondial-footer__badge-rating {
    font-size: 18px;
    font-weight: 800;
    color: var(--mondial-accent, #FFD700);
}

.mondial-footer__badge--green {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(129, 199, 132, 0.6);
}

.mondial-footer__badge--silver {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 200, 200, 0.4);
}

.mondial-footer__badge-small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

.mondial-footer__legal {
    background: #1a0f22;
    padding: 14px 20px;
    text-align: center;
}

.mondial-footer__legal p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.mondial-footer__legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.mondial-footer__legal a:hover {
    color: var(--mondial-accent, #FFD700);
}

.mondial-footer__legal-sep {
    margin: 0 8px;
    opacity: 0.4;
}

/* Boutons flottants droite - style pilule vertical */
.mondial-floating-panel {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(40px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mondial-floating-panel.is-scroll-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.mondial-floating-panel.is-mobile-bottom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mondial-floating-panel__inner {
    display: flex;
    align-items: stretch;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.mondial-floating-panel.is-user-collapsed .mondial-floating-panel__inner {
    transform: translateX(calc(100% + 12px));
    opacity: 0;
    pointer-events: none;
}

.mondial-floating-panel__close {
    align-self: center;
    width: 34px;
    height: 34px;
    margin-right: 6px;
    border: 1px solid #d0d0d8;
    border-radius: 6px;
    background: #f4f4f6;
    color: #555;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mondial-floating-panel__close:hover {
    background: #e8e8ec;
    color: #333;
}

.mondial-floating-panel__close:active {
    background: #ddd;
}

.mondial-floating-panel__pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 4px;
}

.mondial-float-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 96px;
    padding: 18px 10px 16px;
    border-radius: 48px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(107, 42, 128, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    background: linear-gradient(180deg, var(--mondial-brand, #D91AA8) 0%, var(--mondial-brand-dark, #6B2A80) 100%);
    color: #fff;
}

.mondial-float-pill:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 28px rgba(107, 42, 128, 0.45);
}

.mondial-float-pill:active {
    transform: translateX(-2px) scale(0.98);
}

.mondial-float-pill__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
}

.mondial-float-pill__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.2px;
    color: #fff;
}

.mondial-floating-panel__reopen {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 72px;
    border: none;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(135deg, var(--mondial-brand, #D91AA8), var(--mondial-brand-dark, #6B2A80));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 0 16px rgba(107, 42, 128, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mondial-floating-panel__reopen[hidden] {
    display: none !important;
}

.mondial-floating-panel.is-scroll-visible.is-user-collapsed .mondial-floating-panel__reopen {
    display: flex;
}

.mondial-floating-panel__reopen:hover {
    transform: translateY(-50%) translateX(-2px);
}

.page-mondial .footer {
    display: none;
}

@media (max-width: 1024px) {
    .mondial-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mondial-footer__inner {
        padding: 36px 16px 28px;
    }

    .mondial-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mondial-footer__badges {
        justify-content: center;
    }

    .mondial-footer__badge {
        width: 96px;
        height: 96px;
        font-size: 10px;
    }

    .mondial-footer__legal-sep {
        display: none;
    }

    .mondial-footer__legal p {
        font-size: 11px;
    }

    .mondial-floating-panel {
        top: auto;
        bottom: 16px;
        right: 8px;
        transform: translateY(20px);
    }

    .mondial-floating-panel.is-scroll-visible,
    .mondial-floating-panel.is-mobile-bottom {
        transform: translateY(0);
    }

    .mondial-floating-panel.is-user-collapsed .mondial-floating-panel__inner {
        transform: translateX(calc(100% + 8px));
    }

    .mondial-floating-panel__inner {
        flex-direction: row-reverse;
        align-items: flex-end;
    }

    .mondial-floating-panel__close {
        display: none;
    }

    .mondial-floating-panel__pills {
        flex-direction: row;
        gap: 8px;
        padding-right: 0;
    }

    .mondial-floating-panel__reopen {
        top: auto;
        bottom: 0;
        transform: none;
        width: 32px;
        height: 48px;
        border-radius: 10px 0 0 10px;
    }

    .mondial-floating-panel__reopen:hover {
        transform: translateX(-2px);
    }

    .mondial-float-pill {
        width: 64px;
        padding: 8px 6px 7px;
        border-radius: 32px;
    }

    .mondial-float-pill:hover {
        transform: translateY(-2px);
    }

    .mondial-float-pill__icon-wrap {
        width: 36px;
        height: 36px;
        margin-bottom: 4px;
    }

    .mondial-float-pill__icon-wrap svg {
        width: 18px;
        height: 18px;
    }

    .mondial-float-pill__label {
        font-size: 9px;
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .mondial-float-pill {
        width: 56px;
        padding: 7px 5px 6px;
    }

    .mondial-float-pill__icon-wrap {
        width: 32px;
        height: 32px;
    }

    .mondial-float-pill__icon-wrap svg {
        width: 16px;
        height: 16px;
    }

    .mondial-float-pill__label {
        font-size: 8px;
    }
}

/* ==========================================
   Section avis - carte rotative
   ========================================== */

.avis-flip-section {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    padding: 80px 20px 88px;
}

.avis-flip-panel {
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fef7fc 0%, #f9eef6 50%, #f5e8f2 100%);
    border: 1px solid rgba(217, 26, 168, 0.08);
    border-radius: 32px;
    padding: 44px 40px 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(107, 42, 128, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.avis-flip-panel__head {
    margin-bottom: 32px;
}

.avis-flip-panel__tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mondial-brand, #D91AA8);
    margin: 0 0 14px;
    opacity: 0.85;
}

.avis-flip-panel__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.avis-flip-panel__highlight {
    color: var(--mondial-brand-dark, #6B2A80);
}

.avis-carousel__viewport {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.avis-carousel__viewport.is-dragging {
    cursor: grabbing;
    touch-action: none;
}

.avis-carousel__viewport.is-dragging .avis-carousel__slide {
    pointer-events: none;
}

.avis-carousel__track {
    display: flex;
    gap: 0;
    will-change: transform;
    backface-visibility: hidden;
}

.avis-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
}

.loop-carousel__track.is-animated {
    transition: transform var(--loop-carousel-duration, 0.45s) cubic-bezier(0.22, 1, 0.36, 1);
}

.avis-flip-card {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(107, 42, 128, 0.06);
    border-radius: 20px;
    padding: 28px 32px 24px;
    text-align: left;
    box-shadow: 0 2px 16px rgba(107, 42, 128, 0.06);
    overflow: hidden;
}

.avis-flip-card__quote {
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
    color: rgba(217, 26, 168, 0.12);
    pointer-events: none;
    user-select: none;
}

.avis-flip-card__text {
    position: relative;
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0 0 22px;
    padding-top: 8px;
    min-height: 100px;
}

.avis-flip-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f2f2f4;
}

.avis-flip-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.avis-flip-card__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mondial-brand, #D91AA8), var(--mondial-brand-dark, #6B2A80));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-flip-card__author-info {
    min-width: 0;
    text-align: left;
}

.avis-flip-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.avis-flip-card__service {
    font-size: 12px;
    color: #888;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.avis-flip-card__stars {
    flex-shrink: 0;
    color: var(--mondial-brand, #D91AA8);
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1;
}

@media (max-width: 600px) {
    .avis-flip-section {
        padding: 56px 16px 64px;
    }

    .avis-flip-panel {
        padding: 32px 20px 28px;
        border-radius: 24px;
    }

    .avis-flip-card {
        padding: 24px 20px 20px;
    }

    .avis-flip-card__text {
        font-size: 14px;
        min-height: 110px;
    }

    .avis-flip-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .avis-flip-card__stars {
        align-self: flex-start;
    }
}

/* ── Offres hub (4 cartes) ── */
.page-mondial .mondial-offres-hub {
    background: #fff;
    padding: 72px 20px 80px;
}

.page-mondial .mondial-offres-hub__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--mondial-brand-dark, #6B2A80);
    text-align: center;
    margin: 0 auto 48px;
    max-width: 900px;
    line-height: 1.25;
}

.page-mondial .mondial-offres-hub__highlight {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.page-mondial .mondial-offres-hub__highlight::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 14px;
    background: rgba(217, 26, 168, 0.28);
    border-radius: 4px;
    z-index: -1;
}

.page-mondial .mondial-offres-hub__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.page-mondial .mondial-offre-card {
    text-align: center;
    padding: 0 8px 12px;
}

.page-mondial .mondial-offre-card--frame {
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    padding: 28px 16px 32px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-mondial .mondial-offre-card__visual {
    margin-bottom: 20px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-mondial .mondial-offre-card__visual img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.page-mondial .mondial-offre-card__visual--compact img {
    max-height: 140px;
}

.page-mondial .mondial-offre-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--mondial-brand-dark, #6B2A80);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    line-height: 1.2;
}

.page-mondial .mondial-offre-card__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--mondial-brand-dark, #6B2A80);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: -4px 0 12px;
}

.page-mondial .mondial-offre-card__text {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.page-mondial .mondial-offres-hub__footer {
    text-align: center;
    margin: 48px auto 0;
    font-size: 15px;
    color: #444;
    max-width: 720px;
    line-height: 1.6;
}

.page-mondial .mondial-offres-hub__footer a {
    color: var(--mondial-brand-dark, #6B2A80);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-mondial .mondial-offres-hub__footer a:hover {
    color: var(--mondial-brand, #D91AA8);
}

@media (max-width: 1100px) {
    .page-mondial .mondial-offres-hub__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
    }
}

@media (max-width: 600px) {
    .page-mondial .mondial-offres-hub {
        padding: 56px 16px 64px;
    }

    .page-mondial .mondial-offres-hub__title {
        margin-bottom: 36px;
    }

    .page-mondial .mondial-offres-hub__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .page-mondial .mondial-offre-card--frame {
        padding: 24px 18px 28px;
    }
}

/* ── Promo cadeaux ── */
.page-mondial .mondial-cadeau-promo {
    background: linear-gradient(135deg, var(--mondial-brand, #D91AA8) 0%, var(--mondial-brand-dark, #6B2A80) 100%);
    padding: 56px 20px 64px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-mondial .mondial-cadeau-promo__circle {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.page-mondial .mondial-cadeau-promo__pins {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 26%;
    min-width: 140px;
    max-width: 240px;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='32' viewBox='0 0 24 32'%3E%3Cpath fill='%23fff' d='M12 0C5.4 0 0 5.4 0 12c0 9 12 20 12 20s12-11 12-20C24 5.4 18.6 0 12 0zm0 16c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 28px 36px;
    background-position: right top;
    pointer-events: none;
    z-index: 0;
}

.page-mondial .mondial-cadeau-promo__inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.page-mondial .mondial-cadeau-promo__head {
    margin-bottom: 28px;
    max-width: 640px;
}

.page-mondial .mondial-cadeau-promo__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}

.page-mondial .mondial-cadeau-promo__subtitle {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.page-mondial .mondial-cadeau-promo__panel {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    padding: 24px 20px 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-mondial .mondial-cadeau-carousel {
    margin-bottom: 0;
}

.page-mondial .mondial-cadeau-carousel__viewport {
    overflow: hidden;
    padding: 4px 2px 8px;
    cursor: grab;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

.page-mondial .mondial-cadeau-carousel__viewport.is-dragging {
    cursor: grabbing;
    touch-action: none;
}

.page-mondial .mondial-cadeau-carousel__viewport.is-dragging .mondial-cadeau-slide {
    pointer-events: none;
}

.page-mondial .mondial-cadeau-slide__visual img {
    -webkit-user-drag: none;
    user-drag: none;
}

.page-mondial .mondial-cadeau-carousel__track {
    display: flex;
    gap: 18px;
    will-change: transform;
    backface-visibility: hidden;
}

.page-mondial .mondial-cadeau-carousel__track.is-animated {
    transition: transform var(--loop-carousel-duration, 0.45s) cubic-bezier(0.22, 1, 0.36, 1);
}

.page-mondial .mondial-cadeau-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 28px rgba(49, 10, 38, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.page-mondial .mondial-cadeau-slide__visual {
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 16px;
    background: linear-gradient(180deg, #fff 0%, #fcecf7 100%);
}

.page-mondial .mondial-cadeau-slide--product .mondial-cadeau-slide__visual img {
    max-width: 92%;
    max-height: 168px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(107, 42, 128, 0.12));
}

.page-mondial .mondial-cadeau-slide--graphic .mondial-cadeau-slide__visual {
    padding: 10px 12px;
    background: #fff;
}

.page-mondial .mondial-cadeau-slide--graphic .mondial-cadeau-slide__visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 190px;
    object-fit: contain;
    object-position: center;
}

.page-mondial .mondial-cadeau-slide__copy {
    text-align: center;
    padding: 16px 14px 18px;
    background: #fff;
    border-top: 1px solid #f3e3ef;
}

.page-mondial .mondial-cadeau-slide__line1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a6d96;
}

.page-mondial .mondial-cadeau-slide__line2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    color: var(--mondial-brand-dark, #6B2A80);
}

.page-mondial .mondial-cadeau-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.page-mondial .mondial-cadeau-carousel__arrow {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--mondial-brand-dark, #6B2A80);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.page-mondial .mondial-cadeau-carousel__arrow svg {
    display: block;
}

.page-mondial .mondial-cadeau-carousel__arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    background: var(--mondial-brand-dark, #6B2A80);
    color: #fff;
}

.page-mondial .mondial-cadeau-carousel__arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.page-mondial .mondial-cadeau-promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    margin-top: 24px;
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--mondial-brand-dark, #6B2A80);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.page-mondial .mondial-cadeau-promo__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
    .page-mondial .mondial-cadeau-slide {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

@media (max-width: 600px) {
    .page-mondial .mondial-cadeau-promo {
        padding: 44px 16px 52px;
    }

    .page-mondial .mondial-cadeau-promo__head {
        margin-bottom: 22px;
    }

    .page-mondial .mondial-cadeau-promo__title {
        font-size: 26px;
    }

    .page-mondial .mondial-cadeau-promo__subtitle {
        font-size: 15px;
    }

    .page-mondial .mondial-cadeau-promo__pins {
        width: 22%;
        opacity: 0.22;
    }

    .page-mondial .mondial-cadeau-promo__panel {
        padding: 18px 14px 22px;
        border-radius: 22px;
    }

    .page-mondial .mondial-cadeau-slide {
        flex: 0 0 100%;
    }

    .page-mondial .mondial-cadeau-slide__visual {
        min-height: 180px;
    }

    .page-mondial .mondial-cadeau-slide--graphic .mondial-cadeau-slide__visual img {
        min-height: 180px;
    }
}
