/* =============================================================================
   visit-tickets.com - template.css partagé v2
   =============================================================================
   Variables CSS injectées par template.php depuis le manifest theme.
   Un seul fichier CSS pour toutes les attractions (vs 12 fichiers v1).
   ============================================================================= */

/* === RESET / BASE === */
* { box-sizing: border-box; }
html {
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-body);
  color: #333;
  overflow-x: hidden;
  margin: 0;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent-color);
  color: var(--accent-text);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* === FOCUS VISIBLE (WCAG 2.4.7) === */
:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}
.accordion-button:focus-visible {
  box-shadow: none;
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}
.btn-nav-cta:focus-visible,
.family-calc-stepper .stepper-btn:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
  box-shadow: none;
}

/* === NAVBAR === */
.navbar { padding: 1rem 0; }

/* === SUBNAV (mini-sites multi-pages) === */
.vt-subnav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 1029;
  background: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.vt-subnav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.vt-subnav .container::-webkit-scrollbar { display: none; }
.vt-subnav a {
  color: var(--accent-text);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: .55rem .9rem;
  white-space: nowrap;
  opacity: .82;
  transition: opacity .15s, background .15s;
  border-bottom: 3px solid transparent;
}
.vt-subnav a:hover { opacity: 1; background: rgba(0,0,0,.1); }
.vt-subnav a.active { opacity: 1; border-bottom-color: var(--accent-text); }
html.has-subnav {
  scroll-padding-top: 120px;
}
html.has-subnav .page-toc { top: 122px; }
@media (max-width: 991px) {
  .vt-subnav { top: 62px; }
}


.navbar-brand { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; letter-spacing: 0.05em; color: var(--accent-color) !important; }
.navbar-brand-icon { width: 28px; height: 28px; object-fit: contain; }
.nav-link { font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s ease; }
.nav-link:hover { color: var(--accent-color) !important; }
@media (min-width: 1200px) {
  .navbar-nav > .nav-item + .nav-item:not(.ms-lg-3):not(.lang-dropdown) {
    margin-left: .75rem;
  }
}
.navbar-nav button.nav-link { background: none; border: none; padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); }
.navbar-nav .dropdown-menu { border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.1); border: none; padding: .5rem; min-width: 200px; }
.navbar-nav .dropdown-item { border-radius: 6px; font-size: .9rem; padding: .45rem .75rem; }
.navbar-nav .dropdown-item:hover { background: rgba(0,0,0,.04); color: var(--accent-color); }
.navbar-nav .dropdown-divider { margin: .3rem 0; }
.btn-nav-cta {
  background: var(--accent-color); color: var(--accent-text) !important;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-nav-cta:hover {
  background: color-mix(in srgb, var(--accent-color) 80%, black);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color) 50%, transparent);
}

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  color: white;
  padding: 6rem 0 1.25rem;
  overflow: hidden;
}
.hero-section > .container {
  display: flex;
  flex-direction: column;
}
.hero-section > .container > .row {
  flex: 1 0 auto;
  align-items: center;
}
.hero-bg-picture {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.3) brightness(0.4) contrast(1.15);
}
/* Voile sombre pour assombrir l'image hero + lisibilité texte */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.52) 100%);
  z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: #ff8c42;        /* TOUJOURS orange (constraint) */
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* === Hero pricing + rating (NEW v2) === */
.hero-pricing-row { color: white; }
.hero-price {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.hero-price-prefix { font-size: 0.85rem; opacity: 0.9; }
.hero-price-value { font-size: 1.5rem; font-weight: 800; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-rating-stars i { color: rgb(251, 188, 4); font-size: 1rem; margin-right: 1px; }
.hero-rating-text { font-size: 0.95rem; opacity: 0.95; }

/* === Hero guarantees (NEW v2) === */
.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.95rem;
  opacity: 0.92;
}
.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-guarantee i { color: #4ade80; }

/* === CTAs === */
.btn-primary-cta {
  background: var(--accent-color); color: var(--accent-text) !important;
  border: none;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.btn-primary-cta:hover {
  background: color-mix(in srgb, var(--accent-color) 80%, black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color) 50%, transparent);
}
.btn-outline-light-custom {
  border: 2px solid rgba(255,255,255,0.6);
  color: white !important;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}
.btn-outline-light-custom:hover { background: rgba(255,255,255,0.1); }

/* Espace vertical autour des CTAs hero pour les faire respirer */
.hero-cta-row {
  margin-top: 2.5rem !important;
  margin-bottom: 2.25rem !important;
}

/* Bouton hero principal - plus gros et plus présent */
.btn-hero-cta {
  padding: 1.1rem 2.4rem !important;
  font-size: 1.2rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-hero-cta i {
  font-size: 1.05em;
  margin-right: 0.6rem;
}

/* CTA "Voir toutes les options de visite" - centré full-width sous why_book */
.btn-options-cta {
  background: var(--secondary-color);
  color: white !important;
  border: none;
  padding: 1.1rem 2.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--secondary-color) 30%, transparent);
}
.btn-options-cta i {
  margin-left: 0.55rem;
}
.btn-options-cta:hover {
  background: color-mix(in srgb, var(--secondary-color) 85%, black);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--secondary-color) 45%, transparent);
}
.mobile-tickets-info, .whats-included-info {
  font-size: 1rem; opacity: 0.92;
}
.quick-fact-item {
  display: inline-block;
  margin-right: 1.2rem;
}
.quick-fact-item:last-child { margin-right: 0; }
.hero-title-facts {
  opacity: 0.95;
}
.hero-title-facts .quick-fact-item {
  margin-bottom: 0.25rem;
}

/* Promo ribbon Tiqets */
.btn-with-ribbon { position: relative; }
.promo-ribbon {
  position: absolute; top: -10px; right: -10px;
  background: #dc3545; color: white;
  padding: 0.2rem 0.6rem; font-size: 0.75rem; font-weight: 700;
  border-radius: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* === Hero widget container (anti-CLS, sans cadre blanc - laisse le widget Tiqets/GYG gérer son propre style) === */
.hero-widget-wrapper {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bouton sous le widget : centré sur l'axe du widget. */
.hero-widget-cta-below {
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
}
.hero-widget-cta-below .btn {
  width: auto;
  display: inline-flex;
  white-space: nowrap;
}

/* === ALERT BANNER === */
.alert-banner {
  background: #dc3545;       /* TOUJOURS rouge */
  color: white;
  padding: 1.25rem 0;
}
.alert-content { display: flex; align-items: center; gap: 1rem; }
.alert-icon-col i { font-size: 2rem; }
.alert-message strong {
  background: rgba(255,255,255,0.18);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}

/* === SECTIONS GENERIQUES === */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--tertiary-color);
  border-radius: 2px;
}
.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* === WHY BOOK === */
.why-book-section { padding: 5rem 0 3rem; background: var(--background-soft); }

/* === BANDEAU CTA après why_book : pousse vers booking === */
.why-book-cta-banner {
  background: var(--background-soft);
  padding: 0 0 4rem;
}
.why-book-cta-banner-inner {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color, var(--accent-color)) 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  color: white;
}
.why-book-cta-banner-text { flex: 1 1 auto; min-width: 280px; }
.why-book-cta-banner-title { color: white; margin: 0 0 0.4rem; font-size: 1.5rem; font-weight: 700; }
.why-book-cta-banner-sub { color: rgba(255,255,255,0.92); margin: 0; font-size: 0.95rem; line-height: 1.5; }
.why-book-cta-banner-sub strong { color: white; font-weight: 700; }
.why-book-cta-banner-btn {
  background: white !important;
  color: var(--accent-color) !important;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-book-cta-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); color: var(--accent-color) !important; }
@media (max-width: 768px) {
  .why-book-cta-banner-inner { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .why-book-cta-banner-title { font-size: 1.25rem; }
  .why-book-cta-banner-btn { width: 100%; justify-content: center; }
}
/* Widget descendu sur desktop pour s'aligner avec le bas des reason cards.
   Mobile : aucun changement (mt-5 Bootstrap conservé). */
@media (min-width: 992px) {
  .why-book-widget-col { margin-top: 8.75rem !important; }
}
.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.reason-card:hover { transform: translateY(-5px); }
.reason-icon {
  width: 60px; height: 60px;
  background: var(--accent-color); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.reason-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.reason-card p strong { color: #222; font-weight: 700; }
.reason-card p mark {
  background: color-mix(in srgb, var(--accent-color) 18%, transparent);
  color: inherit;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* === COLLECTION / STATS (FOND SOMBRE OBLIGATOIRE) === */
.collection-section,
.collection-section-inline {
  padding: 4rem 2rem;
  background: var(--primary-dark);
  color: white;
  border-radius: 8px;
}
.collection-stat { text-align: center; padding: 1rem; }
.collection-stat h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--stat-counter-color);
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.collection-stat h3.stat-value-long {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}
.collection-stat p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; }
.artist-badge {
  display: inline-block;
  border-left: 3px solid var(--accent-color);
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 0.4rem 0.9rem;
  margin: 0.25rem;
  /* Coins gauches droits (alignés avec le border-left), arrondis à droite */
  border-radius: 0 3px 3px 0;
  font-size: 0.85rem;
}
.details-seo { margin-top: 1.5rem; }
.seo-intro {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.seo-intro strong { color: white; }
/* "Lire plus" inline en fin de paragraphe d'intro
   Couleur éclaircie via color-mix pour lisibilité WCAG AA sur fond sombre
   (mix accent 50% + white 50% → ~7:1 sur primary-dark, peu importe le thème) */
.seo-more-trigger {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.4rem;
  color: color-mix(in srgb, var(--accent-color) 50%, white);
  cursor: pointer;
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.seo-more-trigger:hover {
  color: white;
  text-decoration-color: white;
}
.seo-more-trigger i {
  font-size: 0.85em;
  margin-left: 0.2rem;
  transition: transform 0.3s;
  display: inline-block;
}
.seo-more-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.details-content { color: rgba(255,255,255,0.85); text-align: left; }
.details-content h4 { color: white; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.details-content p { margin-bottom: 0.85rem; }
.details-content strong { color: white; }
.details-content mark {
  background: color-mix(in srgb, var(--accent-color) 25%, transparent);
  color: white;
  padding: 1px 5px;
  border-radius: 3px;
}

/* === GALLERY === */
.gallery-section { padding: 5rem 0; }
.gallery-image {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-image:hover img { transform: scale(1.05); }
.gallery-image.tall { min-height: 600px; }

/* === NEARBY (cards cliquables si sister_slug) === */
.nearby-section { background: var(--background-soft); }
.nearby-card {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.nearby-card-link { display: block; color: inherit; }
.nearby-card-link-active {
  border: 2px solid transparent;
  position: relative;
}
.nearby-card-link-active:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.nearby-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.nearby-title { font-size: 1.15rem; margin-bottom: 0.25rem; }
.nearby-distance { font-size: 0.85rem; color: var(--accent-color); font-weight: 600; margin-bottom: 0.5rem; }
.nearby-cta {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* === DISCOVERY === */
.discovery-section { background: white; }
/* Discovery widget : pas de min-height fixe = pas d'espace vide quand le widget rend
   plus petit. Tradeoff CLS : acceptable car le widget se charge dans un section interne. */
.discovery-widget-container { min-height: 0; }

/* === INFO === */
.info-section { background: white; }
.info-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}
.info-card.hover-lift:hover { transform: translateY(-3px); transition: transform 0.3s; }
.info-card i { font-size: 1.75rem; color: var(--accent-color); margin-bottom: 0.75rem; }
.info-title { font-size: 1.2rem; margin-bottom: 0.75rem; }
.info-card-body { margin-bottom: 1rem; font-size: 0.95rem; }

/* Bouton "Voir toutes les options de visite"
   Utilise `theme.secondary` du manifest pour cohérence visuelle par attraction
   (bleu profond pour Sagrada, etc.). Override Bootstrap .btn-primary intentionnel.
   inline-flex pour parfait alignement texte + chevron. */
.btn-generic-options {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--secondary-text) !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-generic-options i {
  color: var(--secondary-text) !important;
  font-size: 0.85em;
  margin: 0;
}
.btn-generic-options:hover {
  background: color-mix(in srgb, var(--secondary-color) 85%, black) !important;
  border-color: color-mix(in srgb, var(--secondary-color) 85%, black) !important;
  color: var(--secondary-text) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--secondary-color) 40%, transparent);
}
.btn-generic-options:hover i { color: var(--secondary-text) !important; }

/* === TIPS / CONSEILS DE VISITE === */
.tips-section {
  background: linear-gradient(180deg, var(--background-soft) 0%, white 100%);
}
.tip-card {
  position: relative;
  background: white;
  padding: 1.75rem 1.5rem 1.75rem 1.85rem;   /* +0.35rem padding-left pour compenser le bar */
  /* Coins droits à gauche (alignés avec le bar) + arrondis à droite */
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
/* Trait gauche full-height, ignore le border-radius - pseudo-élément absolu */
.tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--accent-color);
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.tip-icon {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.tip-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.tip-text {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}
.tip-text strong { color: #222; font-weight: 700; }
.tip-text mark {
  background: color-mix(in srgb, var(--accent-color) 18%, transparent);
  color: inherit;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* === HEBERGEMENT === */
.hebergement-section { background: var(--background-soft); }
#stay22-widget { border-radius: 6px; }

/* === TABLE OF CONTENTS (fixed, desktop only) === */
.page-toc {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: max(8px, calc((100vw - 1320px) / 2 - 175px));
  width: 162px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}
@media (min-width: 1600px) { .page-toc { display: block; } }
.page-toc.visible { opacity: 1; pointer-events: auto; }
.page-toc-list { list-style: none; padding: 0; margin: 0; }
.page-toc-item { margin-bottom: 1px; }
.page-toc-item a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #aaa;
  text-decoration: none;
  padding: 0.22rem 0.6rem;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, font-weight 0.1s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-toc-item a:hover { color: var(--accent-color); border-left-color: var(--accent-color); }
.page-toc-item.toc-active a { color: var(--accent-color); border-left-color: var(--accent-color); font-weight: 700; }

/* === STICKY PRICE BAR (bandeau prix bas de page, dismissible) === */
.sticky-price-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1040;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-price-bar:not([hidden]) { display: block; }
.sticky-price-bar.is-visible { transform: translateY(0); }
.sticky-price-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
}
.sticky-price-bar-info { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.sticky-price-bar-price { display: inline-flex; align-items: baseline; gap: 0.45rem; }
.sticky-price-bar-label { font-size: 0.85rem; color: #666; }
.sticky-price-bar-original { color: #999; font-size: 0.95rem; }
.sticky-price-bar-promo { font-size: 1.35rem; color: var(--accent-color); font-weight: 800; }
.sticky-price-bar-promo-tag {
  background: #dc3545; color: #ffffff;
  padding: 0.15rem 0.5rem; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  align-self: center;
}
.sticky-price-bar-rating { display: inline-flex; align-items: baseline; gap: 0.3rem; font-size: 0.95rem; color: #333; }
.sticky-price-bar-stars { color: rgb(251, 188, 4); font-size: 1rem; }
.sticky-price-bar-actions { display: inline-flex; align-items: center; gap: 0.5rem; }
.sticky-price-bar-cta {
  background: var(--accent-color); color: var(--accent-text) !important;
  border: none; padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 600; text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.sticky-price-bar-cta:hover { filter: brightness(0.92); }
.sticky-price-bar-close {
  background: transparent; border: none;
  font-size: 1.5rem; line-height: 1; color: #999; cursor: pointer;
  padding: 0.25rem 0.5rem; border-radius: 4px;
}
.sticky-price-bar-close:hover { color: #333; background: rgba(0,0,0,0.05); }
@media (max-width: 768px) {
  .sticky-price-bar-inner { padding: 0.6rem 0.85rem; gap: 0.5rem; }
  .sticky-price-bar-info { gap: 0.75rem; }
  .sticky-price-bar-promo { font-size: 1.15rem; }
  .sticky-price-bar-rating { display: none; }
  .sticky-price-bar-cta { padding: 0.5rem 1rem; font-size: 0.9rem; }
}

/* === HERO RATING BAR (note agrégée flush bottom du hero via flex, fond blanc) === */
.hero-rating-bar {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  color: #333;
}
.hero-rating-aggregate {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1.05rem;
  color: #222;
}
.hero-rating-stars { color: rgb(251, 188, 4); letter-spacing: 0.05em; font-size: 1.1rem; }
.hero-rating-meta { color: #666; font-size: 0.9rem; font-weight: 400; }
.hero-rating-sources {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  align-items: center;
}
.hero-rating-source {
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}
a.hero-rating-source:hover { color: var(--accent-color); text-decoration: underline; }
.hero-rating-count { color: #999; font-size: 0.8rem; }
@media (max-width: 768px) {
  .hero-rating-bar { flex-direction: column; align-items: flex-start; }
}

/* === TESTIMONIALS === */
.testimonials-section { padding: 5rem 0 1rem; background: var(--background-soft); }
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
}
.testimonial-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
  letter-spacing: 0.5px;
}
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-stars { display: flex; align-items: center; gap: 2px; color: rgb(251, 188, 4); margin-bottom: 0.6rem; }
.testimonial-stars .star-empty { color: #ddd; }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; margin-bottom: 0; font-size: 0.95rem; }
.testimonial-location { font-size: 0.82rem; color: #888; margin: 0; }

/* === FAQ (catégorisée) === */
.faq-section { padding: 5rem 0; background: white; }
.faq-category-title {
  color: var(--accent-color);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}
.accordion-button:not(.collapsed) {
  background: var(--accent-color); color: var(--accent-text);
}
.accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(0,0,0,0.1); }

/* === LOCAL VOICE (Avis du local) === */
.local-voice-section { background: white; padding-top: 4rem !important; padding-bottom: 4rem !important; }

/* Bouton "Voir plus d'avis" : outline burgundy compact, bcp moins imposant que btn-options-cta */
.btn-testi-toggle {
  background: transparent;
  color: var(--secondary-color);
  border: 1.5px solid var(--secondary-color);
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-testi-toggle i { margin-left: 0.4rem; font-size: 0.85em; }
.btn-testi-toggle:hover {
  background: var(--secondary-color);
  color: white;
}
.tarifs-toggle-link {
  display: inline-block;
  margin-top: .4rem;
  font-size: .85rem;
  color: var(--secondary-color);
  text-decoration: underline;
}
.tarifs-toggle-link:hover { opacity: .75; }
.local-voice-card {
  background: white;
  border-radius: 0 8px 8px 0;
  border-left: 4px solid var(--accent-color);
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  position: relative;
}
.local-voice-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.local-voice-avatar {
  width: 56px; height: 56px;
  background: var(--accent-color); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.local-voice-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.local-voice-title { font-size: 1.5rem; margin: 0; color: #222; }
.local-voice-persona { font-size: 0.9rem; color: #777; margin: 0.25rem 0 0; }
.local-voice-intro { font-size: 1.05rem; line-height: 1.65; color: #444; font-style: italic; margin-bottom: 1.25rem; }
.local-voice-tips { list-style: none; padding: 0; margin: 0; }
.local-voice-tips li {
  display: flex;
  gap: 0.8rem;
  padding: 0.6rem 0;
  position: relative;
  border-top: 1px solid #eee;
  line-height: 1.5;
}
.local-voice-tips li:first-child { border-top: none; }
.local-voice-tip-icon {
  margin-top: 0.2rem;
  flex: 0 0 auto;
  font-size: 0.9rem;
}
.local-voice-tips li strong { color: #222; }

/* === ITINERARY === */
.itinerary-section { background: var(--background-soft); }
.itinerary-card {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.itinerary-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.itinerary-duration {
  display: inline-block;
  background: var(--accent-color); color: var(--accent-text);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.itinerary-title { font-size: 1.2rem; margin-bottom: 1rem; color: #222; }
.itinerary-steps {
  padding-left: 1.25rem;
  margin: 0;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.itinerary-steps.expanded { max-height: 3000px; }
.itinerary-steps li { padding: 0.45rem 0; line-height: 1.55; color: #555; }
.itinerary-steps li strong { color: #222; }
.itinerary-toggle {
  margin-top: 0.75rem;
  padding: 0.25rem 0;
  color: var(--accent-color);
  font-size: 0.875rem;
  text-decoration: none;
}
.itinerary-toggle:hover { color: var(--accent-color); text-decoration: underline; }
.itinerary-toggle .fa-chevron-down { transition: transform 0.2s; }
.itinerary-toggle.expanded .fa-chevron-down { transform: rotate(180deg); }

/* Pass de la ville : 4ème card avec accent visuel tertiary (or doré pour Sagrada) */
.itinerary-card-pass {
  display: flex;
  flex-direction: column;
  background: color-mix(in srgb, var(--tertiary-color) 8%, white) !important;
  border-color: var(--tertiary-color) !important;
}
.itinerary-card-pass:hover {
  border-color: var(--tertiary-color) !important;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--tertiary-color) 25%, transparent);
}
.itinerary-duration-pass {
  background: var(--tertiary-color) !important; color: var(--tertiary-text) !important;
}
.city-pass-price {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0.85rem;
}
.city-pass-price strong { color: var(--tertiary-color); font-size: 1.25rem; }
.city-pass-highlights {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.95rem;
}
.city-pass-highlights li { padding: 0.3rem 0; line-height: 1.4; }
.city-pass-img-wrap {
  margin: 0 0 0.85rem;
  border-radius: 8px;
  overflow: hidden;
}
.city-pass-img-wrap img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.city-pass-desc-list {
  padding-left: 1.1rem;
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.35;
}
.city-pass-desc-list li { padding: 0.1rem 0; }
.city-pass-tagline {
  font-size: 0.82rem;
  color: #555;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

@media (min-width: 992px) {
  .itinerary-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .itinerary-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .itinerary-grid > [class*="col"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: none !important;
  }
}

/* === COMPARISON TABLE === */
.comparison-section { background: var(--background-soft); }
.comparison-table {
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.comparison-table thead th { background: #f1f3f5; font-weight: 700; color: #222; }
.comparison-attr-name { text-align: left !important; background: #fafbfc; font-weight: 600; }
.comparison-featured {
  background: color-mix(in srgb, var(--accent-color) 8%, white) !important;
  border-left: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
}
.comparison-table thead .comparison-featured { border-top: 3px solid var(--accent-color); }
.comparison-table tbody tr:last-child .comparison-featured { border-bottom: 3px solid var(--accent-color); }
.comparison-badge {
  display: block;
  font-size: 0.7rem;
  background: var(--accent-color); color: var(--accent-text);
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 0.4rem;
}

/* === GLOSSARY === */
.glossary-section { background: white; }
.glossary-card {
  background: var(--background-soft);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--secondary-color);
  height: 100%;
  overflow: hidden;
}
.glossary-card-img-banner {
  width: 100%;
  height: 90px;
  overflow: hidden;
}
.glossary-card-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.glossary-card-body {
  padding: 1.5rem;
}
.glossary-card-img-sq {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.glossary-card-img-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.glossary-term { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--secondary-color); font-weight: 700; }
.glossary-def { font-size: 0.95rem; line-height: 1.55; color: #444; margin-bottom: 0.75rem; }
.glossary-for { font-size: 0.85rem; color: #666; margin: 0 0 0.75rem; padding: 0.5rem 0.75rem; background: white; border-radius: 4px; }
.btn-glossary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--accent-text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-glossary-cta i { font-size: 0.85em; color: var(--accent-text) !important; }
.btn-glossary-cta:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black) !important;
  border-color: color-mix(in srgb, var(--accent-color) 85%, black) !important;
  color: var(--accent-text) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

/* === TICKET QUIZ === */
.ticket-quiz-section { background: var(--background-soft); }
.ticket-quiz {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 1.5rem;
  align-items: stretch;
}
.ticket-quiz-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.ticket-quiz-group,
.ticket-quiz-result {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.ticket-quiz-group h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.ticket-quiz-group button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #222;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.55rem;
  font-weight: 650;
  text-align: left;
}
.ticket-quiz-group button:last-child { margin-bottom: 0; }
.ticket-quiz-group button:hover,
.ticket-quiz-group button.is-selected {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, #fff);
}
.ticket-quiz-group button i { color: var(--accent-color); width: 18px; text-align: center; }
.ticket-quiz-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.ticket-quiz-result h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.ticket-quiz-result p { color: #555; margin-bottom: 0.85rem; line-height: 1.55; }
.ticket-quiz-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.ticket-quiz-tags span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--secondary-color);
  background: var(--background-soft);
  border-radius: 50px;
  padding: 0.2rem 0.55rem;
}
@media (max-width: 900px) {
  .ticket-quiz { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ticket-quiz-controls { grid-template-columns: 1fr; }
}

/* === CALCULATEUR FAMILLE === */
.family-calculator-section { background: linear-gradient(160deg, #f0f3f7 0%, #e6ebf0 100%); }
.family-calc-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.07);
}
.family-calc-inputs {
  border: 1.5px solid #ebebeb;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.family-calc-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.1rem 1.35rem;
  gap: 1rem;
  background: white;
  transition: background .15s;
}
.family-calc-row:not(:last-of-type) { border-bottom: 1px solid #f2f2f2; }
.family-calc-row:hover { background: #fafafa; }
.family-calc-label { display: flex; flex-direction: column; gap: .15rem; flex: 1; min-width: 0; }
.family-calc-type { font-weight: 700; color: var(--secondary-color); font-size: 1rem; display: block; }
.family-calc-type small { font-weight: 400; color: #aaa; font-size: .78rem; }
.family-calc-unit-price { font-size: .87rem; color: #888; display: block; margin-top: .05rem; }
.family-calc-unit-price s { color: #ccc; margin-right: .2rem; }
.family-calc-unit-price strong { color: var(--accent-color); font-size: .95rem; }
.family-calc-stepper {
  display: flex !important;
  align-items: center !important;
  gap: .9rem !important;
  flex-shrink: 0;
}
.family-calc-stepper .stepper-btn {
  width: 40px !important; height: 40px !important; min-width: 40px !important;
  border-radius: 50% !important;
  border: 2px solid var(--accent-color) !important;
  background: white !important;
  color: var(--accent-color) !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 0 !important;
  transition: background .15s, color .15s, transform .12s !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
}
.family-calc-stepper .stepper-btn:hover {
  background: var(--accent-color) !important;
  color: var(--accent-text) !important;
  transform: scale(1.1) !important;
}
.stepper-val { font-size: 1.6rem; font-weight: 800; min-width: 2rem; text-align: center; color: var(--secondary-color); }
.family-calc-baby-note { font-size: .82rem; color: #aaa; margin: .75rem 1.35rem 0; padding-bottom: .25rem; }
.family-calc-result {
  background: var(--accent-color);
  border-radius: 14px;
  padding: 1.4rem 1.75rem;
  color: var(--accent-text);
  margin-bottom: 1.25rem;
}
.family-calc-total-row { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.family-calc-total-label { font-size: .88rem; opacity: .85; font-weight: 500; }
.family-calc-total-wrap { display: flex; flex-direction: column; align-items: flex-end; }
.family-calc-total-base { font-size: 1rem; opacity: .6; text-decoration: line-through; line-height: 1; margin-bottom: .15rem; }
.family-calc-total { font-size: 2.1rem; font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.family-calc-detail { font-size: .82rem; opacity: .75; margin-top: .3rem; text-align: right; }
.family-calc-promo-top {
  background: #c0392b;
  color: white;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .65rem 1.5rem;
  margin: -2.25rem -2.5rem 1.75rem;
  border-radius: 18px 18px 0 0;
}
.family-calc-promo-top i { animation: pulse 1.4s ease-in-out infinite; display: inline-block; }
.family-calc-cta-btn {
  display: block !important;
  width: 100% !important;
  padding: .9rem 1rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-align: center;
}
@media (max-width: 576px) {
  .family-calc-card { padding: 1.5rem 1.25rem; }
  .family-calc-promo-top { margin: -1.5rem -1.25rem 1.5rem; border-radius: 16px 16px 0 0; }
  .family-calc-row { padding: .9rem 1rem; }
  .family-calc-total { font-size: 1.65rem; }
  .family-calc-stepper .stepper-btn { width: 36px !important; height: 36px !important; min-width: 36px !important; }
  .stepper-val { font-size: 1.35rem; }
}

/* === FUN FACTS (Saviez-vous) === */
.fun-facts-section { background: white; }
.fun-fact-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fun-fact-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: color-mix(in srgb, var(--tertiary-color) 15%, transparent);
  border-radius: 0 0 0 100%;
}
.fun-fact-icon {
  width: 44px; height: 44px;
  background: var(--tertiary-color); color: var(--tertiary-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  position: relative; z-index: 1;
}
.fun-fact-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #222; position: relative; z-index: 1; }
.fun-fact-text { font-size: 0.95rem; line-height: 1.6; color: #555; margin: 0; position: relative; z-index: 1; }
.fun-fact-text strong { color: #222; }
.fun-fact-text mark {
  background: color-mix(in srgb, var(--tertiary-color) 25%, transparent);
  padding: 1px 5px;
  border-radius: 3px;
}

/* === MÉTÉO === */
.weather-section { background: #f8f9fa; }
.weather-loading { text-align: center; padding: 2rem; color: #6c757d; font-size: 1rem; }
.weather-error { text-align: center; padding: 1.5rem; color: #dc3545; font-size: .9rem; }

.weather-today-row {
  display: flex; gap: 1.25rem; align-items: stretch; margin-bottom: 1.75rem;
}
.weather-hourly-col {
  flex: 1; min-width: 0; display: flex; flex-direction: column;
}
.weather-current {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  background: var(--accent-color); color: var(--accent-text);
  border-radius: 14px; padding: 1.5rem 2rem;
  flex-shrink: 0; width: 280px;
}
@media (max-width: 767px) {
  .weather-today-row { flex-direction: column; }
  .weather-current { width: 100%; }
}
.weather-current-main { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 200px; }
.weather-emoji { font-size: 3.5rem; line-height: 1; }
.weather-temp-block {}
.weather-temp { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.weather-feels { font-size: .85rem; opacity: .8; margin-top: .15rem; }
.weather-desc-block { flex: 1; min-width: 160px; }
.weather-desc { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.weather-details { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; font-size: .85rem; opacity: .9; }
.weather-details span { display: flex; align-items: center; gap: .35rem; }

.weather-hourly-title { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; margin-bottom: .6rem; }
.weather-hourly-strip {
  display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .5rem;
  scrollbar-width: thin; flex: 1; align-content: flex-start;
}
.weather-hour {
  min-width: 58px; flex-shrink: 0; text-align: center;
  background: white; border-radius: 12px; padding: .6rem .4rem;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
}
.weather-hour.now { border: 2px solid var(--accent-color); }
.weather-hour-time { font-size: .7rem; color: #6c757d; margin-bottom: .25rem; font-weight: 600; }
.weather-hour-icon { font-size: 1.35rem; line-height: 1.2; }
.weather-hour-temp { font-size: .88rem; font-weight: 700; margin-top: .2rem; }
.weather-hour-feels { font-size: .68rem; color: #6c757d; margin-top: .05rem; }
.weather-hour-precip { font-size: .7rem; color: #3b82f6; margin-top: .15rem; }
.weather-hour-extra { font-size: .68rem; color: #6c757d; margin-top: .1rem; }
.weather-hour-extra small { font-size: .6rem; }

.weather-daily-title { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; margin-bottom: .6rem; }
.weather-daily { display: flex; flex-direction: column; gap: .45rem; }
.weather-day {
  display: flex; align-items: center; gap: .85rem;
  background: white; border-radius: 10px; padding: .65rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.weather-day-name { width: 95px; font-weight: 600; font-size: .9rem; }
.weather-day-icon { font-size: 1.25rem; width: 28px; text-align: center; }
.weather-day-desc { flex: 1; font-size: .82rem; color: #6c757d; }
.weather-day-temps { display: flex; gap: .4rem; font-size: .9rem; align-items: center; margin-left: auto; }
.weather-day-max { font-weight: 700; }
.weather-day-min { color: #6c757d; }
.weather-day-feels { font-size: .75rem; color: #6c757d; width: 100px; text-align: right; white-space: nowrap; }
.weather-day-wind { font-size: .75rem; color: #374151; width: 70px; text-align: right; white-space: nowrap; }
.weather-day-wind .fa-wind { font-size: .7rem; }
.weather-day-mm { font-size: .75rem; color: #3b82f6; width: 48px; text-align: right; white-space: nowrap; }
.weather-day-precip { font-size: .78rem; color: #3b82f6; width: 46px; text-align: right; }
@media (max-width: 768px) {
  .weather-day-feels, .weather-day-wind { display: none; }
}
@media (max-width: 576px) {
  .weather-day-desc { display: none; }
  .weather-day-name { width: 75px; }
}

/* === MAP LEAFLET === */
.map-section { background: white; }
.leaflet-map-container {
  height: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  overflow: hidden;
}
.leaflet-popup-content { font-size: 0.95rem; }
.leaflet-popup-content a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}
.leaflet-popup-content a:hover { text-decoration: underline; }

/* === SLIDESHOW (Bootstrap Carousel) === */
.slideshow-section { background: transparent; }
.slideshow-section .carousel {
  border-radius: 8px;
}
.slideshow-section .carousel-item {
  background: transparent;
  text-align: center;
}
.slideshow-section .slideshow-img {
  display: block;
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
/* === ICÔNES SUR BACKGROUND : pattern réutilisable (slideshow arrows, etc.) ===
   Approche : pastille blanche solide + SVG arrow chevron sombre via background-image data URL
   + shadow forte. ZÉRO filter:invert (qui casse tout dès qu'il y a un fond clair derrière). */
.slideshow-section .carousel-control-prev,
.slideshow-section .carousel-control-next {
  width: 60px;
  opacity: 1;
  z-index: 5;
}
.slideshow-section .carousel-control-prev-icon,
.slideshow-section .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  background-size: 18px 18px;
  background-position: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.slideshow-section .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}
.slideshow-section .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.slideshow-section .carousel-control-prev:hover .carousel-control-prev-icon,
.slideshow-section .carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 16px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.12);
}
.slideshow-section .carousel-indicators [data-bs-target] {
  background-color: var(--accent-color, #555);
}

/* === BOOKING / CTA FINAL === */
.booking-section {
  background: var(--secondary-color);
  color: white;
  padding: 2.5rem 0;        /* réduit de 4rem à 2.5rem */
}
.booking-section .section-title { margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.booking-section p { margin-bottom: 1rem; }
.booking-section p.small.mt-4 { margin-top: 1rem !important; margin-bottom: 0; }

/* === FOOTER === */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 2rem;
}
.footer-brand { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.footer-heading { font-size: 1rem; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }

/* === STICKY CTA MOBILE (NEW v2) === */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 1050;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta-mobile.visible {
  transform: translateY(0);
}
.btn-sticky-cta {
  display: block;
  width: 100%;
  background: var(--accent-color); color: var(--accent-text) !important;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  text-align: center;
}
.sticky-cta-badge {
  display: inline-block;
  background: white;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.1em 0.45em;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.btn-sticky-cta s { opacity: 0.75; font-weight: 400; }
@media (max-width: 991px) {
  .sticky-cta-mobile { display: block; }
  body { padding-bottom: 80px; }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  /* Padding top élevé pour libérer la sticky navbar (qui fait ~80px de haut) */
  .hero-section { min-height: 80vh; padding: 7rem 0 3rem; text-align: center; }
  .hero-section .col-lg-8 { text-align: center; }
  .hero-section .d-flex.flex-wrap { justify-content: center; }
  .hero-pricing-row { justify-content: center; }
  .hero-guarantees { justify-content: center; }
  .mobile-tickets-info,
  .whats-included-info { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; display: inline-block; }
  .hero-widget-wrapper { margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Mobile : chaque info hero sur sa propre ligne pour lisibilité */
  .quick-fact-item {
    display: block;
    margin: 0 0 0.45rem 0;
  }
  .hero-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }
}

@media (max-width: 575px) {
  /* Très petits mobiles : encore plus d'espace au-dessus pour que le badge soit visible */
  .hero-section { padding: 8rem 1rem 2.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
}

@media (max-width: 768px) {
  .gallery-image.tall { min-height: 300px; }
}

/* =============================================================================
   DESIGN SYSTEM COULEURS — Niveau 1 (défauts) + Niveau 2 (adaptatif tertiary_role)
   =============================================================================
   accent    = action/urgence (CTAs, ribbons, alerts, hover hot)
   tertiary  = structure/identité (titres, prix, step numbers, accents calmes)
   secondary = conversion alternative (btn-options, booking section)

   Tertiary_role détecté par vt_theme.py depuis le CSS source :
   - "headings" → tertiary appliqué sur titres + textes accent (default)
   - "buttons"  → tertiary aussi sur certains boutons secondaires
   - "accents"  → tertiary uniquement sur borders/dividers
   ============================================================================= */

/* === Niveau 1 : structure/identité tertiary par défaut (toujours appliqué) === */
.glossary-term { color: var(--tertiary-color); }
.glossary-def strong { color: var(--tertiary-color); }
.tip-icon { background: var(--decorative-icon-color) !important; color: var(--decorative-icon-text) !important; }
.fun-fact-icon { background: var(--decorative-icon-color) !important; color: var(--decorative-icon-text) !important; }
.itinerary-card .itinerary-duration { color: var(--accent-text); }
.local-voice-tip-icon { color: var(--accent-color); }
.info-card i { color: var(--tertiary-color); }

/* === Niveau 2 : adaptatif selon tertiary_role === */

/* role="headings" (défaut) : titres en tertiary */
body[data-tertiary-role="headings"] .section-title { color: var(--tertiary-color); }

/* role="buttons" : tertiary sur boutons secondaires + pagination + bullets */
body[data-tertiary-role="buttons"] .btn-options-cta {
  background: var(--tertiary-color);
  color: var(--tertiary-text);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--tertiary-color) 30%, transparent);
}
body[data-tertiary-role="buttons"] .btn-options-cta:hover {
  background: color-mix(in srgb, var(--tertiary-color) 85%, black);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--tertiary-color) 45%, transparent);
}
body[data-tertiary-role="buttons"] .carousel-indicators [data-bs-target] {
  background-color: var(--tertiary-color);
}

/* role="accents" : tertiary uniquement sur bordures/dividers (sobre) */
body[data-tertiary-role="accents"] .info-card {
  border-top: 3px solid var(--tertiary-color);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body[data-tertiary-role="accents"] .nearby-card {
  border-top: 2px solid var(--tertiary-color);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body[data-tertiary-role="accents"] .reason-card { border-bottom: 2px solid var(--tertiary-color); }

/* === CROWD CALENDAR (calendrier dynamique navigable, lien affil par jour) === */
.crowd-calendar-section { background: var(--background-soft); }
.crowd-calendar-wrapper { max-width: 640px; margin: 0 auto; }
.crowd-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.cc-month-title { margin: 0; font-size: 1.25rem; font-weight: 700; min-width: 220px; text-align: center; color: #222; text-transform: capitalize; }
.cc-nav-btn {
  background: white; border: 1px solid rgba(0,0,0,0.1);
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-color); cursor: pointer; transition: all 0.2s;
}
.cc-nav-btn:hover:not(:disabled) { background: var(--accent-color); color: var(--accent-text); border-color: var(--accent-color); }
.cc-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
/* Cases bouton (cliquables) */
button.cc-day { border: none; font: inherit; padding: 0; cursor: pointer; }
.cc-day-active { outline: 2px solid var(--accent-color); outline-offset: 2px; }
.cc-past { background: #f5f5f5 !important; opacity: 0.4; cursor: default; }
.cc-past .cc-num { color: #aaa !important; }
/* Popover info au clic */
.crowd-calendar-wrapper { position: relative; }
.cc-popover {
  position: absolute;
  z-index: 10;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1rem 1.1rem 1.1rem;
  min-width: 240px;
  max-width: 320px;
}
.cc-popover-close {
  position: absolute; top: 4px; right: 8px;
  background: transparent; border: none; font-size: 1.4rem; line-height: 1;
  color: #999; cursor: pointer; padding: 0 4px;
}
.cc-popover-close:hover { color: #333; }
.cc-popover-date { font-weight: 700; color: #222; margin-bottom: 0.4rem; text-transform: capitalize; padding-right: 1.5rem; }
.cc-popover-level { margin-bottom: 0.5rem; }
.cc-popover-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.cc-popover-badge.cc-low  { background: #d4edda; color: #155724; }
.cc-popover-badge.cc-mid  { background: #fff3cd; color: #856404; }
.cc-popover-badge.cc-high { background: #f8d7da; color: #721c24; }
.cc-popover-reasons { font-size: 0.85rem; color: #666; margin-bottom: 0.85rem; line-height: 1.4; }
.cc-popover-cta {
  display: block; text-align: center;
  background: var(--accent-color); color: var(--accent-text) !important;
  padding: 0.55rem 1rem; border-radius: 50px;
  font-weight: 600; text-decoration: none; font-size: 0.9rem;
}
.cc-popover-cta:hover { filter: brightness(0.92); color: var(--accent-text) !important; }
.crowd-calendar-downloads {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1rem; flex-wrap: wrap;
}
.cc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.cc-head { text-align: center; font-size: 0.75rem; font-weight: 700; color: #999; padding: 4px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.cc-pad { aspect-ratio: 1; }
.cc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: help;
  transition: transform 0.15s;
  position: relative;
}
.cc-day:hover { transform: scale(1.08); z-index: 2; }
.cc-num { color: #333; }
.cc-low  { background: #d4edda; color: #155724; }
.cc-low  .cc-num { color: #155724; }
.cc-mid  { background: #fff3cd; color: #856404; }
.cc-mid  .cc-num { color: #856404; }
.cc-high { background: #f8d7da; color: #721c24; }
.cc-high .cc-num { color: #721c24; }
.crowd-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}
.cc-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 0.35rem; vertical-align: middle; }
.crowd-calendar-note { text-align: center; }

/* === EXTERNAL SOURCES (E-A-T) === */
.external-sources { background: transparent; border-top: 1px solid rgba(0,0,0,0.05); }
.external-sources-label { letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem; }
.external-sources-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.external-sources-link:hover { color: var(--accent-color); text-decoration: underline; }


/* === AUTHOR / PUBLISHER (E-E-A-T signal Google) === */
.author-section { background: transparent; }
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--background-soft);
  border-left: 3px solid var(--tertiary-color);
  border-radius: 0 4px 4px 0;
}
.author-avatar {
  width: 72px; height: 72px;
  background: var(--accent-color); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-name { font-size: 0.95rem; color: #222; }
.author-role { color: #777; font-weight: 400; }
.author-bio { font-size: 0.88rem; color: #555; line-height: 1.5; }
.author-bio-text { display: block; font-style: italic; margin-bottom: 0.25rem; }
.author-verified { font-size: 0.78rem; }

/* === TRANSPORT / PLAN D'ACCÈS === */
.transport-section { background: white; }
.transport-section .nav-pills .nav-link {
  color: var(--secondary-color);
  background: transparent;
  border: 1px solid var(--secondary-color);
  margin: 0 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.transport-section .nav-pills .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--accent-text);
}
.transport-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
}
.transport-list-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.95rem;
}
.transport-list-item:last-child { border-bottom: none; }
.transport-list-item:nth-child(even) { background: var(--background-soft); }
.transport-list-from { color: #444; }
.transport-list-from strong { color: #222; font-weight: 600; }
.transport-list-dist { color: #999; font-size: 0.85rem; white-space: nowrap; }
.transport-list-arrow { color: #bbb; font-size: 1rem; }
.transport-list-time { color: var(--accent-color); white-space: nowrap; min-width: 60px; text-align: right; }
.transport-list-time strong { font-weight: 800; font-size: 1.05rem; }
@media (max-width: 600px) {
  .transport-list-item { grid-template-columns: 1fr auto; gap: 0.25rem 0.75rem; }
  .transport-list-arrow { display: none; }
  .transport-list-dist { grid-column: 2; font-size: 0.8rem; }
}

/* === ACCESSIBILITÉ === */
.info-accessibility-block {
  margin-top: 3rem;
}
.info-accessibility-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  text-align: center;
}
.info-accessibility-title i { color: var(--accent-color); }
.access-card {
  background: white;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.access-card:hover { transform: translateY(-3px); }
.access-icon {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.6rem;
  display: block;
}
.access-title { font-size: 1rem; color: #222; margin-bottom: 0.4rem; font-weight: 700; }
.access-text { font-size: 0.85rem; color: #555; line-height: 1.4; margin: 0; }

/* ── Chat widget ── */
#vt-chat { position: fixed; bottom: 24px; right: 24px; z-index: 1100; font-family: inherit; }
#vt-chat-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--secondary-color); color: #fff; border: none;
  font-size: 1.4rem; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
}
#vt-chat-btn:hover { transform: scale(1.08); }
#vt-chat-panel {
  position: absolute; bottom: 64px; right: 0;
  width: 320px; background: #fff; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  overflow: hidden; max-height: 440px;
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(.97);
  transition: opacity .2s, transform .2s;
}
#vt-chat-panel.open { opacity: 1; pointer-events: auto; transform: none; }
#vt-chat-header {
  background: var(--accent-color); color: var(--accent-text);
  padding: 10px 14px; font-size: .85rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
#vt-chat-close {
  background: none; border: none; color: #fff;
  font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0;
}
#vt-chat-messages {
  flex: 1; overflow-y: auto; padding: 12px 12px 6px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: .84rem; line-height: 1.45;
}
.vt-msg { max-width: 88%; padding: 8px 11px; border-radius: 10px; word-break: break-word; }
.vt-msg-user { background: var(--accent-color); color: var(--accent-text); align-self: flex-end; border-bottom-right-radius: 3px; }
.vt-msg-bot  { background: #f3f4f6; color: #222; align-self: flex-start; border-bottom-left-radius: 3px; }
.vt-msg-bot.typing { color: #999; font-style: italic; }
#vt-chat-form {
  display: flex; gap: 6px; padding: 8px 10px;
  border-top: 1px solid #eee;
}
#vt-chat-input {
  flex: 1; border: 1px solid #ddd; border-radius: 16px;
  padding: 7px 13px; font-size: .83rem; outline: none;
  resize: none; overflow-y: hidden; line-height: 1.4;
  font-family: inherit; max-height: 120px; overflow-y: auto;
}
#vt-chat-input:focus { border-color: var(--accent-color); }
#vt-chat-send {
  background: var(--accent-color); color: var(--accent-text); border: none;
  border-radius: 50%; width: 34px; height: 34px; cursor: pointer;
  font-size: .95rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#vt-chat-send:disabled { opacity: .5; cursor: default; }
a.vt-chat-cta {
  display: inline-block; margin-top: 6px;
  background: var(--accent-color); color: var(--accent-text) !important;
  font-size: .8rem; font-weight: 700; padding: 6px 14px;
  border-radius: 20px; text-decoration: none !important;
}
a.vt-chat-cta:hover { opacity: .88; }
@media (max-width: 480px) {
  #vt-chat { bottom: 16px; right: 12px; }
  #vt-chat-panel { width: calc(100vw - 24px); right: -12px; }
}

/* === GALLERY LIGHTBOX === */
#vt-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
#vt-lightbox.vt-lb-open { display: flex; }
.vt-lb-inner {
  max-width: 95vw; max-height: 90vh; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
#vt-lb-img {
  max-width: 95vw; max-height: 82vh; object-fit: contain;
  border-radius: 4px; display: block;
}
#vt-lb-caption {
  color: rgba(255,255,255,.75); font-size: .85rem; text-align: center;
  margin: 0; max-width: 90vw;
}
.vt-lb-close {
  position: fixed; top: 16px; right: 20px; background: none; border: none;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; z-index: 10000;
  opacity: .8; padding: 0 6px;
}
.vt-lb-close:hover { opacity: 1; }
.vt-lb-prev, .vt-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 2.5rem; line-height: 1; cursor: pointer; z-index: 10000;
  padding: 8px 16px; border-radius: 4px; opacity: .8;
}
.vt-lb-prev:hover, .vt-lb-next:hover { opacity: 1; background: rgba(255,255,255,.22); }
.vt-lb-prev { left: 10px; }
.vt-lb-next { right: 10px; }
@media (max-width: 576px) {
  .vt-lb-prev { left: 2px; }
  .vt-lb-next { right: 2px; }
}
@media (max-width: 575px) {
  .hero-badge { margin-top: 1.25rem; }
}
