/* ============================================================
   beach.css — Styles spécifiques aux pages plage
   ============================================================ */

/* ---- Fil d'Ariane (au-dessus du hero, sur le fond mer) ---- */
.beach-breadcrumb {
    position: relative;
    z-index: 2;
    max-width: var(--max-width, 1200px);
    margin: 0 auto 1.5rem;
    padding: 0 var(--padding-x, 2rem);
    font-size: 0.9rem;
}
.beach-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.beach-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.beach-breadcrumb__item + .beach-breadcrumb__item::before {
    content: "\203A"; /* › */
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05em;
    line-height: 1;
}
.beach-breadcrumb__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.beach-breadcrumb__link:hover,
.beach-breadcrumb__link:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.beach-breadcrumb__current {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Hero ---- */
.beach-hero-wrapper {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 3rem 0;
    background: #0b2530;
    /* palette mer — ajustable par plage via style inline si besoin */
    --sea-top:  #3a6b7a;
    --sea-mid:  #1f4d5c;
    --sea-bot:  #0b2530;
    --sea-glow: rgba(180,222,228,.30);
    --sea-wave: #0c2c38;
}

/* ---- Couches sea-bg ---- */
.beach-hero-wrapper .sea-layer { position: absolute; inset: 0; pointer-events: none; }

.beach-hero-wrapper .sea-grad {
    background: linear-gradient(to bottom, var(--sea-top) 0%, var(--sea-mid) 52%, var(--sea-bot) 100%);
}
.beach-hero-wrapper .sea-glow {
    background: radial-gradient(120% 70% at 50% 60%, var(--sea-glow) 0%, transparent 55%);
}
.beach-hero-wrapper .sea-waves {
    top: auto; bottom: 0; height: 60%; overflow: hidden;
}
.beach-hero-wrapper .sea-waves svg {
    position: absolute; bottom: 0; left: 0; width: 200%; height: 100%;
}
.beach-hero-wrapper .sea-waves .w1 { opacity: .50; animation: sea-drift1 26s linear infinite; }
.beach-hero-wrapper .sea-waves .w2 { opacity: .35; animation: sea-drift2 38s linear infinite; }
.beach-hero-wrapper .sea-waves .w3 { opacity: .22; animation: sea-drift1 52s linear infinite; }

@keyframes sea-drift1 { to { transform: translateX(-50%); } }
@keyframes sea-drift2 { to { transform: translateX(-25%); } }

.beach-hero-wrapper .sea-ripple {
    background-image: repeating-linear-gradient(to bottom, transparent 0 9px, rgba(255,255,255,.04) 9px 10px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 55%, #000 78%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 55%, #000 78%, transparent 100%);
    animation: sea-rise 9s linear infinite;
}
@keyframes sea-rise { to { transform: translateY(10px); } }

.beach-hero-wrapper .sea-scrim {
    background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.18) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .beach-hero-wrapper .sea-waves svg,
    .beach-hero-wrapper .sea-ripple { animation: none !important; }
}

.beach-hero {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2.5rem;
    padding: 0 var(--padding-x, 2rem);
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    align-items: center;
}

/* Média (image / vidéo) */
.beach-hero-media {
    flex: 0 0 55%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.beach-video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
}

.beach-video-thumb img,
.beach-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.25s;
}

.beach-video-thumb:hover img {
    filter: brightness(0.72);
}

/* Bouton play */
.beach-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.beach-play-btn svg {
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
    transition: transform 0.2s, filter 0.2s;
    opacity: 0.92;
}

.beach-video-thumb:hover .beach-play-btn svg {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
}

/* Lecture en cours */
.beach-video-thumb.is-playing {
    cursor: default;
}

.beach-video-thumb.is-playing iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Infos */
.beach-hero-info {
    flex: 1;
    min-width: 0;
}

.beach-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #ffffff;
    line-height: 1.2;
}

/* Badges (type + blue flag) */
.beach-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 0.9rem;
}

.beach-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.beach-badge--blueflag {
    background: rgba(30, 100, 220, 0.18);
    border-color: rgba(80, 140, 255, 0.3);
    color: #90bfff;
}

.beach-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    letter-spacing: 0.02em;
}

/* ---- Blocs stats météo (colonne droite, sous le titre) ---- */
.beach-stats {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.beach-stat-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.stat-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.stat-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.stat-trend {
    font-size: 0.78rem;
    font-weight: 600;
}

.trend-up   { color: #4ade80; }
.trend-down { color: #f87171; }

/* ---- Bloc Pavillon Bleu ---- */
.beach-blueflag-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    margin-top: 1.5rem;
}

.bf-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-icon svg {
    width: 36px;
    height: 36px;
}

.bf-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #1e3a5f;
    margin: 0;
}

.bf-text a {
    color: #1d4ed8;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 78, 216, 0.3);
    transition: border-color 0.15s;
}

.bf-text a:hover {
    border-color: #1d4ed8;
}

/* ---- Layout content (main + sidebar) ---- */
.beach-content-layout {
    display: flex;
    gap: 2.5rem;
    max-width: var(--max-width, 1220px);
    margin: 3rem auto;
    padding: 0 var(--padding-x, 2rem);
    align-items: flex-start;
}

.beach-main {
    flex: 1;
    min-width: 0;
}

.beach-sidebar {
    flex: 0 0 300px;
    width: 300px;
}

.beach-description {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text, #333);
    margin: 0;
}

/* ---- Titre de section réutilisable ---- */
.beach-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 1rem;
    line-height: 1.3;
}

/* ---- Sous-titre H3 dans les sections ---- */
.beach-section-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 2rem 0 0.9rem;
    padding-left: 0.75rem;
    border-left: 3px solid #2563eb;
    line-height: 1.3;
}

/* ---- Section voiture ---- */
.transport-car-body {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #444;
}

.transport-car-body p + p {
    margin-top: 1rem;
}

/* ---- Bloc emplacement + carte ---- */
.beach-location-block {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e8e8e8;
}

.beach-location-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text, #333);
    margin: 0 0 1.5rem;
}

.beach-map {
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

/* ---- Bloc équipements (sidebar, style Airbnb) ---- */
.amn-block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.amn-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

.amn-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 0.75rem;
}

.amn-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.amn-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #484848;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amn-icon svg {
    width: 20px;
    height: 20px;
}

.amn-label {
    font-size: 0.82rem;
    color: #333;
    line-height: 1.3;
}

/* ---- Séparateur de section réutilisable ---- */
.beach-section-separator {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e8e8e8;
}

/* ============================================================
   BLOC TRANSPORT (dark cards style)
   ============================================================ */
.bus-intro {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--color-text, #333);
    margin-bottom: 1.5rem;
}

.bus-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bus-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    color: #18181b;
}

.bus-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

/* Séparateur entre lignes : flèche = correspondance (changement), barre = lignes directes alternatives */
.bus-badge-sep {
    flex-shrink: 0;
    align-self: stretch;          /* prend la hauteur du badge */
    display: flex;
    align-items: center;          /* centre le glyphe verticalement */
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.bus-badges[data-transfer="1"] .bus-badge-sep {
    color: #475569;
    font-size: 1.25rem;
}

.bus-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.bus-info {
    flex: 1;
    min-width: 0;
}

.bus-route {
    font-weight: 600;
    font-size: 0.95rem;
    color: #18181b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bus-arrow {
    margin: 0 0.3rem;
    opacity: 0.45;
}

.bus-via {
    font-size: 0.79rem;
    color: #71717a;
    margin-top: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bus-meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.bus-duration {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: #71717a;
}

.bus-duration svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bus-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #18181b;
}

.bus-price-note {
    font-size: 0.78rem;
    color: #999;
    margin: 0.6rem 0 0;
    font-style: italic;
}

.bus-planner-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    font-size: 0.85rem;
}

.bus-planner-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #6b7280;
}

.bus-planner-link a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: border-color 0.15s;
}

.bus-planner-link a:hover {
    border-color: #2563eb;
}

/* ============================================================
   BLOC ACTIVITÉS
   ============================================================ */
.act-intro {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--color-text, #333);
    margin-bottom: 1.5rem;
}

.act-intro a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: border-color 0.15s;
}

.act-intro a:hover {
    border-color: #2563eb;
}

.act-intro p + p {
    margin-top: 1rem;
}

.act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.act-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.act-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.act-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.act-card:hover .act-img img {
    transform: scale(1.04);
}

.act-body {
    padding: 1rem 1.15rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
}

.act-location {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.act-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}

.act-organisator {
    font-size: 0.8rem;
    color: #666;
}

.act-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

.act-stars {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.act-score {
    font-weight: 700;
    color: #1a1a1a;
}

.act-reviews {
    color: #888;
}

.act-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #f0f0f0;
}

.act-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.act-price-from {
    font-size: 0.72rem;
    color: #999;
}

.act-price strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.act-btn {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.act-btn:hover {
    background: #1d4ed8;
}

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

/* ============================================================
   BLOC LOGEMENTS (HÔTELS)
   ============================================================ */
.hotel-intro {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--color-text, #333);
    margin-bottom: 1.5rem;
}

.hotel-intro a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: border-color 0.15s;
}

.hotel-intro a:hover {
    border-color: #2563eb;
}

.hotel-intro p + p {
    margin-top: 1rem;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.hotel-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.hotel-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.11);
}

.hotel-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.hotel-card:hover .hotel-img img {
    transform: scale(1.04);
}

.hotel-body {
    padding: 1rem 1.15rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.3rem;
}

.hotel-stars {
    font-size: 0.8rem;
    color: #f59e0b;
    letter-spacing: 0.05em;
    line-height: 1;
}

.hotel-stars-empty {
    color: #e5e7eb;
}

.hotel-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.hotel-location {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

.hotel-score {
    font-weight: 700;
    color: #1a1a1a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 0.1rem 0.4rem;
    font-size: 0.85rem;
}

.hotel-reviews {
    color: #888;
}

.hotel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #f0f0f0;
}

.hotel-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hotel-price-from {
    font-size: 0.72rem;
    color: #999;
}

.hotel-price strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hotel-price-night {
    font-size: 0.72rem;
    color: #999;
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s;
}

.hotel-card:hover .hotel-btn {
    background: #1d4ed8;
}

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

/* ============================================================
   BLOC AVIS
   ============================================================ */
.review-score-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    background: #1a1a2e;
    color: #fff;
    border-radius: 14px;
    padding: 0.55rem 1.1rem 0.55rem 1rem;
    margin-bottom: 1.25rem;
}

.review-score-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.review-score-denom {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
}

.star--full  { color: #f59e0b; }
.star--half  { color: #f59e0b; opacity: 0.6; }
.star--empty { color: #ddd; }

.review-summary-text {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 1.5rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pros-col,
.cons-col {
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

.pros-col {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.cons-col {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.pros-cons-title {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
}

.pros-col .pros-cons-title { color: #15803d; }
.cons-col .pros-cons-title { color: #c2410c; }

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pros-cons-list li {
    font-size: 0.84rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.45;
}

.pros-col .pros-cons-list li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}

.cons-col .pros-cons-list li::before {
    content: '✗';
    color: #ea580c;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .beach-hero-wrapper {
        padding: 2rem 0;
    }

    .beach-breadcrumb {
        margin-bottom: 1.25rem;
        padding: 0 var(--padding-x, 1rem);
    }

    .beach-hero {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 var(--padding-x, 1rem);
    }

    .beach-hero-media {
        flex: none;
        width: 100%;
    }

    .beach-stats {
        margin-top: 1rem;
        flex-direction: column;
    }

    .beach-content-layout {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
    }

    .beach-sidebar {
        width: 100%;
    }

    .bus-card {
        padding: 0.85rem 1rem;
    }

    .bus-badge {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .bus-route {
        font-size: 0.88rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Sommaire / Summary bar ---- */
.beach-summary {
    position: sticky;
    top: 0.75rem;
    margin-top: 1.5rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 var(--padding-x, 2rem);
    pointer-events: none;
}

.bsum-inner {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    background: #1a3d4a;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    padding: 0.35rem 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    overflow-x: auto;
    scrollbar-width: none;
    pointer-events: all;
    max-width: 100%;
}
.bsum-inner::-webkit-scrollbar { display: none; }

.bsum-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #8ecad4;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}
.bsum-item:hover {
    color: #d6f0f4;
    background: rgba(255,255,255,0.07);
}
.bsum-item.bsum-active {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-weight: 600;
}
.bsum-badge {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255,255,255,0.10);
    color: #a8dde5;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    line-height: 1.4;
}
.bsum-active .bsum-badge {
    background: rgba(255,255,255,0.20);
    color: #ffffff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 0.97rem;
    color: var(--text);
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

/* La question FAQ est un <h3> (outline + a11y), sans changer l'apparence */
.faq-question h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--muted);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1rem 0;
    color: var(--text-light, var(--text));
    font-size: 0.93rem;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

/* FAQ : listes & liens dans les réponses (HTML stocké en JSON) */
.faq-block .faq-answer ul { margin: 8px 0 0; padding-left: 20px; }
.faq-block .faq-answer li { margin: 3px 0; }
.faq-block .faq-answer a { color: var(--color-primary, #1a6ca8); text-decoration: underline; }
.faq-block .faq-answer a:hover { text-decoration: none; }
