/* ═══ VS08 PARCS — Front CSS ═══ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ═══ HERO ═══ */
.vp-hero { position:relative; height:60vh; min-height:450px; background-size:cover; background-position:center; display:flex; align-items:flex-end; }
.vp-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(26,39,68,.1) 0%, rgba(26,39,68,.85) 100%); }
.vp-hero-content { position:relative; z-index:2; padding:0 60px 50px; max-width:1300px; width:100%; }
.vp-hero-parc { font-size:14px; font-weight:600; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:2px; font-family:'Outfit',sans-serif; margin-bottom:10px; }
.vp-hero-title { font-family:'Playfair Display',serif; font-size:clamp(28px,5vw,48px); font-weight:800; color:#fff; margin:0 0 16px; line-height:1.15; }
.vp-hero-meta { display:flex; flex-wrap:wrap; gap:8px; }
.vp-meta-chip { display:inline-flex; align-items:center; gap:5px; background:rgba(255,255,255,.15); backdrop-filter:blur(8px); color:#fff; font-family:'Outfit',sans-serif; font-size:13px; font-weight:500; padding:8px 16px; border-radius:100px; border:1px solid rgba(255,255,255,.12); }
.vp-chip-price { background:linear-gradient(135deg,#59b7b7,#3d9a9a); border-color:#59b7b7; font-weight:700; }
.vp-badge { position:absolute; top:24px; left:24px; z-index:3; background:#59b7b7; color:#fff; font-family:'Outfit',sans-serif; font-weight:700; font-size:13px; padding:8px 18px; border-radius:100px; }

/* ═══ HERO VIDEO (YouTube) ═══ */
.vp-hero-video { position:relative; height:65vh; min-height:480px; overflow:hidden; }
.vp-hero-video-wrap { position:absolute; inset:0; z-index:0; pointer-events:none; }
.vp-hero-video-wrap iframe {
    position:absolute;
    top:50%; left:50%;
    width:calc(100vh * 1.78); /* 16:9 aspect */
    height:calc(100vw / 1.78);
    min-width:100%; min-height:100%;
    transform:translate(-50%,-50%);
    border:0;
}
.vp-hero-video .vp-hero-overlay {
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(26,39,68,.25) 0%, rgba(26,39,68,.8) 100%);
}
.vp-hero-video .vp-hero-content { z-index:2; }
.vp-hero-video .vp-badge { z-index:3; }

/* ═══ LAYOUT ═══ */
.vp-container { background:#f9f6f0; }
.vp-inner { max-width:1440px; margin:0 auto; padding:40px 40px 80px; display:grid; grid-template-columns:1fr 360px; gap:40px; align-items:start; }
.vp-main { min-width:0; }

/* ═══ GALLERY ═══ */
.vp-gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:28px; border-radius:16px; overflow:hidden; }
.vp-gal-item { overflow:hidden; aspect-ratio:4/3; }
.vp-gal-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; cursor:pointer; }
.vp-gal-item img:hover { transform:scale(1.06); }

/* ═══ SECTIONS ═══ */
.vp-section { background:#fff; border-radius:20px; padding:28px; margin-bottom:20px; box-shadow:0 2px 16px rgba(0,0,0,.04); }
.vp-section-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:#1a2744; margin:0 0 14px; }
.vp-subtitle { font-size:15px; color:#59b7b7; font-weight:600; font-family:'Outfit',sans-serif; margin:0 0 14px; }
.vp-content { font-size:14px; line-height:1.7; color:#4a5568; font-family:'Outfit',sans-serif; }
.vp-conditions { font-size:12px; color:#6b7280; }

/* ═══ HOTEL CARD ═══ */
.vp-hotel-card { background:linear-gradient(135deg,#f0f4f8,#e8edf2); border-radius:16px; padding:22px; }
.vp-hotel-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:12px; }
.vp-hotel-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:#1a2744; }
.vp-hotel-stars { color:#59b7b7; font-size:16px; margin-top:2px; }
.vp-hotel-badges { display:flex; flex-wrap:wrap; gap:6px; }
.vp-hotel-badges span { font-size:11px; background:#fff; color:#4a5568; padding:4px 10px; border-radius:100px; font-family:'Outfit',sans-serif; }
.vp-hotel-desc { font-size:13px; line-height:1.6; color:#4a5568; font-family:'Outfit',sans-serif; }

/* ═══ OPTIONS ═══ */
.vp-options-grid { display:flex; flex-direction:column; gap:10px; }
.vp-option-card { display:flex; align-items:center; gap:14px; background:#fff; border:1.5px solid #e5e7eb; border-radius:14px; padding:16px 18px; transition:all .3s; }
.vp-option-card:hover { border-color:#b7dfdf; box-shadow:0 2px 12px rgba(232,114,74,.08); }
.vp-option-card.selected { border-color:#59b7b7; background:#edf8f8; }
.vp-option-icon { width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg,#edf8f8,#d4f0f0); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.vp-option-card.selected .vp-option-icon { background:linear-gradient(135deg,#59b7b7,#3d9a9a); }
.vp-option-info { flex:1; }
.vp-option-name { font-size:14px; font-weight:700; color:#1a2744; font-family:'Outfit',sans-serif; }
.vp-option-price { font-size:12px; color:#59b7b7; font-weight:600; font-family:'Outfit',sans-serif; margin-top:2px; }
.vp-option-toggle { position:relative; display:inline-block; width:44px; height:24px; flex-shrink:0; cursor:pointer; }
.vp-option-toggle input { opacity:0; width:0; height:0; }
.vp-option-slider { position:absolute; inset:0; background:#e0e0e0; border-radius:24px; transition:all .3s; }
.vp-option-slider::before { content:''; position:absolute; width:18px; height:18px; left:3px; bottom:3px; background:#fff; border-radius:50%; transition:all .3s; box-shadow:0 1px 3px rgba(0,0,0,.15); }
.vp-option-toggle input:checked + .vp-option-slider { background:linear-gradient(135deg,#59b7b7,#3d9a9a); }
.vp-option-toggle input:checked + .vp-option-slider::before { transform:translateX(20px); }

/* ═══ FAQ ═══ */
.vp-faq-item { border:1.5px solid #e5e7eb; border-radius:12px; margin-bottom:8px; overflow:hidden; }
.vp-faq-q { padding:14px 18px; font-size:14px; font-weight:600; color:#1a2744; font-family:'Outfit',sans-serif; cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition:background .2s; }
.vp-faq-q:hover { background:#f9f6f0; }
.vp-faq-arrow { font-size:18px; color:#9ca3af; transition:transform .3s; }
.vp-faq-item.open .vp-faq-arrow { transform:rotate(90deg); color:#59b7b7; }
.vp-faq-a { display:none; padding:0 18px 14px; font-size:13px; line-height:1.6; color:#6b7280; font-family:'Outfit',sans-serif; }
.vp-faq-item.open .vp-faq-a { display:block; }

/* ═══ SIDEBAR CALC ═══ */
.vp-calc-col { position:sticky; top:90px; display:flex; flex-direction:column; gap:16px; max-height:calc(100vh - 100px); overflow-y:auto; scrollbar-width:thin; scrollbar-color:#ddd transparent; }
.vp-calc-col::-webkit-scrollbar { width:5px; }
.vp-calc-col::-webkit-scrollbar-thumb { background:#ccc; border-radius:10px; }
.vp-calc-card { background:#fff; border-radius:22px; padding:28px; box-shadow:0 8px 40px rgba(0,0,0,.1); }
.vp-calc-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:#1a2744; margin-bottom:18px; }
.vp-prix-barre { font-size:14px; font-family:'Outfit',sans-serif; margin-bottom:16px; color:#6b7280; }
.vp-prix-barre del { color:#dc2626; }
.vp-prix-barre strong { color:#59b7b7; font-size:18px; }
.vp-field { margin-bottom:16px; }
.vp-field label { display:block; font-size:11px; font-weight:700; color:#1a2744; text-transform:uppercase; letter-spacing:.8px; margin-bottom:6px; font-family:'Outfit',sans-serif; }

/* ═══ BÉBÉ NOTE ═══ */
.vp-bebe-note { font-size:12px; color:#6b7280; font-family:'Outfit',sans-serif; padding:8px 12px; background:#f0fafa; border-radius:8px; margin-bottom:16px; }
.vp-bebe-note strong { color:#59b7b7; }

/* ═══ OPTIONS IN CALC CARD ═══ */
.vp-calc-options { border-top:1.5px dashed #e5e7eb; padding-top:14px; margin-bottom:16px; }
.vp-calc-options-title { font-size:11px; font-weight:700; color:#1a2744; text-transform:uppercase; letter-spacing:.8px; margin-bottom:10px; font-family:'Outfit',sans-serif; }
.vp-calc-opt-row {
    display:flex; align-items:center; gap:10px; padding:10px 12px;
    border:1.5px solid #e5e7eb; border-radius:10px; margin-bottom:6px;
    cursor:pointer; transition:all .2s; font-family:'Outfit',sans-serif;
}
.vp-calc-opt-row:hover { border-color:#b7dfdf; background:#fafffe; }
.vp-calc-opt-row:has(input:checked) { border-color:#59b7b7; background:#edf8f8; }
.vp-calc-opt-row input[type="checkbox"] { width:16px; height:16px; accent-color:#59b7b7; flex-shrink:0; cursor:pointer; }
.vp-calc-opt-label { flex:1; font-size:13px; font-weight:600; color:#1a2744; }
.vp-calc-opt-price { font-size:12px; font-weight:700; color:#59b7b7; white-space:nowrap; }

/* ═══ QTY BUTTONS ═══ */
.vp-qty-row { display:flex; align-items:center; gap:0; border:1.5px solid #e5e7eb; border-radius:12px; overflow:hidden; }
.vp-qty-btn { width:44px; height:44px; border:none; background:#f9f6f0; font-size:18px; font-weight:700; color:#1a2744; cursor:pointer; transition:background .2s; font-family:'Outfit',sans-serif; }
.vp-qty-btn:hover { background:#59b7b7; color:#fff; }
.vp-qty-val { flex:1; text-align:center; font-size:17px; font-weight:700; color:#1a2744; font-family:'Playfair Display',serif; }

/* ═══ PRICE RESULT ═══ */
.vp-price-result { border-top:1.5px solid #e5e7eb; padding-top:16px; margin-top:8px; }
.vp-price-lines { margin-bottom:12px; }
.vp-price-line { display:flex; justify-content:space-between; padding:5px 0; font-size:12px; font-family:'Outfit',sans-serif; color:#4a5568; }
.vp-price-total { display:flex; justify-content:space-between; align-items:baseline; padding:10px 0 0; border-top:2px solid #1a2744; }
.vp-price-total-label { font-size:11px; color:#6b7280; text-transform:uppercase; font-family:'Outfit',sans-serif; }
.vp-price-total-val { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; color:#59b7b7; }
.vp-price-note { font-size:11px; color:#6b7280; text-align:center; margin-top:8px; font-family:'Outfit',sans-serif; }

/* ═══ CTA ═══ */
.vp-cta-btn { display:block; width:100%; padding:17px; background:linear-gradient(135deg,#59b7b7,#3d9a9a); color:#fff; border:none; border-radius:14px; font-family:'Outfit',sans-serif; font-size:16px; font-weight:700; cursor:pointer; margin-top:16px; transition:all .3s; letter-spacing:.3px; }
.vp-cta-btn:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(232,114,74,.3); }
.vp-cta-btn:disabled { opacity:.5; cursor:not-allowed; transform:none; box-shadow:none; }

/* ═══ REASSURANCE ═══ */
.vp-reassurance { margin-top:18px; display:flex; flex-direction:column; gap:6px; }
.vp-reass-item { font-size:12px; color:#6b7280; font-family:'Outfit',sans-serif; }

/* ═══ LIGHTBOX ═══ */
.vp-lightbox { position:fixed; inset:0; z-index:99999; background:rgba(0,0,0,.92); display:none; align-items:center; justify-content:center; }
.vp-lightbox.active { display:flex; }
.vp-lightbox img { max-width:90vw; max-height:85vh; border-radius:12px; }
.vp-lightbox-close { position:absolute; top:20px; right:24px; color:#fff; font-size:32px; cursor:pointer; background:none; border:none; }
.vp-lightbox-nav { position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:40px; cursor:pointer; background:rgba(255,255,255,.1); border:none; border-radius:50%; width:50px; height:50px; display:flex; align-items:center; justify-content:center; }
.vp-lightbox-prev { left:20px; }
.vp-lightbox-next { right:20px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
    .vp-inner { grid-template-columns:1fr; padding:0 24px 60px; }
    .vp-hero-content { padding:0 24px 40px; }
    .vp-calc-col { position:static; max-height:none; overflow-y:visible; }
    .vp-gallery { grid-template-columns:1fr 1fr; }
    .vp-hotel-header { flex-direction:column; gap:10px; }
}
@media (max-width:640px) {
    .vp-hero { height:45vh; min-height:300px; }
    .vp-hero-video { height:45vh; min-height:300px; }
    .vp-hero-content { padding:0 16px 24px; }
    .vp-hero-parc { font-size:12px; letter-spacing:1px; }
    .vp-meta-chip { font-size:11px; padding:6px 10px; }
    .vp-badge { top:14px; left:14px; font-size:11px; padding:6px 12px; }
    .vp-gallery { grid-template-columns:1fr; }
    .vp-section { padding:18px; border-radius:14px; }
    .vp-section-title { font-size:17px; }
    .vp-inner { padding:0 14px 40px; gap:20px; }
    .vp-calc-card { padding:20px; border-radius:16px; }
    .vp-calc-title { font-size:18px; }
    .vp-qty-btn { width:40px; height:40px; }
    .vp-price-total-val { font-size:24px; }
    .vp-cta-btn { font-size:14px; padding:15px; }
    .vp-lightbox-nav { width:36px; height:36px; font-size:28px; }
    .vp-lightbox-prev { left:10px; }
    .vp-lightbox-next { right:10px; }
    .vp-lightbox img { max-width:95vw; border-radius:8px; }
    .vp-hotel-badges { gap:4px; }
    .vp-hotel-badges span { font-size:10px; padding:3px 8px; }
    .vp-calc-opt-row { padding:8px 10px; gap:8px; }
    .vp-calc-opt-label { font-size:12px; }
    .vp-calc-opt-price { font-size:11px; }
}
