/* ------------------------------
   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-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 115px;
    height: 80px;
    border-radius: 8%;
}

.header-title {
    font-size: 1.9rem;  /*taille texte en-tête*/
    font-style: italic;
    font-weight: 500;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}


.rose-des-vents {
    width: 60px;
    margin-left: 12px;
    display: flex;
    align-items: center;
}

.rose-des-vents svg {
    width: 100%;
    height: auto;
    display: block;
}



/* Dégradé turquoise comme ta bannière */
.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;
}

/* ------------------------------
   HERO / BANNIÈRE
--------------------------------*/
/* HERO IMAGE PREMIUM */
.hero-banner {
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    height: 55vh;              /* parfait pour 16/9 */
    min-height: 320px;
    max-height: 600px;

    background-color: #000;    /* bandeaux noirs */
    background-image: url("../images/Camping-les-charmettes-la-palmyre-piscine-desktop.jpg");
    background-size: contain;  /* image entière */
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;
    position: relative;

    padding-left: 0vw;         /* réduit les bandes noires */
    padding-right: 0vw;
    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: 0 !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 {
    position: relative;
    padding-left: 26px;     /* espace pour l’icône */
    margin-bottom: 8px;
    font-size: 1.15rem;     /* un peu plus grand */
    font-weight: 600;       /* plus gras */
    color: #1E3A5F;         /* bleu foncé bannière */
    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 */
.resume-card ul li {
    position: relative;
    padding-left: 30px;     /* ← espace pour l’icône */
    margin-bottom: 8px;     /* ← espace entre les lignes */
    font-size: 1.05rem;     /* ← taille du texte (réduit légèrement) */
    font-weight: 600;       /* ← gras du texte */
    color: #1E3A5F;         /* ← couleur du texte */
    line-height: 1.35;      /* ← hauteur de ligne */
}

/* 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: "🅿️"; } /* Parking */
.resume-card ul li:nth-child(3)::before { content: "📶"; } /* Wifi */
.resume-card ul li:nth-child(4)::before { content: "🛒"; } /* Supérette / services */
.resume-card ul li:nth-child(5)::before { content: "⛳"; } /* Mini golf */
.resume-card ul li:nth-child(6)::before { content: "🏖️"; } /* Plage */
.resume-card ul li:nth-child(7)::before { content: "🎢"; } /* Luna Park */

/*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: 5px;
}

.wa-svg {
    width: 22px;
    height: 22px;
}

.cta-info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.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;
}

#promo-banner {
    line-height: 1.3;
}

#promo-banner strong {
    font-size: 1.2em;     /*/////////////////// 🔥 taille % promo ////////////////*/
}

#promo-banner {
    line-height: 1.35;
    padding: 14px 20px; /* 🔥 un peu moins haut mais confortable */
}


.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;
  }
}

@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;
}

/* =========================
   📸 GALERIE MOBILE
========================= */

@media (max-width: 768px) {

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-small {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-main {
        height: 220px;
    }
}

/* =========================
   🧾 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;
}

.options-card {
    overflow: hidden;
}

.options-list li {
    width: 100%;
    box-sizing: border-box;
}

/* ---------------------------
   📸 GALERIE MOBILE SAFE
--------------------------- */

@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;
    }

}

/* 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;
    }
}

@media (max-width: 768px) {

    .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;
    }

}

@media (max-width: 768px) {
    #lightbox-prev,
    #lightbox-next {
        display: none;
    }
}

@media (max-width: 768px) {

    .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: 18px;
        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:6px 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 */
}

/* BOUTONS SUR MAP (PC uniquement) */
@media (min-width: 769px) {

    .map-actions {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        gap: 10px;

        z-index: 10;
    }

    .map-btn {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(6px);

        padding: 10px 14px;
        border-radius: 8px;

        font-size: 14px;
        font-weight: 600;

        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
}

/* MOBILE = dessous (SAFE) */
@media (min-width: 769px) {

    .map-actions {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        gap: 10px;

        z-index: 10;
    }

    .map-btn {
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
        color: white;

        padding: 10px 16px;
        border-radius: 12px;

        font-size: 14px;
        font-weight: 600;

        box-shadow: 0 6px 18px rgba(2,132,199,0.4);

        transition: all 0.2s ease;
    }

    .map-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 10px 25px rgba(2,132,199,0.6);
    }

    /* variantes couleurs */
    .map-btn.zoo {
        background: linear-gradient(135deg, #f59e0b, #f97316);
    }

    .map-btn.beach {
        background: linear-gradient(135deg, #38bdf8, #0ea5e9);
        color: white;
    }
}










