/* ------------------------------
   VARIABLES GLOBALES
--------------------------------*/
:root {
    --primary: #0ea5e9;
    --accent: #0284c7;
    --bg: #f1f5f9;
    --text: #1e293b;
    --muted: #64748b;
    --radius: 14px;
    --range: #a5f3fc; /* turquoise clair */
}

/* ------------------------------
   RESET
--------------------------------*/
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

h1, h2, h3, h4 {
    margin: 0 0 12px;
}

.section {
    margin: 40px auto;
    max-width: 1250px;
    padding: 0 20px;

    display: block; /* 🔥 au lieu de flex */
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ------------------------------
   HEADER
--------------------------------*/
.site-header {
    background: linear-gradient(135deg, #0e7490, #14b8a6);
    color: #fff;
    padding: 6px 0;
}

/* ============================================================
   HEADER — règle unique (fusionnée)
============================================================ */
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-title {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}

.header-title h1 {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    white-space: normal;
}

.header-sub {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.88;
    font-style: italic;
}

.rose-des-vents {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.rose-des-vents svg {
    width: 100%;
    height: auto;
    display: block;
}

.rose-des-vents svg defs linearGradient stop:nth-child(1) { stop-color: #0e7490; }
.rose-des-vents svg defs linearGradient stop:nth-child(2) { stop-color: #14b8a6; }

@media (max-width: 768px) {
    .header-inner {
        padding: 6px 12px;
        gap: 8px;
    }
    .logo {
        height: 48px;
    }
    .rose-des-vents {
        width: 40px;
        height: 40px;
    }
    .header-title h1 {
        font-size: 1.15rem;
    }
    .header-sub {
        font-size: 0.82rem;
    }
}

/* --------------------------------
   HERO / BANNIÈRE
-------------------------------- */
/* HERO IMAGE PREMIUM */
.hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    height: 50vh;
    min-height: 280px;
    max-height: 60vh;

    background-image: url("../images/Camping-les-charmettes-la-palmyre-piscine-desktop.jpg");
    background-size: cover;
    background-position: 70% 60%;
    background-repeat: no-repeat;

    border-radius: 0 !important;
    overflow: hidden;
    position: relative;

    transition: transform 0.7s ease !important;
}

.hero-banner:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.40); /* noir plus clair */
}

.hero-overlay p {
    margin: 0;
    font-size: 1.5rem; /* plus petit */
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    color: #00a0a0; /* turquoise du header */
    background: rgba(0, 0, 0, 0.40); /* fond noir légèrement transparent */
    backdrop-filter: blur(3px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-caption {
    margin-top: 35px;   /* ajuste la valeur selon ton rendu */
}

.hero-caption p {
    font-family: "Poppins", "Nunito", "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #2c4a6b;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.25;
    letter-spacing: 0.3px;
    text-align: left;
    padding-left: 20px;
}

/* BANNIERE PROMO  *//* =========================
   FIX BANNIÈRE PROMO FINAL
========================= */
/* =========================
   BANNIÈRE PROMO CLEAN
========================= */

#promo-banner {
    width: calc(100% - 32px); /* 🔥 espace sur les côtés */
    max-width: 1100px;

    margin: 20px auto;
    padding: 14px 20px;

    background: linear-gradient(90deg, #ff6a00, #ff2d00);
    color: white;

    border-radius: 12px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

        font-weight: 600;
    line-height: 1.4;

    box-shadow: 0 6px 18px rgba(255, 80, 0, 0.25);
}

/* TEXTE */
#promo-banner-text {
    font-size: 26px;        /*/////////////////// 🔥 taille texte promo ////////////////*/
}

/* % */
#promo-banner strong {
    font-size: 18px;                
    font-weight: 700;
}

/* animation douce */
@keyframes pulseSoft {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

#promo-banner {
    animation: pulseSoft 4s infinite;
}

/* =========================
   BONUS : version urgence (option JS)
========================= */

.promo-urgent {
    background: linear-gradient(90deg, #ff0000, #ff4d4d);
}

/* ------------------------------
   RÉSUMÉ + INFOS PRATIQUES
--------------------------------*/
.highlights-list li {
    font-size: 18px;
    font-weight: 700;
    color: #000;          /* noir comme demandé */
    margin-bottom: 10px;
    line-height: 1.45;
}

.highlights-list li{
font-weight:400;
line-height:1.5;
margin-bottom:6px;
}

.resume-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* colonne droite élargie */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: start; /* aligne parfaitement les deux colonnes */
}


/* TITRE GAUCHE */
.resume-left h2 {
    color: #007a7a; /* turquoise foncé du header */
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 900;
}

.resume-left h2 {
    text-align: left;
}

/* LISTE DES POINTS FORTS */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.highlights-list r {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

/* BOÎTE ANIMAUX */
.animals-box {
    background: #fff5f5;
    border-left: 2px solid #e11d48; /* bordure plus fine */
    padding: 4px 8px;               /* plus compact */
    border-radius: 5px;
    font-size: 14px;
    color: #b91c1c;
    margin-top: 8px;
    line-height: 1.25;
    display: inline-block;          /* ne prend plus toute la largeur */
}


/* COLONNE DROITE */
.resume-section {
    display: grid;
    grid-template-columns: 2fr 1.2fr; /* colonne droite élargie */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: start; /* aligne les deux colonnes en haut */
}

.resume-card {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-left: 5px solid #007a7a; /* turquoise foncé */
}

.resume-card li {
    margin-bottom: 4px;      /* lignes resserrées */
    font-size: 17.5px;       /* un peu plus grand */
    line-height: 1.35;
    color: #444;
}

.resume-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #007a7a;          /* turquoise foncé du header */
}

.resume-card p {
    margin: 6px 0;
    font-size: 16px;
    color: #444;
}


/* ------------------------------
   PHOTOS TRIPLES
--------------------------------*/
.triple-photos-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* 📸 PHOTOS PREMIUM */
.triple-photo {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 220px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* effet léger (pro) */
.triple-photo:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.lightbox-btn {
    position: absolute;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 1.2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-size: 0.9rem;
}


/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 🔥 clé */
    display: block;
}

.lightbox-btn {
    position: absolute;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 1.4rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   DESCRIPTIF PREMIUM
========================= */

.full-description {
    padding: 30px 20px 20px;
}

/* TITRE */
.full-description h2 {
    font-size: 30px;      /* 🔥 plus grand */
    font-weight: 800;
    color: #007a7a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.full-description h2 {
    margin-top: 0;
}

/* 🔥 soulignement premium */
.full-description h2::after {
    content: "";
    display: block;
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #14b8a6);
    margin-top: 8px;
    border-radius: 3px;
}

/* INTRO */
.desc-intro {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
}

/* GRID */
.desc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* 🔥 compact */
    margin-top: 25px; /* 🔥 espace entre titre et blocs */
}

/* BLOCS */
.desc-block {
    background: #f8fafc;
    padding: 14px 16px; /* 🔥 réduit hauteur */
    border-radius: 12px;

    border-left: 4px solid #0ea5e9;

    transition: all 0.25s ease;
}

/* HOVER PREMIUM */
.desc-block:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* TITRES BLOCS */
.desc-block h4 {
    font-size: 20px;     /* 🔽 TITRES DES MINI BLOCS */
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

/* LISTES */
.desc-block ul {
    padding-left: 16px;
    margin: 0;
    line-height: 1.4;
}

.desc-block li {
    font-size: 16px;   /* 🔥 LIGNES TEXTES */
    line-height: 1.5;
    margin-bottom: 5px;
    color: #334155;
}

/* TEXTE */
.desc-block p {               /* FUN PASS */
    font-size: 14px;
    line-height: 1.5;
}

/* NOTE FUN PASS */
.desc-note {
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

.desc-block ul {
    padding-left: 18px;
}

.desc-block li::marker {
    color: #0ea5e9; /* 🔥 petit détail premium */
}

/* ------------------------------
   OPTIONS + RÉSUMÉ
--------------------------------*/
/* GRID PREMIUM */
.premium-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.8fr;
    gap: 30px;
    margin-top: 30px;

    align-items: stretch; /* 🔥 LE FIX */
}

/* OPTIONS */
.options-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.options-card li:last-child {
    border-bottom: none;
}

.opt-label {
    flex: 1; /* le texte prend toute la place à gauche */
}

.opt-label span {
    font-weight: 600;
    font-size: 14px;
    font-size: 1.15rem; /* plus lisible */
}

.opt-label small {
    font-size: 0.95rem;
    color: #555;
}

.opt-control {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* prix + select alignés à droite */
    justify-content: center;
    gap: 4px;
    min-width: 90px; /* garantit l’alignement vertical */
}

.opt-control span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A5F;
}

.opt-control select,
.opt-control input[type="checkbox"] {
    margin-top: 4px;
}


/* SUMMARY */
.summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
}

.summary-card .summary-row.total {
    font-size: 26px;     /* 🔥 plus gros */
    font-weight: 800;
    color: #16a34a;      /* vert confiance */
}

.summary-card .summary-row.acompte {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

.summary-card hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.summary-card {
    font-size: 14px;
}

.resa-btn {
    padding: 12px 20px;
    background: #2c7be5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.resa-btn:hover {
    background: #1b5bbf;
}



.options-summary-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.options-summary-grid > .card {
    flex: 1;
    min-width: 280px;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

/* ============================================================
   🟩 OPTIONS — VERSION COMPACTE (remplace la hauteur par défaut)
============================================================ */
.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0; /* 🟩 réduit la hauteur */
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
}

.options-list li:last-child {
    border-bottom: none;
}

.opt-label {
    display: flex;
    flex-direction: column;
    gap: 2px; /* 🟩 espace minimal */
    font-size: 14px;                            
    line-height: 1.2;
}

.opt-control {
    text-align: right;
    font-size: 14px;
    line-height: 1.2;
}

.opt-control span {
    display: block;
    margin-bottom: 2px;
}

.opt-check {
    transform: scale(1.1);
    cursor: pointer;
}


.options-list small {
    color: var(--muted);
    font-size: 0.8rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-total {
    font-size: 1.2rem;
    font-weight: bold;
}

.summary-conditions {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.summary-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 0px;
    font-family: system-ui, sans-serif;
}

.summary-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    margin: 4px 0;
    font-size: 16px;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding: 4px 0; /* 🔥 plus compact */
    line-height: 1.2;
}

.summary-row.acompte {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px; /* 🔥 rapproche du bouton */
}

.summary-card hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Harmonisation du bloc Options avec le Résumé */
/* Hauteur premium du bloc Options */
.options-box,
.options-container,
.card.options {
    margin: 0 auto 20px auto;   /* même centrage + même espace */
}

/* ------------------------------
   BOUTONS
--------------------------------*/
.btn-main {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-main:hover {
    background: var(--accent);
}

.stripe-block {
    display: none !important;
}



/* ------------------------------
   FORMULAIRE
--------------------------------*/
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field textarea {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #ccc;
}

/* =========================
   MAP FIX SOLIDE
========================= */

.map-wrapper {
    max-width: 1100px;
    margin: 40px auto;
}

.map-container {
    width: 100%;
    height: 400px !important; /* 🔥 force la hauteur */
    min-height: 400px;        /* 🔥 sécurité */
    border-radius: 16px;
    overflow: hidden;
}

/* 🔥 CRUCIAL */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: 0;
}

/* FOOTER */
.map-footer {
    background: #ffffff;
    padding: 14px 18px;

    border-radius: 0 0 16px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* TEXTE devant les boutons*/
.map-footer p {
    margin: 0;
    font-size: 16px;        /* 🔥 un peu plus grand */
    font-weight: 600;     /* 🔥 plus lisible */
    color: #0f172a;       /* plus contrasté */
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.map-footer {
    display: flex;
    justify-content: flex-start; /* 🔥 au lieu de space-between */
    align-items: center;
    gap: 15px; /* espace entre texte et bouton */
}

/* BOUTON */
.map-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;

    padding: 10px 16px;
    border-radius: 15px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;

}

.map-btn:hover {
    transform: translateY(-2px);
}

/* ------------------------------
   LIGHTBOX
--------------------------------*/
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--radius);
    background: transparent !important;
}

.lightbox-btn {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 8px 14px;
    cursor: pointer;
}

.lightbox-btn.close {
    position: fixed; /* 🔥 comme les flèches */
    top: 20px;       /* ↓ descend un peu */
    right: max(20px, calc(50vw - 450px));     /* ← décale du bord */
}

.lightbox-btn.prev {
    position: absolute;
    left: -50px; /* 🔥 collé à l’image */
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn.next {
    position: absolute;
    right: -50px; /* 🔥 collé à l’image */
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    text-align: center;
    color: white;
    margin-top: 10px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
    text-align: center;
    padding: 20px;
    color: var(--muted);
    margin-top: 40px;
}

/* ------------------------------
   DIVERS
--------------------------------*/
.center {
    text-align: center;
}

.muted {
    font-size: 12.5px;
    color: #94a3b8;
    letter-spacing: 0.2px;
}

.days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    grid-auto-rows: auto;
    gap: 4px !important;
}

.day, .empty {
    min-height: 40px;
    box-sizing: border-box;
}

.resume-left h2{
position:relative;
margin-bottom:12px;
}

.resume-left h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#007a7a;
margin-top:6px;
border-radius:3px;
}

.resume-card ul {
    padding-left: 0;
    margin: 0;
    list-style: none; /* on enlève les puces */
}

.resume-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1E3A5F;
    line-height: 1.4;
}

.resume-card h3 {
    position: relative;
    padding-left: 28px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1E3A5F;
}

.resume-card h3::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
}


/* Icône premium devant chaque ligne */
.resume-card ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

/* Style général des lignes — flex pour alignement icône garanti sur mobile */
.resume-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1E3A5F;
    line-height: 1.4;
}

/* Icône flex — alignement garanti sur mobile */
.resume-card ul li::before {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

/* Icônes thématiques */
.resume-card ul li:nth-child(1)::before { content: "🕒"; } /* Arrivée / Départ */
.resume-card ul li:nth-child(2)::before { content: "💶"; } /* Taxe de séjour */
.resume-card ul li:nth-child(3)::before { content: "🅿️"; } /* Parking */
.resume-card ul li:nth-child(4)::before { content: "🚧"; } /* Barrière véhicules */
.resume-card ul li:nth-child(5)::before { content: "📶"; } /* Wifi */
.resume-card ul li:nth-child(6)::before { content: "🛒"; } /* Supérette / services */
.resume-card ul li:nth-child(7)::before { content: "⛳"; } /* Mini golf */
.resume-card ul li:nth-child(8)::before { content: "🎢"; } /* Luna Park */
.resume-card ul li:nth-child(9)::before { content: "🏖️"; } /* Plage */
.resume-card ul li:nth-child(10)::before { content: "🏋️"; } /* Salle de Fitness */


/*BOUTON FUNPASS*/
/* Alignement du bouton sous les lignes */
.funpass-btn-box {
    margin-top: 12px;        /* ← espace au-dessus du bouton */
    padding-left: 20px;     /* ← même alignement que les li */
}

/* Style du bouton (clair, doux, premium) */
.funpass-btn {
    display: inline-block;
    background: #e8f0fa;          /* ← couleur de fond douce */
    color: #1E3A5F;               /* ← couleur du texte */
    padding: 8px 14px;            /* ← taille du bouton */
    border-radius: 6px;           /* ← arrondi */
    border: 1px solid #c9d9ee;    /* ← bordure douce */
    font-size: 0.95rem;           /* ← taille du texte du bouton */
    font-weight: 600;             /* ← gras du bouton */
    text-decoration: none;
    transition: 0.2s ease;        /* ← animation hover */
}

/* Effet hover */
.funpass-btn:hover {
    background: #dbe7f7;          /* ← couleur au survol */
    border-color: #b8cbe4;        /* ← bordure au survol */
}


/* ============================================================
   🟩 Bouton WhatsApp PREMIUM (SVG + dégradé + hover)
============================================================ */
.summary-whatsapp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch; /* 🔥 important */
    padding: 0; /* 🔥 on enlève le décalage */
}

.whatsapp-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    margin: 0 auto; /* 🔥 centre parfaitement */

    box-sizing: border-box;

    background: linear-gradient(135deg, #25d366, #4be37c);
    color: white;

    padding: 16px;
    border-radius: 12px;

    font-size: 17px;
    font-weight: bold;

    text-decoration: none;

    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

button {
  padding: 12px 18px;
  font-size: 16px;
}

.wa-svg {
    width: 22px;
    height: 22px;
}

.cta-info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 3px;
}

.wa-svg {
    width: 22px;
    height: 22px;
}

.cta-info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 3px;
}

.options-card {
    font-size: 16px;
}

.resume-left {
    font-size: 15.5px;
}

.resume-card {
    font-size: 15.5px;
}
.resume-section {
    gap: 40px;
}



.promo-active {
    background: linear-gradient(135deg, #ff3b3b, #ff0000);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    border: none;
}

/* 🔥 effet pulse net (pas flou) */
.promo-active {
    animation: promoPulse 1.2s infinite;
}

@keyframes promoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 18px rgba(255, 0, 0, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    }
}

/* ========================================
   BOUTON WHATSAPP STICKY
======================================== */
#wa-sticky.promo {
    background: linear-gradient(135deg, #ff6b00, #ff3d00);
}

/* ========================================
   BOUTON WHATSAPP NORMAL
======================================== */

#whatsapp-dynamic {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 🔥 BOUTON PROMO WHATSAPP */
#whatsapp-dynamic.promo-active {
    background: linear-gradient(135deg, #ff6b00, #ff2d00);
    color: white;
    font-weight: 700;

    box-shadow: 0 6px 18px rgba(255, 80, 0, 0.4);
    border: none;

    animation: promoPulse 1.4s infinite;
}

/* effet pulse PRO (pas agressif) */
@keyframes promoPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

#calendar-info {
    display: none;

    background: #3498db;
    color: white;

    padding: 10px 15px;
    border-radius: 8px;

    font-weight: bold;
    text-align: center;

    margin-bottom: 10px;
    max-width: 90%;

    /* 🔥 FIX FLEX */
    align-self: center;
    width: auto;

    animation: fadeIn 0.3s ease;
}

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

#whatsapp-dynamic {
    display: inline-block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* 🖱️ PC */
#whatsapp-dynamic:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(255, 80, 0, 0.6);
}

/* 📱 MOBILE (tap) */
#whatsapp-dynamic:active {
    transform: scale(0.95);
}

.summary-card {
    scroll-margin-top: 80px;
}

#whatsapp-dynamic:hover {
    transform: scale(1.04);
}

/* ========================================
   STICKY ANIMATION (Airbnb style)
======================================== */
#wa-sticky {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    width: 320px;
    max-width: 90%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 9999;

    transition: all 0.25s ease;
}

/* icône stable */
#wa-sticky .icon {
    width: 24px;
    text-align: center;
}

/* animations SAFE (sans casser le centrage) */
#wa-sticky.hide {
    opacity: 0;
    transform: translate(-50%, 20px);
}

#wa-sticky.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

#wa-sticky:active {
    transform: translateX(-50%) translateY(0) scale(0.97);
}

/* 📸 PHOTOS PREMIUM */
.triple-photo {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 220px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* effet au hover */
.triple-photo:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* 📸 TITRE ALBUM PHOTO */
.section h2 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 📸 TITRE ALBUM PHOTO */
.section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.hero-banner {
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    filter: brightness(1.15) contrast(1.05) saturate(1.08);
    transition: filter 0.3s ease;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.10);     /* 🔥 OVERLAY photo principale moins sombre */
}

/* ========================================
   📸 GALERIE STYLE AIRBNB
======================================== */

.photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

/* grande image */
.photo-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* colonne droite */
.photo-small {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

.photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.section.card h2 {
    display: block;
}

/* 🔥 SUPPRIME ESPACE AU DESSUS DES PHOTOS */
.section.card:first-of-type {
    padding-top: 0 !important;
}

.section.card:has(.photo-grid) {
    padding-top: 0 !important;
}

/* couleurs promo */
#promo-banner.promo-low {
    background: linear-gradient(90deg, #ff9a3c, #ff6a00);
}

#promo-banner.promo-mid {
    background: linear-gradient(90deg, #ff6a00, #ff2d00);
}

#promo-banner.promo-high {
    background: linear-gradient(90deg, #ff2d00, #cc0000);
}

#promo-banner.promo-high {
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

/* animation % */
#promo-banner strong {
    animation: pulsePercent 1.5s infinite;
}

@keyframes pulsePercent {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

#promo-banner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    line-height: 1.35;
    padding: 14px 20px;
}

#promo-banner strong {
    font-size: 1.2em;
}


.photos-title {
    display: none;
}

.resume-left h2 {
    font-weight: 700;
}

.resume-left,
.resume-left h2,
.resume-left ul {
    text-align: left !important;
}

.highlights-list {
    font-size: 18px;          /* 🔥 un peu plus grand */
    line-height: 1.8;         /* plus lisible */
}

.highlights-list li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.resume-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* 🔥 gauche un peu plus large */
    gap: 20px;
    align-items: stretch;
}


.resume-left,
.resume-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resume-right {
    border-left: 20px solid rgba(0,0,0,0.05);
    padding-left: 16px;
}

.funpass-btn {
    display: inline-block;

    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;

    padding: 14px 20px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;

    text-align: center;
    line-height: 1.3;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);

    transition: all 0.2s ease;
}

.funpass-btn span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

/* hover */
.funpass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.resume-section {
    gap: 30px;
}

.photos-section {
    padding: 0;
    background: transparent;
}

.photo-grid figure {
    margin: 0;
}

.triple-photos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

.photo-small {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

.triple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.photo-grid figcaption {
    display: none;
}

.photo-grid {
    align-items: stretch;
}

/* FLÈCHES FIXES À L’ÉCRAN */
.lightbox-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-btn.prev {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn.next {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-btn {
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
}

.lightbox-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

html {
    scroll-behavior: smooth;
}

.lightbox-btn.close:hover {
    transform: scale(1.1); /* 🔥 sans translateY */
}

/* 🔥 TEXTE URGENCE (WhatsApp / réservation) */
.cta-urgent {
    margin-top: 6px !important;
    font-size: 12px !important;
    color: #64748b !important;   /* gris doux */
    text-align: center !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.card h3 {
    font-size: 26px;    /* ///////////////// TAILLES DES TITRES OPTION ET RESUME //////////*/
    font-weight: 700;
    margin-bottom: 16px;
    color: #007a7a;
}

.options-card li {
    display: grid;
    grid-template-columns: 1fr 90px; /* texte | colonne prix+checkbox */
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.options-card li:last-child {
    border-bottom: none;
}

.opt-control span {
    color: #0f172a;
}

.summary-card {
    border: 2px solid #e0f2fe;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.summary-card:hover {
    border-color: #38bdf8;
}



.opt-control span {
    font-size: 0.95rem;   /* 🔥 plus discret */
    font-weight: 600;     /* moins agressif */
    color: #334155;       /* gris foncé (plus doux) */
}

.options-card li {
    padding: 6px 0;
    line-height: 1.3;
}

.opt-label span {
    font-size: 16px;
}

.opt-label small {
    display: block;
    margin-top: 2px;
}

.opt-control {
    min-width: 80px; /* évite que ça saute */
}

.summary-row:last-child {
    border-bottom: none;
}

/* 🔥 NOUVEAU CADRE GLOBAL */
.booking-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* 🔥 SUPPRIME DOUBLE CARTE */
.options-card,
.summary-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* 🔥 ESPACE ENTRE LES 2 BLOCS */
.premium-grid {
    gap: 30px;
}

/* 🔥 SÉPARATION PRO */
.summary-card {
    border-left: 1px solid #e5e7eb;
    padding-left: 25px;
}

.section-wide {
    max-width: 1600px; /* 🔥 même largeur que ton hero-caption */
}

.options-card h3,
.summary-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    height: 32px;
    display: flex;
    align-items: center;
}

.summary-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.options-card li {
    padding: 6px 0; /* 🔥 réduit hauteur */
}

.summary-card {
    padding: 18px 30px; /* 🔥 plus d’air à droite */
    min-width: 420px;   /* 🔥 élargit le bloc */
}

.premium-grid {
    grid-template-columns: 1.5fr 2fr; /* 🔥 résumé plus large = effet rectangle */
}

.summary-row.total {
    border-top: none;      /* 🔥 supprime ligne */
    margin-top: 6px;
    padding-top: 6px;
}

.summary-card {
    max-width: 520px;
}

.section-wide {
    max-width: 1400px; /* 🔥 augmente */
}

.booking-box {
    max-width: 1100px;  /* 🔥 clé */
    margin: 0 auto;
}

.booking-box {
    padding: 30px 35px; /* 🔥 plus généreux */
}

.booking-box {
    padding: 30px 35px; /* 🔥 plus généreux */
}

.summary-card {
    padding: 22px 28px;
    border-radius: 16px;

    border: 2px solid #bae6fd; /* 🔥 plus visible */
    background: linear-gradient(180deg, #ffffff, #f0f9ff);
}

.options-card {
    font-size: 16.5px;
}

.section {
    justify-content: center;
}

.lightbox-inner img {
    transition: transform 0.4s ease;
}

.lightbox-inner img:hover {
    transform: scale(1.02);
}

.lightbox-inner {
    position: relative;
}

.lightbox-inner img {
    position: relative;
    z-index: 1;
}

.lightbox-btn {
    position: fixed; /* 🔥 clé */
    z-index: 9999;
}

.lightbox-inner {
    overflow: visible;
}

.lightbox-btn {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    padding: 12px;
}

.options-card {
    padding: 10px 10px 10px 0; /* 🔥 moins serré à droite */
}

.options-list {
    padding-right: 10px; /* 🔥 espace côté prix */
}

.options-card li {
    padding: 12px 10px; /* 🔥 plus respirant */
}

.options-card {
    border: 2px solid #e0f2fe;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.options-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.options-card li:hover {
    background: #f8fafc;
    border-radius: 8px;
}

.card h3,
.calendar-title {
    font-size: 26px;
    font-weight: 700;  /* 🔥 plus impact */
    color: #007a7a;
    margin-bottom: 16px;
}

.calendar-title::after {
    content: "⌄";
    display: block;
    font-size: 40px;
    margin-top: 6px;
    color: #14b8a6;
}

.section h2,
.card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #007a7a;
}

.premium-grid {
    align-items: stretch;
}

.options-card {
    padding-top: 18px;
}

.summary-card {
    padding-top: 16px;  /* HAUTEUR TEXTE RESUME DU SEJOUR */
}

.options-card {
    padding-left: 24px;
}

.premium-grid {
    max-width: 1200px;
    margin: 0 auto;  /* 🔥 centre parfaitement */
}

.section-wide .premium-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-row {
    padding: 4px 0;        /* 🔥 au lieu de 6-10 */
    margin: 10px 0; /* 🔥 réduit l’espace */
    font-size: 15px;       /* léger ajustement */
    line-height: 1.2;
}

.options-card li {
    padding: 8px 0; /* 🔥 avant ~10-12 */
}

.opt-label span {
    font-size: 15px;
}

.summary-whatsapp {
    margin-top: 10px; /* 🔥 réduit (souvent trop grand) */
}

.summary-row.acompte {
    margin-bottom: 4px; /* 🔥 réduit fortement */
}

.summary-whatsapp {
    margin-top: 4px; /* 🔥 colle le bouton */
}

#wa-sticky .label {
    text-align: center;
}

/* 📅 mode choix */
#wa-sticky.choose {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* 📲 mode réservation */
#wa-sticky.ready {
    background: linear-gradient(135deg, #ff6b00, #ff3d00); /* 🔥 orange */
    animation: pulseSoft 1.5s infinite;
}

.full-description h2 {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #007a7a !important;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 18px;
}

.badges span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.badges span:hover {
    background: #bae6fd;
    transform: translateY(-1px);
}

.desc-note a {
    color: #0ea5e9;
    text-decoration: underline;
    font-weight: 500;
}

.desc-note a:hover {
    color: #0284c7;
}

.tourisme-banner {
    margin-top: 30px;
    padding: 22px;

    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: white;

    border-radius: 14px;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* TEXTE TOURISME BANNER */
.tourisme-banner {
    margin-top: 30px;
    padding: 22px;

    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: white;

    border-radius: 14px;
    text-align: left;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* TITRE SEO */
.tourisme-banner h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
}

/* TEXTE */
.tourisme-banner p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tourisme-banner {
    max-width: 1100px;   /* 🔥 limite la largeur */
    margin: 40px auto;   /* 🔥 centre + espace */
    padding: 26px 30px;  /* 🔥 plus aéré */

    border-radius: 16px;
}

/* LISTE */
.tourisme-list {
    margin: 0 0 15px;
    padding-left: 18px;
}

.tourisme-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 2 colonnes */
    gap: 8px 20px;

    padding-left: 0;
    list-style: none;
}

.tourisme-list li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
}

.tourisme-list li {
    background: rgba(255,255,255,0.15);
    padding: 8px 10px;
    border-radius: 8px;
}

/* BOUTON */
.tourisme-btn {
    display: inline-block;

    background: white;
    color: #0ea5e9;

    padding: 12px 18px;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.tourisme-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.badges {
    justify-content: flex-start; /* ou center si tu préfères */
}

.badges {
    margin-top: 8px;
}

body {
    padding-bottom: 50px;  /* 🔥 hauteur du sticky bas de page */
}

.summary-row.total {
    background: #f0fdf4;
    padding: 10px 12px;
    border-radius: 8px;
}

.summary-row.total {
    margin-top: 10px;
    margin-bottom: 10px;
}

.muted {
    text-align: center;
    font-size: 10px;
    color: #64748b;
    margin-bottom: 10px;
}

/* Phrases sous la map */
.map-info {
    text-align: center;
    font-size: 24px !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

/* conteneur boutons */
.map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* bouton zoo (couleur différente) */
.map-btn.zoo {
    background: #f59e0b; /* orange fun */
}

/* bouton plage (couleur différente) */
.map-btn.beach {
    background: linear-gradient(135deg, #bae6fd, #38bdf8);
    color: #0f172a;
    filter: brightness(1.05);
}

.full-description {
    padding: 35px 20px 25px;
}

.hero-caption p {
    max-width: 100%;
    line-height: 1.4;
}

.option-item.active {
    border: 2px solid var(--primary);
    background: #f0f9ff;
}

.card {
    padding: 18px;
}

#wa-sticky.ready {
    animation: pulseSoft 1.2s infinite;
}








.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* TEXTE GAUCHE */
.opt-label {
    font-size: 14px;
    line-height: 1.3;
}

/* DESCRIPTION ENTRE () */
.opt-desc {
    color: var(--muted);
    font-size: 0.9em;
    margin-left: 4px;
}

/* BLOC DROIT */
.opt-control {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* PRIX */
.price {
    font-weight: 600;
}

.options-list li {
    padding: 8px 0;
}

.opt-label {
    font-size: 13.5px;
}

.options-list li {
    min-height: 44px; /* zone tactile confortable */
}

.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.opt-label {
    min-width: 0;
}

.opt-text {
    white-space: nowrap;
}

.opt-desc {
    color: var(--muted);
    font-size: 0.9em;
    margin-left: 4px;
}

.opt-control {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.price {
    font-weight: 600;
}

.gallery img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

















/* =========================================================
   📱 VERSION MOBILE CLEAN (SAFE)
========================================================= */
@media (max-width: 768px) {

  /* HERO MOBILE FIX */
.hero-banner {
    height: 38vh;
    min-height: 260px;

    background-size: cover !important;
    background-position: center 70% !important;

    filter: brightness(1.1) contrast(1.03) saturate(1.05);
}

/* overlay plus léger sur mobile */
.hero-banner::after {
    background: rgba(0,0,0,0.08);
}

/* supprime zoom mobile */
.hero-banner:hover {
    transform: none;
}
    /* calendrier */
  .calendar-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .calendar {
    width: 100%;
    overflow-x: hidden;
  }

  /* galerie */
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-small {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .photo-small img {
    height: 100px;
  }

  .photo-main {
    height: 220px;
  }

  /* photos */
  .triple-photo {
    height: 180px;
  }

  .triple-photo:hover {
    transform: none;
    box-shadow: none;
  }

  /* sections */
  .section {
    flex-direction: column;
  }

  /* titres */
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }

  /* boutons */
  button,
  .btn {
    width: 100%;
  }

  /* formulaire */
  input,
  textarea {
    width: 100%;
    font-size: 16px;
  }

 .hero-caption p {
    font-size: 1.3rem;
    text-align: center;
    padding: 0 10px;
  }
}

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

/* mobile */
@media (max-width: 768px) {
  .hero-banner {
    background-image: url("../images/hero-mobile.jpg") !important;
    background-position: center;
    background-size: cover;
    border-radius: 0;
  }
}

@media (max-width: 900px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .full-description {
        padding: 20px;
    }

    .desc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .desc-block {
        padding: 12px;
    }

    .desc-block li {
        font-size: 14px;
    }

    .desc-intro {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .tourisme-list {
        grid-template-columns: 1fr;
    }
}

/* mobile */
@media (max-width: 600px) {
    .map-actions {
        flex-direction: column;
        width: 100%;
    }

    .map-btn {
        width: 100%;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .resume-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

  /* 🔥 plus d'air dans les blocs */
  .desc-block,
  .resume-card,
  .options-card {
    padding: 16px !important;
  }

  /* 🔥 texte plus lisible */
  .desc-block li,
  .resume-card li,
  .desc-block p {
    font-size: 15.5px;
    line-height: 1.5;
  }

  /* 🔥 espace entre lignes */
  .desc-block li {
    margin-bottom: 8px;
  }

  /* 🔥 espace entre blocs */
  .desc-grid {
    gap: 18px !important;
  }

}

@media (max-width: 768px) {
  .desc-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* ========================================
   🔥 FIX GLOBAL MOBILE + STRUCTURE
======================================== */

* {
    box-sizing: border-box;
}

body {
    padding-bottom: 80px;
}

/* =========================
   📱 SECTIONS
========================= */
.section {
    padding: 20px 15px;
}

@media (max-width: 768px) {
    .section {
        margin: 20px auto;
        padding: 15px;
    }
}

/* =========================
   📆 CALENDRIER MOBILE FIX
========================= */

@media (max-width: 768px) {

    .calendar-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .month {
        width: 100%;
        max-width: 350px;
    }

    .day {
        min-height: 42px;
        font-size: 13px;
    }

    /* cache 2e mois si présent */
    .month:nth-child(2) {
        display: none;
    }
}

/* =========================
   💥 OPTIONS VERSION MODERNE
========================= */

.options-list li {
    display: block !important;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* top ligne */
.options-list li .opt-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

/* bottom */
.options-list li .opt-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

/* select mobile */
.options-list select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
}

/* checkbox */
.opt-check {
    transform: scale(1.3);
}

/* =========================
   💰 RÉSUMÉ MOBILE
========================= */

@media (max-width: 768px) {

    .premium-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .summary-card {
        max-width: 100%;
        padding: 20px;
    }
}

/* =========================
   📲 CTA STICKY PRO
========================= */

#wa-sticky {
    bottom: 15px;
    width: 90%;
    max-width: 420px;
    font-size: 16px;
}


/* =========================
   🧾 FORMULAIRE
========================= */

@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================
   📍 MAP MOBILE
========================= */

@media (max-width: 768px) {

    .map-actions {
        flex-direction: column;
    }

    .map-btn {
        width: 100%;
        text-align: center;
    }
}

.opt-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.opt-label small {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.price {
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 40vh;
        min-height: 280px;
    }
}

@media (max-width: 768px) {

    .resume-section {
        gap: 25px;
    }

    .resume-card li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    .gallery {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .gallery img {
        flex: 0 0 90%;
        width: 100%;
        height: auto;
        border-radius: 12px;
        scroll-snap-align: start;
    }

}

.gallery {
    max-width: 100%;
}










/* =========================================================
   🔥 FIX FINAL MOBILE + LIGHTBOX + OPTIONS (SAFE)
   À METTRE TOUT EN BAS DU CSS
========================================================= */

/* ---------------------------
   📸 LIGHTBOX FIX MOBILE
--------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner img,
#lightbox-img {
    max-width: 95vw !important;
    max-height: 80vh !important;
    object-fit: contain;
}

/* flèches propres */
.lightbox-btn.prev {
    left: 10px !important;
}

.lightbox-btn.next {
    right: 10px !important;
}

/* ---------------------------
   📱 OPTIONS FIX OVERFLOW
--------------------------- */

.options-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.options-list {
    padding: 0;
    margin: 0;
}

.options-list li {
    width: 100%;
    box-sizing: border-box;
}

/* évite débordement texte */
.opt-label {
    min-width: 0;
}

/* texte reste sur 1 ligne propre */
.opt-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* sécurité globale images */
img {
    max-width: 100%;
    height: auto;
}

/* ===== FIX GALERIE MOBILE ===== */
@media (max-width: 768px) {

    .lightbox,
    .modal,
    .gallery-overlay {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.9);
        z-index: 9999;
        overflow: hidden;
    }

    .lightbox img,
    .modal img {
        max-width: 100%;
        max-height: 80vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
    }

    /* 🔥 CONTENEUR SLIDER */
    .lightbox-content,
    .modal-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    /* 🔥 BOUTONS */
    .lightbox button,
    .modal button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.4);
        border: none;
        color: white;
        font-size: 22px;
        padding: 10px;
        z-index: 10;
    }

    .lightbox .prev { left: 10px; }
    .lightbox .next { right: 10px; }

    /* ❌ supprime les bandes chelou */
    .lightbox::before,
    .lightbox::after {
        display: none !important;
    }

    body {
    overflow-x: hidden;
}

}

@media (max-width: 768px) {
    .lightbox button,
    .modal button {
        display: none;
    }

    .lightbox-content,
    .modal-content {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
    }

    .lightbox img,
    .modal img {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    #lightbox-prev,
    #lightbox-next {
        display: none;
    }

    .options-list li {
        padding: 12px;
    }

    .opt-control select {
        width: 100%;
    }
}

#lightbox {
    display: none;
}

#lightbox.open {
    display: flex;
}

.options-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;
}

.opt-label {
    min-width: 0;
    flex: 1;
}

.opt-control {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .options-list li {
        padding: 10px;
    }

    .opt-label {
        font-size: 13px;
    }

}

@media (max-width: 520px) {

    .options-list li {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .opt-label {
        width: 100%;
        font-size: 13px;
    }

    .opt-text {
        white-space: normal; /* autorise retour ligne */
    }

    .opt-control {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}

@media (max-width: 520px) {

    .summary-card {
        padding: 15px;
    }

    .summary-card div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .summary-card span {
        white-space: nowrap;
    }

}

@media (max-width: 520px) {

    .summary-card,
    .options-card {
        overflow: hidden;
    }

}

/* bloque scroll derrière */
body.lightbox-open {
    overflow: hidden;
}

/* évite débordement */
#lightbox {
    overflow: hidden;
}

@media (max-width: 420px) {

    /* ===== OPTIONS ===== */
    .options-list li {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
    }

    .opt-label {
        font-size: 13px;
        line-height: 1.3;
    }

    .opt-text {
        white-space: normal; /* autorise retour ligne */
    }

    .opt-control {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .opt-control select {
        max-width: 80px;
    }

    /* ===== RESUME ===== */
    .summary-card {
        padding: 12px;
    }

    .summary-card div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .summary-card span {
        font-size: 13px;
    }

}

@media (max-width: 420px) {

    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

}

@media (max-width: 420px) {

    .summary-card {
        padding: 10px;
        font-size: 13px;
    }

    .summary-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .summary-card div {
        display: flex;
        justify-content: space-between;
        gap: 6px;
        margin-bottom: 4px;
    }

    .summary-card span {
        font-size: 12.5px;
    }

}

@media (max-width: 420px) {

    .summary-card div {
        flex-wrap: wrap;
    }

    .summary-card div span:first-child {
        width: 60%;
    }

    .summary-card div span:last-child {
        width: 40%;
        text-align: right;
    }

}

.summary-card div {
    line-height: 1.2;
}

@media (max-width: 768px) {

    .day.reserved {
        background: #ccc !important;
        color: #666 !important;
    }

}

.day.reserved {
    opacity: 0.5;
}

.day.reserved {
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        #ccc,
        #ccc 5px,
        #eee 5px,
        #eee 10px
    );
}

#google-map {
    width: 100%;
    height: 300px; /* 🔥 important */
    border: 0;
}

.map-container {
    width: 100%;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

#google-map {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 520px) {

    .card,
    .options-card,
    .summary-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}

.options-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap; /* 🔥 IMPORTANT */
}

.summary-card {
    overflow: hidden;
}

#wa-sticky {
    right: 10px;
    left: 10px; /* 🔥 important */
    width: auto;
    max-width: 100%;
}

#wa-sticky {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 400px;
}

.map-container {
    width: 100%;
    height: 300px;
}

#google-map {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

.map-container iframe {
    filter: grayscale(10%);
}

@media (max-width: 520px) {

    .container {
        padding: 10px;
    }

    .card {
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 12px;
    }

}

@media (max-width: 520px) {

    .options-list li {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .opt-label {
        font-size: 14px;
        line-height: 1.3;
    }

    .opt-desc {
        display: inline;
        font-size: 12px;
        color: #64748b;
        margin-left: 4px;
    }

    .opt-control {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price {
        font-weight: 600;
    }

}

@media (max-width: 520px) {

    .summary-card {
        font-size: 14px;
    }

    .summary-card div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
    }

    #summary-total {
        font-size: 22px;
        font-weight: bold;
    }

}

#wa-sticky {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 420px;
    border-radius: 14px;
}

#wa-sticky.ready {
    background: linear-gradient(135deg, #10b981, #059669);
}

@media (max-width: 520px) {

    .day {
        font-size: 12px;
    }

    .week-price {
        font-size: 10px;
    }

}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

#wa-sticky.pulse {
    animation: pulse 0.6s ease;
}

.triple-photo {
    border-radius: 12px;
    overflow: hidden;
}

#wa-sticky {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.day.clicked {
    transform: scale(0.95);
}

@media (max-width: 520px) {

    h1, h2, h3, p {
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word;
    }

}

.hero-text {
    overflow: visible;
}

@media (max-width: 520px) {

    .summary-card,
    .options-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}

#wa-sticky {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 420px;
}

@media (max-width: 520px) {

    h1, h2, h3, p {
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word;
    }

    .hero-text,
    .intro,
    .description {
        overflow: visible !important;
    }

}

html, body {
    overflow-x: hidden;
}

.triple-photo {
    transition: transform 0.2s ease;
}

.triple-photo:active {
    transform: scale(0.97);
}

.lightbox img {
    pointer-events: none;
}

#wa-sticky {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 20px); /* 🔥 clé du fix */
    max-width: 500px;

    box-sizing: border-box;
    padding: 14px 16px;

    border-radius: 12px;
    z-index: 9999;
}

body {
    overflow-x: hidden;
}

#wa-sticky.ready {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
}

#wa-sticky.choose {
    background: #0ea5e9;
    color: white;
}

@media (max-width: 768px) {

    .premium-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .card {
        padding: 16px;
        border-radius: 12px;
    }

    .options-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .opt-label {
        flex: 1;
        font-size: 14px;
    }

    .opt-control {
        flex-shrink: 0;
    }

    .options-card input,
.options-card select {
    max-width: 80px;
}
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}





.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 15px;
    margin-bottom: 6px;
}

.summary-row span:last-child {
    font-weight: 600;
    font-size: 16px;
}

.summary-row.total span:last-child {
    font-size: 20px;
    font-weight: bold;
}

.summary-row.acompte strong {
    font-size: 18px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    max-width: 100%;

    padding: 10px;
    font-size: 15px;

    box-sizing: border-box;
}

.card {
    width: 100%;
    box-sizing: border-box;
}

#wa-sticky {
    position: fixed;
    bottom: 15px;

    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    max-width: 420px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 14px;
    border-radius: 12px;

    box-sizing: border-box;
    z-index: 9999;

    text-align: center;
}

#wa-sticky .label {
    flex: 1;
    min-width: 0;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#wa-sticky span {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

#wa-sticky.ready,
#wa-sticky.choose {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

#wa-sticky.ready,
#wa-sticky.choose {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.summary-card {
    width: 100%;
    max-width: 500px;

    margin: 0 auto; /* 🔥 centre parfaitement */

    box-sizing: border-box;
}

.summary-card {
    border: 2px solid #3b82f6;
    border-radius: 14px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px; /* 🔥 + lisible */
    margin-bottom: 8px;
}

.summary-row span:last-child {
    font-size: 17px;
    font-weight: 600;
}

.summary-row.total span:last-child {
    font-size: 22px;
    font-weight: bold;
    color: #16a34a;
}

.summary-row.acompte strong {
    font-size: 18px;
    color: #0ea5e9;
}

.summary-card {
    padding: 18px;
}

@media (max-width: 768px) {

    .summary-card {
        margin-top: 10px;
    }

    .summary-row {
        font-size: 15px;
    }

    .summary-row.total span:last-child {
        font-size: 20px;
    }
}

#wa-sticky {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    max-width: 420px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 14px;
    border-radius: 12px;

    box-sizing: border-box;
    z-index: 9999;
}

#wa-sticky .label {
    flex: 1;
    min-width: 0;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#wa-sticky.ready {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 18px rgba(34,197,94,0.4);
    color: white;
}

#wa-sticky.ready {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.03); }
    100% { transform: translateX(-50%) scale(1); }
}

.summary-card {
    width: 100%;
    max-width: 500px;

    margin-left: auto;
    margin-right: auto; /* 🔥 centre réel */

    box-sizing: border-box;
}

.premium-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 centre tout */
}

.summary-card {
    transform: none !important;
}

.summary-card {
    border: 2px solid #3b82f6;
    border-radius: 14px;
    padding: 18px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 18px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.summary-row.total span:last-child {
    font-size: 22px;
    font-weight: bold;
    color: #16a34a;
}

.price-per-night {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.acompte-box {
    background: #f0fdf4;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 15px;
}

.urgency {
    margin-top: 10px;
    font-size: 13px;
    color: #dc2626;
}

/* 🔥 CORRIGE débordement résumé mobile */
.summary-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* évite dépassement global */
body {
    overflow-x: hidden;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 380px; /* 🔥 fixe résumé */
    gap: 20px;
}

.options-card {
    min-width: 0; /* 🔥 CRUCIAL pour éviter overflow */
}

.options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.opt-label {
    flex: 1;
    min-width: 0;
}

.opt-control {
    flex-shrink: 0;
}

.summary-row.total span:last-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #16a34a;
}

* {
    box-sizing: border-box;
}

#wa-sticky {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 500px;
    z-index: 9999;
}

.booking-box {
    max-width: 1100px;
    margin: 0 auto; /* 🔥 centre tout */
    padding: 0 15px;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

@media (max-width: 768px) {

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

    .options-card,
    .summary-card {
        width: 100%;
        margin: 0 auto;
    }
}

.options-card,
.summary-card {
    box-sizing: border-box;
}

/* ==============================
   WRAPPER GLOBAL
============================== */
.booking-wrapper{
    display:flex;
    gap:20px;
    max-width:1100px;
    margin:0 auto;
    padding:0 15px;
}

/* ==============================
   BLOCS
============================== */
.options-container{
    flex:1;
    min-width:0;
}

.summary-card{
    width:360px;
    flex-shrink:0;
}

/* ==============================
   MOBILE
============================== */
@media(max-width:900px){

    .booking-wrapper{
        flex-direction:column;
    }

    .summary-card{
        width:100%;
    }
}

.options-container{
    max-width:100%;
}

.option-item{
    width:100%;
    box-sizing:border-box;
}

.opt-qty{
    width:100%;
    max-width:100%;
}

.summary-card{
    font-size:15px;
}

.summary-card .total{
    font-size:22px;
    font-weight:bold;
}

.summary-card .line{
    padding:4px 0;
}

.quick-links {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.quick-links a {
    display:block;
    text-align:center;
    padding:12px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.link-map { background:#4285F4; color:white; }
.link-site { background:#333; color:white; }
.link-review { background:#fbbc05; color:black; }

.quick-links {
    position:relative;
    z-index:10;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden; /* 🔥 indispensable */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.map-links {
    
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 10; /* 🔥 clé */
}

.map-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    background: #f1f1f1;
    color: #333;
    white-space: nowrap;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.map-actions {
    
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;

    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    z-index: 20; /* 🔥 CRUCIAL */
}

.map-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    padding: 6px 10px;
    border-radius: 6px;

    background: #f1f1f1;
    color: #333;

    transition: 0.2s;
}

.map-btn:hover {
    transform: scale(1.05);
}

.map-btn.zoo { background:#ffeaa7; }
.map-btn.beach { background:#81ecec; }
@media (max-width: 768px) {

    .map-actions {
        position: static;        /* 🔥 plus en overlay */
        transform: none;
        margin-top: 10px;

        display: flex;
        flex-direction: column;  /* 🔥 boutons en colonne */
        gap: 8px;

        background: none;        /* optionnel */
        box-shadow: none;        /* optionnel */
        padding: 0;
    }

}

@media (max-width: 768px) {

    .map-actions {
        position: relative;   /* 🔥 PAS static */
        transform: none;
        bottom: auto;
        left: auto;

        display: flex;
        flex-direction: column;
        gap: 10px;

        margin-top: 10px;
        width: 100%;
    }

    .map-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 320px; /* 🔥 obligatoire */
    border: 0;
    display: block;
}

.map-actions {
    
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;

    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 10;
}

@media (max-width: 768px) {

    .map-actions {
        position: relative;   /* 🔥 pas static */
        transform: none;
        left: auto;
        bottom: auto;

        margin-top: 10px;

        flex-direction: column;
        gap: 10px;

        background: white;
        box-shadow: none;
        padding: 0;
    }

    .map-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

}

@media (min-width: 769px) {

    .map-container {
        position: relative;
    }

    .map-actions {
        
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        gap: 10px;
        flex-wrap: wrap;

        background: rgba(255,255,255,0.95);
        padding: 10px;
        border-radius: 12px;

        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        z-index: 10;
    }

}

@media (max-width: 768px) {

    .map-actions {
        position: static;
        transform: none;

        display: flex;
        flex-direction: column;
        gap: 10px;

        margin-top: 10px;
    }

    .map-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

}

.map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 12px;
}

.map-footer {
    text-align: center;
    padding: 10px;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* PC → boutons sur la map */
.map-actions {
    
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;

    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 12px;

    z-index: 10;
}

/* MOBILE → boutons sous la map */
@media (max-width: 768px) {

    .map-actions {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;

        margin-top: 10px;
        flex-direction: column;
    }

    .map-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

}

/* TEXTE */
.map-info {
    margin-top: 10px;
    text-align: center;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* iframe SAFE */
.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* PC uniquement */
@media (min-width: 769px) {

    .map-actions {
        
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;

        background: rgba(255,255,255,0.95);
        padding: 10px;
        border-radius: 12px;

        z-index: 5; /* 🔥 pas trop élevé */
    }
}

/* MOBILE FIX TOTAL */
@media (max-width: 768px) {

    .map-container {
        overflow: visible; /* 🔥 CRUCIAL */
    }

    .map-actions {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;

        display: flex;
        flex-direction: column;
        gap: 10px;

        margin-top: 10px;
        z-index: auto;
    }

    .map-btn {
        width: 100%;
        padding: 12px;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .map-container {
        overflow: visible;
    }

    .map-actions {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;

        margin-top: 15px;

        display: flex;
        flex-direction: column;
        gap: 10px;

        width: 100%;
    }

    /* 🔥 FORCE visibilité */
    .map-actions a {
        display: block !important;
        width: 100%;
    }

}

.map-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-btn {
    display: block;
    padding: 12px;
    text-align: center;
    background: #f1f1f1;
    border-radius: 8px;
    font-weight: 600;
}

.map-info {
    margin: 25px auto;

    text-align: center;
    max-width: 600px;

    font-size: 15px;
    color: #444;

    line-height: 1.6;
}

.map-info {
    margin: 25px auto;
    padding: 15px;

    max-width: 600px;
    text-align: center;

    background: #f9f9f9;
    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-actions {
    display: flex;          /* 🔥 obligatoire */
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-top: 15px;
}

/* 🔥 FIX VISIBILITÉ PC */
.map-actions,
.map-info {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* texte */
.map-info {
    display: block !important;
    text-align: center;
    margin: 25px auto;
}

/* boutons */
.map-actions {
    justify-content: center;
    gap: 10px;
}

.map-container {
    overflow: visible; /* 🔥 change ça */
}

/* parent */
.map-container {
    position: relative;
}

/* boutons SUR la map */
.map-actions {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* parent */
.map-container {
    position: relative;
}

/* boutons SUR la map */
.map-actions {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.map-actions {
    position: relative !important;   /* 🔥 stop le bug */
    top: auto !important;
    left: auto !important;
    transform: none !important;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-top: 15px;
}

/* CONTENEUR MAP */
.map-container {
    position: relative; /* 🔥 base pour overlay */
}

/* Bouton invisible sur PC */
.accordion-options {
  display: none;
}

/* Mobile : bouton visible */
@media (max-width: 768px) {
  .accordion-options {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #0e7490, #14b8a6);
    color: white;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin: 20px 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  }

  /* Options cachées par défaut sur mobile */
  .options-card {
    display: none;
  }
}

@media (min-width: 769px) {
  .premium-grid {
    grid-template-columns: 520px 1fr !important; /* Options = 320px */
    gap: 30px !important;
    align-items: start !important; /* 🔥 Résumé reste collé en haut */
  }
}

.options-list li {
  padding: 12px 0;      /* 🔥 plus compact */
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opt-label {
  font-size: 15px;
  line-height: 1.25;
}

.opt-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.opt-control select {
  height: 30px;
  font-size: 14px;
  padding: 3px;
}



/* ============================
   🎁 BANDEAU FUN PASS PREMIUM
============================ */
.bonus-banner {
    background: linear-gradient(135deg, #0bb4d4, #007a9e);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    margin: 22px auto;

    box-shadow: 0 8px 22px rgba(0, 120, 160, 0.35);
}

/* Animation douce premium */
@keyframes softPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.015); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .options-card {
    display: none;
  }
  .options-card.open {
    display: block;
  }
}

.bonus-banner {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 20px auto;
    max-width: 900px;

    box-shadow: 0 6px 18px rgba(0, 150, 200, 0.25);
    letter-spacing: 0.3px;

    animation: funPulse 2.8s ease-in-out infinite;
}

/* Animation premium turquoise */
@keyframes funPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 150, 200, 0.25);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 26px rgba(0, 150, 200, 0.40);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 150, 200, 0.25);
    }
}

@media (max-width: 768px) {
  .resume-card h3 {
    margin-top: -10px;
  }
}

.fb-activities-box {
    margin: 18px 0 10px 0;
    text-align: left; /* ou center si tu préfères */
}

.fb-activities-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 150, 200, 0.25);
    transition: 0.25s ease;
}

.fb-activities-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 150, 200, 0.35);
}

@media (max-width: 768px) {
  .fb-activities-btn {
    width: 100%;
    text-align: center;
  }
}

.icon-activities {
    vertical-align: -3px;
    margin-right: 6px;
}

.pdf-total input {
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    padding:4px 6px;
    font-size:16px;
    width:100px;
    text-align:right;
}

.map-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;

    padding: 10px 16px;
    border-radius: 15px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}

/* Titre du résumé : même taille que "Options disponibles :" */
.summary-card h3 {
  font-size: 1.7rem; /* même taille que ton h3 actuel */
  font-weight: 700;
  margin-bottom: 12px;
}

/* Total TTC : plus visible mais harmonieux */
.summary-row.total {
  font-size: 1.2rem;   /* légèrement plus grand */
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 10px;
  border-top: 2px solid rgba(0,0,0,0.12);
}

/* Fix mobile : empêcher les débordements */
.summary-row,
.line {
  min-width: 0;
}

.summary-row span,
.line span {
  overflow-wrap: anywhere;
}

/* 1) Assurer que les h3 des deux cartes soient strictement identiques */
.card h3 {
  font-size: 1.28rem; /* même valeur pour Options et Résumé */
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 12px 0;
}

/* 2) Total TTC : plus visible mais harmonieux */
.summary-row.total {
  font-size: 1.18rem;   /* légèrement plus grand que les lignes normales */
  font-weight: 700;
  color: #111;          /* contraste fort mais pas agressif */
  padding-top: 12px;
  padding-bottom: 10px;
  border-top: 2px solid rgba(0,0,0,0.10);
}

/* 3) Espacements et lisibilité des lignes */
.summary-row,
.line {
  min-width: 0;
  padding: 10px 0;
  gap: 10px;
}

.summary-row span,
.line span {
  overflow-wrap: anywhere;
  line-height: 1.3;
  font-size: 0.96rem;
}

/* 4) Petite mise en valeur du montant total (alignement et espace) */
.summary-row.total span:last-child {
  padding-left: 6px;
  letter-spacing: 0.2px;
}

/* 5) Mobile : éviter le tassement et garder respiration */
@media (max-width: 480px) {
  .summary-card { padding: 14px; }
  .summary-row,
  .line { align-items: flex-start; }
  .summary-row span,
  .line span { font-size: 0.98rem; }
  .summary-row.total { font-size: 1.14rem; }
}

/* Titre du résumé : même taille que "Options disponibles :" */
.summary-card h3 {
  font-size: 1.25rem; /* même taille que ton h3 global */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Total TTC : plus visible mais harmonieux */
.summary-row.total {
  font-size: 1.25rem;   /* cohérent avec le titre */
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 10px;
  border-top: 2px solid rgba(0,0,0,0.12);
}

/* Anti-overflow mobile (le seul fix indispensable) */
.summary-row,
.line {
  min-width: 0;
}

.summary-row span,
.line span {
  overflow-wrap: anywhere;
}

.opt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 12px;
    flex-wrap: wrap; /* clé pour mobile */
}

.opt-left {
    flex: 1 1 auto;
    min-width: 0;
}

.opt-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.opt-qty {
    width: 60px;
}

@media (max-width: 480px) {
    .opt-right {
        margin-left: auto; /* aligne proprement */
    }
}

/* Version PC : prix au-dessus du select/checkbox */
@media (min-width: 769px) {
  .opt-right {
    flex-direction: column;      /* prix au-dessus */
    align-items: flex-end;       /* aligné proprement à droite */
    gap: 4px;                    /* petit espace élégant */
  }

  .opt-right .price {
    font-size: 1rem;
    font-weight: 600;
  }
}

/* Version mobile : prix + select sur la même ligne */
@media (max-width: 768px) {
  .opt-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

/* Uniformisation de tous les titres h3 */
.card h3,
.options-card h3,
.summary-card h3,
.infos-card h3 {
  font-size: 1.32rem;   /* même taille que "Pourquoi choisir ce mobil-home ?" */
  font-weight: 600;
  line-height: 1.28;
  margin-bottom: 14px;
}

/* ============================
   TITRES PRINCIPAUX (H3)
   ============================ */
/* TITRES UNIFIÉS — même style que "Pourquoi choisir ce mobil-home ?" */
.card h3,
.options-card h3,
.summary-card h3,
.infos-card h3 {
  font-size: 1.45rem;     /* 🔥 même taille que ton titre principal */
  font-weight: 700;       /* plus noir, plus présent */
  color: #007a7a;         /* ton turquoise exact */
  margin-bottom: 16px;
  line-height: 1.28;
}



/* ============================
   SOUS-TITRES / LABELS
   ============================ */
.summary-row span:first-child,
.opt-text,
.infos-card .section-title {
  font-size: 0.98rem;
  font-weight: 500;
  color: #333;
  line-height: 1.32;
}

/* ============================
   VALEURS / PRIX / MONTANTS
   ============================ */
.summary-row span:last-child,
.price,
.line span:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

/* ============================
   TOTAL TTC (mise en avant)
   ============================ */
/* TOTAL TTC — mise en avant premium */
.summary-row.total {
  font-size: 1.35rem;     /* 🔥 plus grand */
  font-weight: 800;       /* encore plus lisible */
  color: #0a9b4b;         /* même vert que ton bouton WhatsApp */
  padding-top: 16px;
  padding-bottom: 12px;
  border-top: 2px solid rgba(0,0,0,0.12);
}

/* ============================
   TEXTE SECONDAIRE
   ============================ */
.opt-desc,
.summary-row small,
#summary-acompte-info {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
}

/* ============================
   MOBILE : lisibilité renforcée
   ============================ */
@media (max-width: 480px) {
  .card h3,
  .options-card h3,
  .summary-card h3,
  .infos-card h3 {
    font-size: 1.28rem; /* léger ajustement pour éviter le zoom */
  }

  .summary-row span,
  .line span {
    font-size: 1rem;
  }
}

/* Couleur verte commune (même esprit que bouton WhatsApp) */
.summary-row.total span,
.summary-row.total span:last-child,
#summary-total,
#summary-acompte,
.price {
  color: #0a9b4b;            /* 🔹 remplace par le vert de ton bouton WhatsApp */
  font-weight: 700;
}

/* On laisse les autres montants un peu moins forts */
.summary-row span:last-child:not(#summary-total):not(#summary-acompte) {
  font-weight: 600;
}


/* On évite l'effet "collé au bord" sur mobile et petit écran */
.options-card,
.summary-card {
  box-sizing: border-box;
  padding-right: 16px;
}

/* On évite que le bloc de droite pousse trop vers l'extérieur */
.opt-right {
  margin-right: 0;
}

/* PRIX — même vert que bouton WhatsApp */
.price,
.summary-row span:last-child,
#summary-total,
#summary-acompte {
  color: #0a9b4b;
  font-weight: 700;
}

/* Correction du léger débordement à droite */
.options-card,
.summary-card {
  padding-right: 18px;
  box-sizing: border-box;
}

/* Mini-cadres légèrement recentrés */
.opt-right {
  margin-right: 4px;
}

/* TOTAL TTC — mise en avant premium, forte, lisible */
.summary-row.total {
  font-size: 1.55rem;        /* 🔥 plus grand, visible immédiatement */
  font-weight: 800;          /* très lisible, mais pas agressif */
  color: #0a9b4b;            /* ton vert WhatsApp */
  padding-top: 18px;
  padding-bottom: 14px;
  border-top: 3px solid rgba(0,0,0,0.15); /* séparation plus nette */
  letter-spacing: 0.3px;     /* petit boost de lisibilité */
}

/* Le montant du TOTAL TTC lui-même */
.summary-row.total span:last-child {
  font-size: 1.65rem;        /* 🔥 encore un cran au-dessus */
  font-weight: 900;          /* impact maximum */
  color: #0a9b4b;            /* même vert WhatsApp */
}

.opt-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.opt-right {
    margin-top: 6px;
}

.price {
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 480px) {
  .summary-row.total {
    font-size: 1.45rem;      /* légèrement réduit pour éviter le zoom */
  }

  .summary-row.total span:last-child {
    font-size: 1.55rem;
  }
}

.funpass-btn-box {
    margin-top: 15px;
}

.funpass-btn {
    width: 100%;
    text-align: center;
}

.summary-card {
    justify-content: space-between;
}

.funpass-btn {
    text-align: left;      /* 🔥 clé */
    justify-content: flex-start; /* si flex actif */
}

.funpass-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔥 force à gauche */
}

.funpass-btn-box {
    display: flex;
    justify-content: flex-start; /* 🔥 force à gauche */
}

.funpass-btn {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    margin-left: 0 !important;
}

.funpass-btn-box {
    padding-left: 0 !important;
}

.funpass-btn {
    margin: 0 !important;
}

/* 🔥 ALIGNEMENT TITRES GAUCHE / DROITE */

.resume-left h2,
.resume-card h3 {
    margin-top: 0;
}

.resume-left {
    padding-top: 20px; /* ajuste fin */
}

/* 🔥 FIX DÉBORDEMENT MOBILE OPTIONS */
@media (max-width: 768px) {

    .options-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .options-list li {
        width: 100%;
        box-sizing: border-box;
    }

    .opt-left,
    .opt-right {
        width: 100%;
        box-sizing: border-box;
    }

    /* empêche le texte de déborder */
    .opt-text {
        white-space: normal;
        word-break: break-word;
    }

    /* SELECT */
    .opt-qty {
        width: 100%;
        max-width: 100%;
    }

    /* bouton funpass */
    .funpass-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

* {
    box-sizing: border-box;
}

/* ========================================
   🔥 FIX MOBILE OPTIONS (DEFINITIF)
======================================== */
@media (max-width: 768px) {

    /* chaque option en colonne */
    .options-list li {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 6px;
    }

    /* ligne du haut */
    .opt-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    /* texte */
    .opt-text {
        flex: 1;
        min-width: 0;
        white-space: normal;
    }

    /* prix */
    .price {
        flex-shrink: 0;
        margin-left: 10px;
    }

    /* ligne du bas */
    .opt-right {
        width: 100%;
    }

    /* select / checkbox */
    .opt-qty,
    .opt-check {
        width: 100%;
        max-width: 100%;
    }

    /* bouton funpass */
    .funpass-btn {
        width: 100%;
    }
}

/* ========================================
   🔥 FIX MOBILE OPTIONS (VERSION SAFE)
======================================== */
@media (max-width: 768px) {

    .options-list li {
        display: block !important;
        width: 100%;
        padding: 12px;
    }

    /* ligne titre + prix */
    .opt-left {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* texte */
    .opt-text {
        display: inline-block;
        max-width: 70%;
        font-size: 14px;
    }

    /* 🔥 PRIX FORCÉ VISIBLE */
    .price {
        display: inline-block !important;
        font-weight: bold;
        color: #1E3A5F;
        margin-left: 10px;
        white-space: nowrap;
    }

    /* select en dessous */
    .opt-right {
        margin-top: 8px;
        width: 100%;
    }

    .opt-qty,
    .opt-check {
        width: 100%;
        max-width: 100%;
    }

    /* bouton */
    .funpass-btn {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {

    .options-list {
        padding: 0 10px; /* 🔥 ajoute marge interne */
    }

    .options-list li {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .options-card {
        padding: 10px; /* 🔥 réduit un peu */
    }
}

.opt-item {
    overflow: hidden; /* 🔥 empêche dépassement */
}
#wa-sticky {
    width: calc(100% - 20px); /* 🔥 évite dépassement */
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {

    .section-wide {
        padding: 0 10px; /* 🔥 réduit les marges globales */
    }

    .booking-box {
        padding: 15px !important; /* 🔥 beaucoup plus compact */
    }

    .premium-grid {
        width: 100%;
        max-width: 100%;
    }

}

.booking-box,
.premium-grid,
.options-card,
.summary-card {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .booking-box {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

}

@media (max-width: 768px) {

    .options-card,
    .summary-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

}

@media (max-width: 768px) {

    /* supprime marge gauche globale */
    .options-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    /* cartes options collées à gauche */
    .options-list li {
        padding-left: 6px !important;
        margin-left: 0 !important;
    }

    /* titre aussi aligné */
    .options-card h3 {
        padding-left: 6px;
    }

}

@media (max-width: 768px) {

    /* 🔥 enlève le décalage du bloc */
    .options-list li {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    /* 🔥 enlève le padding parent qui pousse */
    .options-list {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

@media (max-width: 768px) {

    /* 🔥 on casse le layout horizontal */
    .options-list li {
        display: block !important;
    }

    /* 🔥 pleine largeur */
    .opt-right {
        width: 100% !important;
        margin-top: 6px;
    }

    /* 🔥 le select devient large */
    .opt-qty {
        display: block;
        width: 100% !important;
        min-height: 44px;
        padding: 12px;
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .options-list li {
        all: unset; /* 🔥 reset total */
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .opt-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .opt-right {
        width: 100%;
        margin-top: 8px;
    }

    .opt-qty {
        width: 100%;
        height: 45px;
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .opt-left {
        gap: 6px;
    }

    .opt-text {
        font-size: 14px;
    }

    .price {
        font-size: 14px;
    }
}

.options-mobile {
    display: none;
}

@media (max-width: 768px) {
    .options-list {
        display: none !important;
    }

    .options-mobile {
        display: block;
    }
}

.options-mobile {
    display: none;
}

@media (max-width: 768px) {

    .options-list {
        display: none !important;
    }

    .options-mobile {
        display: block;
    }

    .opt-m {
        background: #fff;
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .opt-m-text {
        font-weight: 500;
    }

    .opt-m-text span {
        display: block;
        font-size: 13px;
        color: #666;
    }

    .opt-m-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
    }

    .opt-m .price {
        font-weight: 600;
    }
}

/* 🔥 FIX HAUTEUR LIGNES OPTIONS PC */

.options-list li {
    align-items: center;
    min-height: 36px;
}

/* texte */
.opt-text {
    line-height: 1.4;
}

/* select */
.opt-qty {
    height: 32px;
}

/* checkbox */
.opt-check {
    height: 18px;
}

.options-list li {
    padding: 6px 0;
}

/* 🔥 OPTIONS PLUS AÉRÉES */

.options-list li {
    padding: 14px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.opt-left {
    margin-bottom: 6px;
}

.opt-text {
    font-size: 15px;
}

.opt-desc {
    font-size: 13px;
    color: #6b7280;
}

.opt-qty {
    height: 36px;
    border-radius: 8px;
}

/* 🔥 RÉSUMÉ PLUS COMPACT */

.summary-card {
    padding: 16px 18px;
}

.summary-row {
    padding: 4px 0;
    font-size: 14px;
}

.summary-row span:last-child {
    font-weight: 500;
}

.summary-card hr {
    margin: 10px 0;
}

.summary-row.total {
    background: #eaf7ef;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
}

.premium-grid {
    align-items: stretch;
}

.options-card,
.summary-card {
    display: flex;
    flex-direction: column;
}

.options-card h3,
.summary-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

/* 🔥 PRIX RÉSUMÉ EN TEXTE NORMAL */
.summary-row span:last-child {
    color: #1f2937; /* gris foncé propre */
}

/* 🔥 ON GARDE LE TOTAL EN VERT */
.summary-row.total span:last-child {
    color: #16a34a;
}

/* cacher sur PC */
.accordion-options {
    display: none;
}

/* afficher sur mobile */
@media (max-width: 768px) {
    .accordion-options {
        display: block;
    }
}

/* mobile uniquement */
@media (max-width: 768px) {

    .options-card {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .options-card.open {
        max-height: 2000px; /* large pour contenir */
    }
}

@media (max-width: 768px) {

    .options-card {
        max-height: 0;
        overflow: hidden;
        padding: 0 !important; /* 🔥 important */
        margin: 0 !important;
        transition: max-height 0.3s ease;
    }

    .options-card.open {
        max-height: 2000px;
        padding: 15px !important; /* 🔥 remet le padding */
    }
}

@media (max-width: 768px) {

    .options-card {
        position: relative;
        z-index: 1;
    }

    .summary-card {
        position: relative;
        z-index: 2;
        background: #fff; /* 🔥 important pour cacher derrière */
    }
}

/* 🔥 TITRES OPTIONS + RÉSUMÉ */

.options-card h3,
.summary-card h3 {
    font-size: 26px;        /* ↑ plus lisible */
    font-weight: 600;
    margin-bottom: 14px;
}

.options-card h3,
.summary-card h3 {
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {

    /* 🔥 ON CASSE LA GRID */
    .premium-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* chaque bloc prend toute la largeur */
    .options-wrapper,
    .summary-wrapper {
        width: 100%;
    }

}

@media (max-width: 768px) {

    .options-card {
        width: 100%;
    }

}

.options-card,
.summary-card {
    box-sizing: border-box;
}

@media (max-width: 768px) {

    /* on casse la grille */
    .premium-grid {
        display: block !important;
    }

    /* 🔥 on cache le CARD directement */
    .options-card {
        display: none;
    }

    /* 🔥 quand ouvert → visible */
    .options-card.open {
        display: block;
    }

    /* résumé normal */
    .summary-wrapper {
        width: 100%;
    }
}

/* =========================
   FIX MOBILE FINAL (OBLIGATOIRE)
========================= */

@media (max-width: 768px) {

    /* 🔥 on casse la grille PC */
    .premium-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }

    /* 🔥 chaque bloc prend toute la largeur */
    .options-wrapper,
    .summary-wrapper {
        width: 100% !important;
    }

    /* 🔥 on évite les débordements */
    .options-card,
    .summary-card {
        width: 100%;
        box-sizing: border-box;
    }

    /* 🔥 cache version PC */
    .options-list {
        display: none;
    }

    /* 🔥 affiche version mobile */
    .options-mobile {
        display: block;
    }

}


























/* ========================================
   🔥 FORCE RESET MOBILE (ULTRA PRIORITÉ)
   À LA TOUTE FIN DU FICHIER
======================================== */

@media (max-width: 768px) {

    /* 🔥 STOP toutes les anciennes règles */
    .premium-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* 🔥 blocs pleine largeur */
    .options-card,
    .summary-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 🔥 force affichage résumé */
    .summary-card {
        display: block !important;
    }

    /* 🔥 options en accordéon */
    .options-card {
        display: none !important;
    }

    .options-card.open {
        display: block !important;
    }

    /* 🔥 version mobile */
    .options-list {
        display: none !important;
    }

    .options-mobile {
        display: block !important;
    }

}









/* ========================================
   🔥 FIX CLICK OPTIONS (CRITIQUE)
======================================== */

@media (max-width: 768px) {

    /* 🔥 BLOQUE DÉFINITIVEMENT LE MODE PC */
    .premium-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 🔥 EMPÊCHE LE RÉSUMÉ DE PARTIR À DROITE */
    .summary-card {
        width: 100% !important;
        position: relative !important;
        right: auto !important;
        left: auto !important;
    }

    /* 🔥 OPTIONS EN DESSOUS DU BOUTON */
    .options-card.open {
        display: block !important;
        width: 100% !important;
        order: 2;
    }

    /* 🔥 RÉSUMÉ TOUJOURS EN HAUT */
    .summary-card {
        order: 1;
    }

}

/* ========================================
   🔥 FIX DÉBORDEMENT RÉSUMÉ (FINAL)
======================================== */

/* sécurité globale */
.summary-wrapper,
.summary-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 🔥 empêche de dépasser */
.summary-card {
    overflow: hidden;
}

/* 🔥 empêche le texte de pousser */
.summary-row span {
    min-width: 0;
    word-break: break-word;
}

/* 🔥 important pour grid */
.premium-grid > * {
    min-width: 0;
}

@media (max-width: 768px) {
    .summary-card {
        margin: 0 !important;
        padding: 16px !important;
    }

    .infos-card,
    .infos-pratiques,
    .infos-box {
        margin-left: 0 !important;
        padding-left: 15px !important;
    }

    .infos-card::before,
    .infos-pratiques::before {
        display: none !important;
    }

    .infos-card {
        margin-left: 0 !important;
        border-left: 4px solid #0ea5a4;
        padding-left: 15px;
    }
}

.resume-right {
    border-left: none;
    padding-left: 0;
}

/* 🔥 FIX DEFINITIF INFOS PRATIQUES */
.resume-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 🔥 MOBILE */
@media (max-width: 768px) {
    .resume-section {
        display: block !important;
    }

    .resume-right {
        border-left: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .premium-grid {
        display: block !important;
    }

    .summary-card {
        width: 100% !important;
        margin-top: 15px !important;
    }
}
/* FIX CHEVAUCHEMENT OPTIONS / RÉSUMÉ */

.premium-grid {
    align-items: start !important;
}

/* 🔥 empêche le résumé de se superposer */
.summary-card {
    position: relative !important;
    top: auto !important;
}

/* 🔥 CRUCIAL : le parent doit s’adapter */
.booking-box {
    display: block !important;
}

/* 🔥 supprime les hauteurs forcées */
.options-card {
    max-height: none !important;
    height: auto !important;
}

@media (max-width: 768px) {

    .premium-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .options-card.open {
        display: block !important;
    }

}


*.seo-hidden-img {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.promo-banner {
    position: relative;
    z-index: 10;
}

#summary-promo-row {
    background: #e6fffa;
    border-left: 4px solid #14b8a6;
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 6px;
}

#summary-promo {
    color: #0f766e;
    font-weight: bold;
}

#price-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}

#price-new {
    color: #e63946;
    font-weight: 600;
}

.tourisme-banner,
.faq-section {
    max-width: 800px;
    margin: 40px auto;
}

.tourisme-banner p,
.faq-section p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.tourisme-banner p {
    margin-bottom: 14px;
}

.tourisme-banner {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;

    background: linear-gradient(135deg, #0e7490, #14b8a6);
    color: white;

    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.tourisme-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.tourisme-banner p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.95);
}

.tourisme-banner a {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;

    padding: 10px 14px;
    border-radius: 8px;

    background: white;
    color: #0e7490;
    text-decoration: none;
    font-weight: 500;
}

.tourisme-banner a:hover {
    background: #f1f5f9;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start; /* 🔥 IMPORTANT */
}

.summary-card {
    height: fit-content;
}

.section .card h2,
.section .card h3 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {

    .section .card p,
    .tourisme-banner p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

}

.section .card p {
    margin-bottom: 12px;
}

/* === BANNIÈRE PROMO — taille mobile === */
@media (max-width: 768px) {
    #promo-banner {
        padding: 10px 14px;
        margin: 12px auto;
    }

    #promo-banner-text {
        font-size: 18px;
    }

    #promo-banner strong {
        font-size: 1.35em; /* reste plus grand que le texte, mais pas énorme */
    }
}

@media (min-width: 901px) {
    .calendar-info {
        font-size: 15px !important;
    }

    .calendar-legend {
        font-size: 17px !important;
    }
}

@media (max-width: 900px) {
    .calendar-info {
        font-size: 11px !important;
    }

    .calendar-legend {
        font-size: 12px !important;
    }
}
