/* ============================================
   FICHE ÉTABLISSEMENT - VV
   Couleurs : #D32F2F rouge, #1E3A8A bleu, #F59E0B jaune
   ============================================ */

.vv-fiche-etab {
    --vv-rouge: #D32F2F;
    --vv-rouge-dark: #B71C1C;
    --vv-bleu: #1E3A8A;
    --vv-bleu-dark: #1E2D70;
    --vv-jaune: #F59E0B;
    --vv-vert-bg: #EAF3DE;
    --vv-vert-text: #173404;
    --vv-amber-bg: #FAEEDA;
    --vv-amber-text: #412402;
    --vv-bg: #FAFAF7;
    --vv-card-bg: #FFFFFF;
    --vv-border: rgba(0, 0, 0, 0.08);
    --vv-text: #1A1A1A;
    --vv-text-muted: #6B6B6B;
    --vv-radius: 12px;
    --vv-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vv-fiche-etab {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--vv-text);
    background: var(--vv-bg);
}

.vv-fiche-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HERO === */
.vv-fiche-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: flex-end;
}
.vv-fiche-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 80%);
}
.vv-fiche-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 40px;
}
.vv-fiche-breadcrumb {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 16px;
}
.vv-fiche-breadcrumb a {
    color: white;
    text-decoration: none;
}
.vv-fiche-breadcrumb a:hover {
    text-decoration: underline;
}
.vv-fiche-breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}
.vv-fiche-hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.vv-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}
.vv-badge-type {
    background: var(--vv-rouge);
}
.vv-fiche-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.vv-fiche-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}
.vv-fiche-rating .vv-star {
    font-size: 18px;
}
.vv-fiche-rating strong {
    font-size: 20px;
    font-weight: 700;
}
.vv-rating-count {
    opacity: 0.85;
    margin-left: 6px;
}

/* === BARRE CTA STICKY === */
.vv-fiche-cta-bar {
    background: var(--vv-bleu);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.vv-fiche-cta-bar .vv-fiche-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.vv-cta-info {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.vv-cta-label {
    font-size: 13px;
    opacity: 0.85;
}
.vv-cta-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--vv-jaune);
}
.vv-cta-price small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}
.vv-cta-note {
    font-size: 13px;
    margin-left: 16px;
}
.vv-cta-note strong {
    color: var(--vv-jaune);
}
.vv-cta-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.vv-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.vv-btn-primary {
    background: var(--vv-jaune);
    color: var(--vv-bleu);
}
.vv-btn-primary:hover {
    background: #E08A0B;
    transform: translateY(-1px);
}
.vv-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.vv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* === LAYOUT === */
.vv-fiche-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}
@media (max-width: 980px) {
    .vv-fiche-layout {
        grid-template-columns: 1fr;
    }
}

/* === BLOCS PRINCIPAUX === */
.vv-fiche-block {
    background: var(--vv-card-bg);
    border-radius: var(--vv-radius);
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: var(--vv-shadow);
    border: 1px solid var(--vv-border);
}
.vv-fiche-block h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--vv-bleu);
    display: flex;
    align-items: center;
    gap: 10px;
}
.vv-fiche-block h2 .vv-icon {
    font-style: normal;
    font-size: 24px;
}
.vv-fiche-block h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
}

/* === GALERIE === */
.vv-galerie-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
}
.vv-galerie-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.vv-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.vv-galerie-item:hover img {
    transform: scale(1.05);
}
.vv-galerie-item-0 {
    grid-row: 1 / 3;
    grid-column: 1;
}
.vv-galerie-plus {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(2px);
}
@media (max-width: 600px) {
    .vv-galerie-grid {
        height: 280px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .vv-galerie-item-0 { grid-row: 1 / 3; grid-column: 1 / 3; height: 200px; }
    .vv-galerie-item-3, .vv-galerie-item-4 { display: none; }
}

/* === VERDICT === */
.vv-fiche-verdict blockquote {
    margin: 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%);
    border-left: 4px solid var(--vv-jaune);
    border-radius: 8px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--vv-amber-text);
    font-family: "Dancing Script", "Poppins", cursive;
    font-style: normal;
}
.vv-fiche-visite {
    margin-top: 12px;
    font-size: 13px;
    color: var(--vv-text-muted);
}

/* === POINTS FORTS/FAIBLES === */
.vv-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .vv-pros-cons-grid { grid-template-columns: 1fr; }
}
.vv-pros, .vv-cons {
    padding: 20px 22px;
    border-radius: 10px;
}
.vv-pros {
    background: var(--vv-vert-bg);
}
.vv-pros h3, .vv-pros li {
    color: var(--vv-vert-text);
}
.vv-cons {
    background: var(--vv-amber-bg);
}
.vv-cons h3, .vv-cons li {
    color: var(--vv-amber-text);
}
.vv-pros ul, .vv-cons ul {
    margin: 0;
    padding-left: 20px;
}
.vv-pros li, .vv-cons li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* === HÉBERGEMENTS === */
.vv-hebergements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.vv-heb-card {
    background: #F5F5F0;
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid var(--vv-border);
}
.vv-heb-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--vv-bleu);
}
.vv-heb-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--vv-text-muted);
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.vv-heb-prix {
    color: var(--vv-rouge) !important;
    font-weight: 600;
}
.vv-heb-card p {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--vv-text-muted);
}

/* === ÉQUIPEMENTS === */
.vv-equipements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vv-equip-badge {
    background: #F0F4FA;
    color: var(--vv-bleu);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

/* === FAQ === */
.vv-faq-item {
    border-bottom: 1px solid var(--vv-border);
    padding: 16px 0;
}
.vv-faq-item:last-child {
    border-bottom: none;
}
.vv-faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    padding: 4px 0;
    color: var(--vv-bleu);
}
.vv-faq-item summary::-webkit-details-marker { display: none; }
.vv-faq-item summary::before {
    content: "+";
    display: inline-block;
    width: 24px;
    font-weight: 700;
    color: var(--vv-rouge);
    font-size: 18px;
}
.vv-faq-item[open] summary::before { content: "−"; }
.vv-faq-answer {
    margin-top: 10px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--vv-text-muted);
}

/* === SIDEBAR === */
.vv-fiche-sidebar-block {
    background: var(--vv-card-bg);
    border-radius: var(--vv-radius);
    padding: 22px 24px;
    margin-bottom: 20px;
    border: 1px solid var(--vv-border);
    box-shadow: var(--vv-shadow);
}
.vv-fiche-sidebar-block h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--vv-bleu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vv-infos-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.vv-infos-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--vv-border);
    font-size: 14px;
    line-height: 1.5;
}
.vv-infos-list li:last-child { border-bottom: none; }
.vv-infos-list strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--vv-text-muted);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.vv-infos-list a {
    color: var(--vv-bleu);
    text-decoration: none;
}
.vv-infos-list a:hover { text-decoration: underline; }
.vv-infos-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.vv-feature {
    background: #F0F4FA;
    color: var(--vv-bleu);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* === MINI CARTE === */
#vv-mini-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: #C8DDC0;
}
.vv-gps {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--vv-text-muted);
}

/* === CTA SECONDAIRE === */
.vv-fiche-cta-secondary {
    background: linear-gradient(135deg, var(--vv-rouge) 0%, var(--vv-rouge-dark) 100%) !important;
    color: white !important;
    border: none !important;
}
.vv-fiche-cta-secondary h3 {
    color: white !important;
}
.vv-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vv-btn-affiliate {
    background: white;
    color: var(--vv-rouge);
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}
.vv-btn-affiliate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.vv-btn-hotelscom {
    background: #D9232A;
    color: #fff !important;
}
.vv-btn-hotelscom:hover {
    background: #b71c22;
}
.vv-btn-primary.vv-btn-hotelscom {
    background: #D9232A;
    color: #fff;
}
.vv-cta-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 0;
    line-height: 1.4;
}

/* === ATTRIBUTIONS GOOGLE === */
.vv-fiche-attributions {
    padding: 16px 0;
    background: #F5F5F0;
    border-top: 1px solid var(--vv-border);
    text-align: center;
}
.vv-fiche-attributions p {
    font-size: 11px;
    color: var(--vv-text-muted);
    margin: 0;
}
