/* ═══════════════════════════════════════════════════════
   HEADER — Barre meta/actions + titre/prix + séparateur
   ═══════════════════════════════════════════════════════ */

.vp-header {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

/* ── Barre au-dessus de la galerie : meta gauche + actions droite ── */
.vp-header--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Meta en haut à gauche : taille intermédiaire (titre > meta > descriptions) */
.vp-header__meta-top {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 1.05rem;
    color: var(--vp-black);
}

.vp-header__meta-district {
    font-size: 1.35rem;
    font-weight: 700;
    display: block;
}

.vp-header__meta-destination {
    display: block;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

/* ── Séparateur point ─────────────────────────────────── */
.vp-header__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ── Barre d'actions (droite) ────────────────────────── */
.vp-header__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
}

.vp-header__action-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font-family: var(--vp-font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vp-black);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.vp-header__action-btn:hover { color: var(--vp-gray); }

.vp-header__action-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Note (rating) dans les actions ─────────────────── */
.vp-header__action-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vp-black);
}

.vp-header__rating-star  { color: #222; font-size: 0.85rem; }
.vp-header__rating-score { font-weight: 700; }
.vp-header__rating-count { font-size: 1rem; font-weight: 400; color: var(--vp-gray); text-decoration: underline; text-underline-offset: 3px; }

/* ── Bloc sous la galerie : titre + prix sur la même ligne ── */
.vp-header--below {
    padding: 1rem 2rem 0;
}

.vp-header__title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
}

/* ── Titre propriété ─────────────────────────────────── */
.vp-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--vp-black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0;
}

/* ── Prix aligné avec le titre ───────────────────────── */
.vp-header__price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-shrink: 0;
}

.vp-header__price-val {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--vp-black);
}

.vp-header__price-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--vp-gray);
}

/* ── Séparateur fin ──────────────────────────────────── */
.vp-header__divider {
    border: none;
    border-top: 1px solid var(--vp-border);
    margin: 1.25rem 0;
}

/* ── Grand écran ≥ 1280px ────────────────────────────── */
@media (min-width: 1280px) {
    .vp-header {
        max-width: 1212px;
        padding: 0.5rem 0;
    }

    .vp-header--below {
        max-width: 1212px;
        padding: 1rem 0 0;
    }
}

/* ── Mobile ≤ 768px ──────────────────────────────────── */
@media (max-width: 768px) {
    .vp-header {
        padding: 0.75rem 1.25rem;
    }

    .vp-header--top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .vp-header__title-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .vp-header--below {
        padding: 0.75rem 1.25rem 0;
    }
}
