/**
 * CALDOGLACIALE — HOTELS.CSS
 * Stili sistema hotel. Prefix: .ht-
 * Caricato solo su /hotel-ischia/ e /hotel-ischia/[slug]/
 */

/* ── Variabili ───────────────────────────────────────────── */
:root {
  --ht-blue:       #2563c4;
  --ht-blue-dark:  #1a2d52;
  --ht-blue-light: #e8f0fe;
  --ht-green:      #16a34a;
  --ht-wa:         #25d366;
  --ht-text:       #1a1a2e;
  --ht-text-sub:   #5a6482;
  --ht-border:     #e8ecf5;
  --ht-bg-soft:    #f5f7fc;
  --ht-gold:       #f59e0b;
  --ht-radius:     12px;
  --ht-shadow:     0 2px 16px rgba(37,99,196,.08);
  --ht-shadow-md:  0 6px 32px rgba(37,99,196,.14);
  /* Font del brand. Era usato come var(--ht-serif, Georgia, serif) senza mai
     essere definito: i titoli cadevano sul fallback Georgia di sistema.
     NB Playfair è disponibile solo nei pesi 400 e 600 — chiedere il 700
     produce un bold sintetizzato dal browser. */
  --ht-serif:      'Playfair Display', Georgia, serif;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
/* Stacco dal menù fisso (.nav): l'header non è più alto 58vh come il vecchio hero,
   quindi il contenuto va spinto sotto la barra. --ht-nav-h è misurato via JS (auto desktop/mobile). */
#contenuto { padding-top: var(--ht-nav-h, 92px); }

.ht-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--ht-border);
}
.ht-breadcrumb-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ht-text-sub);
}
@media (max-width: 760px) {
  .ht-breadcrumb-inner { padding: 5px 14px; font-size: 12px; flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .ht-breadcrumb-inner::-webkit-scrollbar { display: none; }
  .ht-breadcrumb-inner > * { flex: 0 0 auto; }
}
.ht-breadcrumb-inner a {
  color: var(--ht-blue);
  text-decoration: none;
}
.ht-breadcrumb-inner a:hover { text-decoration: underline; }
.ht-breadcrumb-inner span[aria-current] { color: var(--ht-text); font-weight: 500; }

/* ── Container ───────────────────────────────────────────── */
.ht-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Bottoni ─────────────────────────────────────────────── */
.ht-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
  border: none;
}
.ht-btn--primary {
  background: var(--ht-blue);
  color: #fff;
}
.ht-btn--primary:hover { background: #1d50a8; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,196,.3); }
.ht-btn--wa {
  background: var(--ht-wa);
  color: #fff;
}
.ht-btn--wa:hover { background: #20b958; }
.ht-btn--outline {
  background: transparent;
  color: var(--ht-blue);
  border: 2px solid var(--ht-blue);
}
.ht-btn--outline:hover { background: var(--ht-blue); color: #fff; }
.ht-btn--lg { padding: 15px 32px; font-size: 16px; }

/* ── Stelle ──────────────────────────────────────────────── */
.ht-stars { color: var(--ht-gold); letter-spacing: 1px; }
.ht-stars--hero { font-size: 18px; }
.ht-stars--sm { font-size: 12px; }

/* ── Titoli sezione ──────────────────────────────────────── */
.ht-section-title {
  /* Scala fluida come il resto del design system (main.css usa clamp ovunque):
     cresce col viewport invece di saltare al breakpoint. */
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--ht-blue-dark);
  margin: 0 0 28px;
  position: relative;
  padding-bottom: 14px;
}
.ht-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--ht-blue);
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════
   HERO — Singolo hotel
════════════════════════════════════════════════════════════ */
.ht-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  background-image: var(--ht-hero-img);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.ht-hero--gradient {
  background: linear-gradient(135deg, var(--ht-blue-dark) 0%, var(--ht-blue) 100%);
}
.ht-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,40,.85) 0%, rgba(10,15,40,.3) 60%, transparent 100%);
}
.ht-hero-content {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 56px;
  width: 100%;
}
.ht-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ht-hero-category {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}
.ht-hero-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.ht-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.ht-hero-usp {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ht-hero-usp li {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}
.ht-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ht-hero-price {
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.ht-hero-price strong { color: #fff; font-size: 20px; }

/* ════════════════════════════════════════════════════════════
   INTRO
════════════════════════════════════════════════════════════ */
.ht-intro {
  padding: 52px 0;
  background: #fff;
}
.ht-intro-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ht-text);
  font-weight: 600;
  margin: 0 0 18px;
  max-width: 700px;
}
.ht-intro-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ht-text-sub);
  max-width: 700px;
}
.ht-intro-body p { margin: 0 0 14px; }
.ht-intro-body ul, .ht-intro-body ol { margin: 0 0 16px; padding-left: 22px; }
.ht-intro-body li { margin-bottom: 7px; }
.ht-intro-body b, .ht-intro-body strong { color: var(--ht-text); }
/* Paragrafo che contiene solo un <b>/<strong>: trattato come titolo di sezione */
.ht-intro-body p:has(> b:only-child),
.ht-intro-body p:has(> strong:only-child) {
  margin: 26px 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ht-navy, #1a2d52);
}
.ht-intro-body p:has(> b:only-child):first-child,
.ht-intro-body p:has(> strong:only-child):first-child { margin-top: 0; }
/* Sottolineatura sotto il titolo di sezione, come separatore visivo dal testo */
.ht-intro-body p:has(> b:only-child),
.ht-intro-body p:has(> strong:only-child) {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ht-border, #eef1f7);
}

/* Card "Informazioni sulla struttura" con header, e testo lungo collassabile ("Leggi tutto") */
.ht-intro-card {
  /* Deve restare più stretta della colonna offerte (736px = 1140 container − 332 box laterale
     − 24 gap): il box "Richiedi preventivo" fluttuante si allinea a quel bordo, se la card
     arriva fin lì lo tocca. 700px lascia un margine di sicurezza. */
  max-width: 700px;
  background: #fff;
  border: 1px solid var(--ht-border, #e3e8f2);
  border-radius: 14px;
  padding: 22px 24px 20px;
  box-shadow: 0 8px 28px rgba(26, 45, 82, .06);
}
.ht-intro-card-hd {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ht-navy, #1a2d52);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ht-border, #eef1f7);
}
.ht-intro-card-hd svg { width: 19px; height: 19px; color: #2563c4; flex: none; }
.ht-intro-body.is-collapsed {
  max-height: 260px;
  overflow: hidden;
  position: relative;
}
.ht-intro-body.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 82%);
  pointer-events: none;
}
.ht-intro-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: none;
  border: none;
  padding: 4px 0;
  color: #2563c4;
  font-weight: 700;
  font-size: 13.5px;
  font-family: inherit;
  cursor: pointer;
}
.ht-intro-toggle:hover { text-decoration: underline; }
.ht-intro-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
.ht-intro-toggle.is-open svg { transform: rotate(180deg); }

/* ════════════════════════════════════════════════════════════
   GALLERIA
════════════════════════════════════════════════════════════ */
.ht-gallery {
  padding: 52px 0;
  background: var(--ht-bg-soft);
}
.ht-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ht-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: #dde2ee;
}
.ht-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: block;
}
.ht-gallery-item:hover img { transform: scale(1.06); }
.ht-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,45,82,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.ht-gallery-item:hover .ht-gallery-overlay,
.ht-gallery-item:focus-visible .ht-gallery-overlay { opacity: 1; }

/* Lightbox */
.ht-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ht-lightbox[hidden] { display: none; }
.ht-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* il <picture> non deve diventare l'elemento flex al posto dell'immagine */
.ht-lightbox-img-wrap picture { display: contents; }
.ht-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.ht-lightbox-close,
.ht-lightbox-prev,
.ht-lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 44px; height: 44px;
  transition: background .15s;
}
.ht-lightbox-close:hover,
.ht-lightbox-prev:hover,
.ht-lightbox-next:hover { background: rgba(255,255,255,.25); }
.ht-lightbox-close { top: 16px; right: 16px; }
.ht-lightbox-prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.ht-lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }
.ht-lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════
   HIGHLIGHTS — Perché scegliere
════════════════════════════════════════════════════════════ */
.ht-highlights {
  padding: 52px 0;
  background: #fff;
}
.ht-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ht-highlight-card {
  background: var(--ht-bg-soft);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  padding: 24px 22px;
  transition: box-shadow .2s, transform .2s;
}
.ht-highlight-card:hover {
  box-shadow: var(--ht-shadow-md);
  transform: translateY(-3px);
}
.ht-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e8f0fe;
  color: #2563c4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ht-highlight-icon svg { width: 24px; height: 24px; }
/* Fallback: valori non riconosciuti (emoji) restano bare, senza chip */
.ht-highlight-icon.is-emoji {
  width: auto; height: auto; background: none; color: inherit;
  border-radius: 0; font-size: 28px;
}

/* Mappa on-site (click-to-load) */
.ht-map { margin-top: 18px; border-radius: 12px; overflow: hidden; border: 1px solid #e3e8f0; background: #eef1f6; }
.ht-map-load {
  width: 100%; min-height: 220px; aspect-ratio: 16 / 9;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: #eef1f6; border: none; cursor: pointer;
  color: #1a2d52; font-size: 15px; font-weight: 700; font-family: inherit;
  transition: background .15s;
}
.ht-map-load:hover { background: #e5ebf3; }
.ht-map-load svg { width: 30px; height: 30px; color: #2563c4; margin-bottom: 4px; }
.ht-map-hint { font-size: 12px; font-weight: 400; color: #8a96b0; }
.ht-map iframe { display: block; width: 100%; aspect-ratio: 16 / 9; min-height: 220px; border: 0; }

/* Targhetta posizione (hotel + contatto Caldoglaciale) */
.ht-map-card {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 12px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--ht-border);
  border-radius: 12px; box-shadow: var(--ht-shadow);
}
.ht-map-card-ic {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 9px;
  background: var(--ht-blue-light); color: var(--ht-blue);
  display: flex; align-items: center; justify-content: center;
}
.ht-map-card-ic svg { width: 20px; height: 20px; }
.ht-map-card-body { font-size: 13.5px; line-height: 1.55; color: var(--ht-text-sub); min-width: 0; }
.ht-map-card-name { display: block; font-size: 15px; font-weight: 700; color: var(--ht-text); }
.ht-map-card-op { display: block; margin-top: 1px; }
.ht-map-card-tel {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 5px;
  font-weight: 700; color: var(--ht-blue); text-decoration: none;
}
.ht-map-card-tel svg { width: 14px; height: 14px; flex: none; }
.ht-map-card-tel:hover { text-decoration: underline; }

/* ── Condizioni dell'offerta (value-stack per-hotel) ── */
.ht-offer { background: var(--ht-bg-soft); padding: 52px 0; }
.ht-offer-card {
  max-width: 880px; margin: 0 auto; background: #fff;
  border: 1px solid var(--ht-border); border-radius: 16px;
  padding: 30px 32px; box-shadow: var(--ht-shadow);
}
.ht-offer-h {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .03em;
  text-transform: uppercase; margin: 0 0 13px;
}
.ht-offer-h svg { width: 18px; height: 18px; flex: none; }
.ht-offer-h--in  { color: var(--ht-green); }
.ht-offer-h--sup { color: var(--ht-gold); }
.ht-offer-h--rid { color: var(--ht-blue); }
.ht-offer-list { list-style: none; margin: 0; padding: 0; }
.ht-offer-list li {
  position: relative; padding-left: 26px; margin-bottom: 9px;
  font-size: 15px; line-height: 1.5; color: var(--ht-text);
}
.ht-offer-list li:last-child { margin-bottom: 0; }
.ht-offer-list li::before { position: absolute; left: 2px; top: -1px; font-weight: 800; font-size: 16px; }
.ht-offer-list--in  li::before { content: "\2713"; color: var(--ht-green); }
.ht-offer-list--sup li::before { content: "+";      color: var(--ht-gold); }
.ht-offer-list--rid li::before { content: "\2212";  color: var(--ht-blue); }
.ht-offer-incl { margin-bottom: 22px; }
.ht-offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  padding-top: 22px; border-top: 1px solid var(--ht-border);
}
.ht-offer-col .ht-offer-list li { font-size: 14px; color: var(--ht-text-sub); }
.ht-offer-note {
  margin: 20px 0 0; padding: 13px 16px; border-radius: 10px;
  background: var(--ht-bg-soft); border-left: 3px solid var(--ht-blue-light);
  font-size: 13px; line-height: 1.6; color: var(--ht-text-sub);
}
@media (max-width: 640px) {
  .ht-offer { padding: 40px 0; }
  .ht-offer-card { padding: 24px 20px; }
  .ht-offer-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ── Recensioni (prova sociale per-hotel) ── */
.ht-reviews { background: #fff; padding: 52px 0; }
.ht-rv-aggregate { display: flex; align-items: center; gap: 18px; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--ht-border); }
.ht-rv-avg { font-size: 48px; font-weight: 800; line-height: 1; color: var(--ht-text); }
.ht-rv-stars { letter-spacing: 2px; font-size: 18px; }
.ht-rv-stars--sm { font-size: 14px; letter-spacing: 1px; }
.ht-rv-on { color: var(--ht-gold); }
.ht-rv-off { color: #d8dce6; }
.ht-rv-count { font-size: 13px; color: var(--ht-text-sub); margin-top: 5px; }
.ht-rv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.ht-rv-card { background: var(--ht-bg-soft); border: 1px solid var(--ht-border); border-radius: 14px; padding: 18px 20px; }
.ht-rv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.ht-rv-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--ht-blue-light); color: var(--ht-blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.ht-rv-meta { flex: 1; min-width: 0; }
.ht-rv-author { font-size: 14.5px; font-weight: 700; color: var(--ht-text); }
.ht-rv-sub { font-size: 12px; color: var(--ht-text-sub); margin-top: 1px; }
.ht-rv-text { font-size: 14.5px; line-height: 1.65; color: var(--ht-text-sub); margin: 0; }
@media (max-width: 600px) {
  .ht-reviews { padding: 40px 0; }
  .ht-rv-grid { grid-template-columns: 1fr; }
}

/* Autorità locale (premium) — hub /hotel-ischia/ */
.ht-trust { background: #fff; border-bottom: 1px solid #eef0f5; }
.ht-trust-inner { max-width: 1100px; margin: 0 auto; padding: 26px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ht-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.ht-trust-ic { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: #e8f0fe; color: #2563c4; display: flex; align-items: center; justify-content: center; }
.ht-trust-ic svg { width: 21px; height: 21px; }
.ht-trust-t { font-size: 14px; font-weight: 700; color: #1a2d52; line-height: 1.3; }
.ht-trust-x { font-size: 12.5px; color: #6b7a99; margin-top: 3px; line-height: 1.5; }
@media (max-width: 880px) { .ht-trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ht-trust-inner { grid-template-columns: 1fr; } }

/* Stili .lead-form* centralizzati in includes/lead-form.php (28/07/2026):
   prima erano triplicati qui, in contatti.php e in comune-template.php,
   con 3 aspetti leggermente diversi (sfondo sabbia vs card bianca). */
.ht-highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ht-blue-dark);
  margin: 0 0 8px;
}
.ht-highlight-text {
  font-size: 14px;
  color: var(--ht-text-sub);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   SERVIZI
════════════════════════════════════════════════════════════ */
.ht-services {
  padding: 52px 0;
  background: var(--ht-bg-soft);
}
.ht-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ht-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--ht-border);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 14px;
  color: var(--ht-text);
  font-weight: 500;
}
.ht-service-tag svg { color: var(--ht-blue); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   POSIZIONE
════════════════════════════════════════════════════════════ */
.ht-location {
  padding: 52px 0;
  background: #fff;
}
.ht-location-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ht-text-sub);
  margin: 0 0 16px;
  max-width: 700px;
}
.ht-location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ht-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1.5px solid var(--ht-blue);
  padding: 8px 18px;
  border-radius: 8px;
  transition: all .15s;
}
.ht-location-map-btn:hover { background: var(--ht-blue); color: #fff; }

.ht-dist-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; }
.ht-dist-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ht-border, #e3e8f2);
  border-radius: 999px;
  padding: 7px 16px 7px 7px;
  box-shadow: 0 3px 10px rgba(26, 45, 82, .07);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ht-dist-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(26, 45, 82, .12); }
.ht-dist-ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.ht-dist-ic svg { width: 16px; height: 16px; }
.ht-dist-ic--spiaggia { background: #e0f7fa; color: #0891b2; }
.ht-dist-ic--centro   { background: #e8edfb; color: #2563c4; }
.ht-dist-ic--terme    { background: #fdeee0; color: #c2560d; }
.ht-dist-txt { font-size: 13.5px; color: #5a6482; white-space: nowrap; }
.ht-dist-txt strong { color: var(--ht-navy, #1a2d52); font-size: 15px; font-weight: 800; }
.ht-dist-approx { font-size: 12px; color: #9aa3b8; align-self: center; }

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.ht-faq {
  padding: 52px 0;
  background: var(--ht-bg-soft);
}
.ht-faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Card come nel blog (.bl-faq-item), non più lista piatta con righe */
.ht-faq-item {
  border: 1px solid var(--ht-border, #e2e7f0);
  border-radius: 10px;
  background: #fff;
  padding: 0 18px;
}
.ht-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ht-text);
  text-align: left;
  gap: 14px;
  line-height: 1.4;
}
.ht-faq-question:hover { color: var(--ht-blue); }
.ht-faq-arrow {
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  color: var(--ht-blue);
}
.ht-faq-question[aria-expanded="true"] .ht-faq-arrow { transform: rotate(180deg); }
.ht-faq-answer {
  padding-bottom: 16px;
}
.ht-faq-answer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ht-text-sub);
}

/* ════════════════════════════════════════════════════════════
   CTA FINALE
════════════════════════════════════════════════════════════ */
.ht-cta-final {
  padding: 60px 0;
  background: var(--ht-blue-dark);
}
.ht-cta-final-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ht-cta-final-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.ht-cta-final-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 540px;
  line-height: 1.6;
}
.ht-cta-final-sub strong { color: #fff; }
.ht-cta-final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
/* Sfondo scuro della sezione: il pulsante outline "standard" (blu su blu) sparirebbe */
.ht-cta-final-actions .ht-btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.ht-cta-final-actions .ht-btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ════════════════════════════════════════════════════════════
   HOTEL CORRELATI
════════════════════════════════════════════════════════════ */
.ht-related {
  padding: 52px 0;
  background: #fff;
}
.ht-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ht-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
}
.ht-related-card:hover {
  box-shadow: var(--ht-shadow-md);
  transform: translateY(-4px);
}
.ht-related-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--ht-bg-soft);
}
.ht-related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.ht-related-card:hover .ht-related-img-wrap img { transform: scale(1.06); }
.ht-related-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.ht-related-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ht-blue-dark);
  margin: 4px 0 0;
}
.ht-related-loc {
  font-size: 12.5px;
  color: var(--ht-text-sub);
}
.ht-related-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ht-blue);
  margin-top: auto;
  padding-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   LISTA HOTEL (hotel-ischia.php)
════════════════════════════════════════════════════════════ */
.ht-list-hero {
  background: linear-gradient(135deg, var(--ht-blue-dark) 0%, var(--ht-blue) 100%);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.ht-list-hero-inner { max-width: 700px; margin: 0 auto; }
.ht-list-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.ht-list-hero-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
}
.ht-list-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.6;
}
.ht-list-section { padding: 52px 0; background: var(--ht-bg-soft); }
.ht-list-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.ht-list-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}

/* Card lista — premium: 2 grandi per riga (foto grandi), riga finale centrata */
.ht-card {
  position: relative;
  flex: 1 1 400px;
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.ht-card:hover { box-shadow: var(--ht-shadow-md); transform: translateY(-4px); }
.ht-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--ht-bg-soft);
  text-decoration: none;
}
.ht-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: block;
}
.ht-card:hover .ht-card-img { transform: scale(1.06); }
/* Fase B — carosello immagini nelle card (frecce + swipe). z-index:2 → sopra lo stretched-link della card */
.ht-card-media { position: relative; z-index: 2; aspect-ratio: 3/2; overflow: hidden; background: var(--ht-bg-soft); }
.ht-card-track { display: flex; height: 100%; transition: transform .35s cubic-bezier(.4,0,.2,1); will-change: transform; }
.ht-card-slide { flex: 0 0 100%; display: block; height: 100%; text-decoration: none; }
.ht-card-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 34px; height: 34px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--ht-blue-dark); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.18); opacity: 0; transition: opacity .2s, background .2s; }
.ht-card-media:hover .ht-card-arrow { opacity: 1; }
.ht-card-arrow--prev { left: 8px; }
.ht-card-arrow--next { right: 8px; }
.ht-card-arrow:hover { background: #fff; }
@media (hover: none) { .ht-card-arrow { opacity: .92; } }

/* Hero-search hub: slideshow hotel + barra ricerca */
.ht-herosearch { position: relative; overflow: hidden; padding: 52px 20px; text-align: center; color: #fff; }
.ht-herosearch-bg { position: absolute; inset: 0; z-index: 0; background: var(--ht-blue-dark); }
.ht-hs-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.ht-hs-slide.is-active { opacity: 1; }
.ht-herosearch::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,28,54,.55), rgba(16,28,54,.74)); }
.ht-herosearch-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.ht-hs-badge { display: inline-block; background: rgba(255,255,255,.18); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.ht-herosearch-title { font-size: 34px; font-weight: 800; margin: 12px 0 6px; color: #fff; }
.ht-herosearch-sub { font-size: 15px; opacity: .95; margin: 0 0 20px; }
.ht-hs-box { display: flex; gap: 10px; background: #fff; padding: 12px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.25); flex-wrap: wrap; align-items: flex-end; }
.ht-hs-field { flex: 1 1 180px; text-align: left; }
.ht-hs-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ht-text-sub); margin-bottom: 4px; }
.ht-hs-field select { width: 100%; padding: 11px 12px; border: 1px solid var(--ht-border); border-radius: 9px; font-size: 14px; background: #fff; color: var(--ht-blue-dark); }
.ht-hs-btn { flex: 0 0 auto; background: var(--ht-blue); color: #fff; border: none; padding: 12px 26px; border-radius: 9px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .15s, transform .15s; }
.ht-hs-btn:hover { background: var(--ht-blue-dark); transform: translateY(-1px); }
@media (max-width: 640px) { .ht-herosearch-title { font-size: 26px; } .ht-hs-box { flex-direction: column; align-items: stretch; } .ht-hs-btn { width: 100%; } }
/* Menù filtri unico dentro l'hero (fuso, niente duplicato) */
.ht-filters--hero { margin: 0 auto; max-width: 1040px; }
.ht-filters--hero .ht-filter-meta { gap: 12px; }
@media (max-width: 640px) { .ht-filters--hero .ht-hs-btn { width: auto; } }
.ht-card-price-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--ht-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
/* L'unità resta leggibile ma secondaria: su fondo blu il grigio di main.css non tiene. */
.ht-card-price-badge small { font-size: 11px; font-weight: 600; opacity: .85; margin-left: 2px; }
.ht-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ht-card-meta { display: flex; align-items: center; gap: 10px; }
.ht-card-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--ht-text-sub);
}
.ht-card-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}
.ht-card-name a {
  color: var(--ht-blue-dark);
  text-decoration: none;
}
.ht-card-name a:hover { color: var(--ht-blue); }
.ht-card-desc {
  font-size: 13.5px;
  color: var(--ht-text-sub);
  line-height: 1.55;
  margin: 0;
}
.ht-card-usp {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ht-card-usp li {
  font-size: 12.5px;
  color: var(--ht-text-sub);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ht-card-usp li::before {
  content: '✓';
  color: var(--ht-blue);
  font-weight: 700;
  font-size: 11px;
}
.ht-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ht-border);
}
/* CTA primaria della card: "Richiedi preventivo" → form della scheda.
   z-index:2 per restare cliccabile SOPRA l'overlay stretched-link (.ht-card-cta::after). */
.ht-card-quote {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: var(--ht-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.ht-card-quote:hover { background: var(--ht-blue-dark); transform: translateY(-1px); }
.ht-card-formula {
  font-size: 12px;
  color: var(--ht-text-sub);
  background: var(--ht-bg-soft);
  padding: 3px 10px;
  border-radius: 20px;
}
.ht-card-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ht-blue);
  text-decoration: none;
  transition: gap .15s;
}
.ht-card-cta:hover { gap: 8px; }
/* Card interamente cliccabile: la CTA copre tutta la card (tap ovunque → scheda).
   Il FAB WhatsApp (position:fixed, z-index 999) resta sopra e cliccabile. */
.ht-card-cta::after { content: ''; position: absolute; inset: 0; z-index: 1; }

/* CTA lista */
.ht-list-cta-box {
  background: var(--ht-blue-dark);
  border-radius: var(--ht-radius);
  padding: 40px 36px;
  text-align: center;
}
.ht-list-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.ht-list-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 0 0 24px;
}
.ht-list-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--ht-blue-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.ht-list-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ht-list-grid,
  .ht-highlights-grid,
  .ht-related-grid { grid-template-columns: repeat(2, 1fr); }
  .ht-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ht-card { flex-basis: 300px; max-width: 480px; }
  .ht-cta-final-box { flex-direction: column; text-align: center; }
  .ht-cta-final-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .ht-list-grid,
  .ht-highlights-grid,
  .ht-related-grid,
  .ht-gallery-grid { grid-template-columns: 1fr; }
  .ht-card { flex-basis: 100%; max-width: 100%; }
  .ht-hero { min-height: 55vh; }
  .ht-hero-content { padding: 40px 20px 40px; }
  .ht-hero-cta { flex-direction: column; align-items: flex-start; }
  .ht-list-cta-box { padding: 28px 20px; }
  /* .ht-section-title: la dimensione la gestisce ora il clamp, non serve override */
  .ht-container { padding: 0 16px; }
  .ht-lightbox-prev { left: 6px; }
  .ht-lightbox-next { right: 6px; }
}

/* ── Modal Richiedi preventivo ── */
.ht-quote-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 23, 42, .6);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px; overflow-y: auto;
}
.ht-quote-overlay[hidden] { display: none; }
.ht-quote-dialog {
  position: relative; width: 100%; max-width: 440px; margin: auto;
  background: #eef0f3; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}
.ht-quote-x {
  position: absolute; top: 8px; right: 12px; z-index: 2;
  background: none; border: 0; color: #fff; font-size: 28px; line-height: 1;
  cursor: pointer; opacity: .85; padding: 4px;
}
.ht-quote-x:hover { opacity: 1; }
.ht-quote-head { background: var(--ht-blue-dark); color: #fff; padding: 18px 20px; text-align: center; }
.ht-quote-kicker { font-size: 19px; font-weight: 800; letter-spacing: .02em; }
.ht-quote-sub { font-size: 13.5px; font-weight: 600; opacity: .92; margin-top: 2px; }
.ht-quote-form { padding: 18px 20px 22px; }
.ht-quote-row { margin-bottom: 9px; }
.ht-quote-form input[type="text"],
.ht-quote-form input[type="email"],
.ht-quote-form input[type="tel"],
.ht-quote-form input[type="date"],
.ht-quote-form select,
.ht-quote-form textarea {
  width: 100%; padding: 12px 14px; font-size: 15px; box-sizing: border-box;
  border: 1px solid #d3d8e3; border-radius: 9px; background: #fff;
  color: var(--ht-text); font-family: inherit;
}
.ht-quote-form select { appearance: auto; }
/* Form prenotazione compatto: coppie a 2 colonne + età bambini */
.ht-quote-2 { display: flex; gap: 8px; margin-bottom: 9px; }
.ht-quote-2 > * { flex: 1 1 0; min-width: 0; }
.ht-quote-hint { font-size: 11.5px; color: #8a96b0; margin: -3px 0 9px; }
.ht-quote-lbl { display: flex; flex-direction: column; gap: 3px; font-size: 11px; font-weight: 600; color: #8a96b0; }
.ht-quote-eta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 9px; }
.ht-quote-eta-lbl { flex: 1 1 100%; font-size: 11px; font-weight: 600; color: #8a96b0; }
.ht-quote-eta select { flex: 1 1 calc(50% - 4px); }
.ht-quote-form textarea { resize: vertical; min-height: 80px; }
.ht-quote-form input:focus, .ht-quote-form select:focus, .ht-quote-form textarea:focus {
  outline: 2px solid var(--ht-blue); outline-offset: 1px; border-color: var(--ht-blue);
}
.ht-quote-check {
  display: flex; gap: 9px; align-items: flex-start; cursor: pointer;
  font-size: 13px; color: var(--ht-text-sub); line-height: 1.4; margin-top: 10px;
}
.ht-quote-check input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ht-blue); }
.ht-quote-check a { color: var(--ht-blue); }
.ht-quote-note { font-size: 12px; color: #8a96b0; margin: 11px 0 0; }
.ht-quote-submit {
  width: 100%; margin-top: 14px; padding: 15px; border: 0; border-radius: 10px;
  background: #1f9d34; color: #fff; font-size: 16px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
}
.ht-quote-submit:hover { background: #178a2b; }
.ht-quote-submit:disabled { opacity: .6; cursor: default; }
.ht-quote-msg { display: none; margin-top: 12px; padding: 11px 13px; border-radius: 8px; font-size: 14px; line-height: 1.4; }
.ht-quote-msg.ok  { display: block; background: #e7f7ec; color: #176c2c; }
.ht-quote-msg.err { display: block; background: #fdeaea; color: #b42318; }

/* ── Menu sticky interno (scheda) ── */
html { scroll-behavior: smooth; }
.ht-subnav { position: sticky; top: var(--ht-nav-h, 58px); z-index: 40; background: rgba(255, 255, 255, .97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ht-border); }
.ht-subnav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2px; padding: 0 14px; overflow-x: auto; scrollbar-width: none; }
.ht-subnav-inner::-webkit-scrollbar { display: none; }
.ht-subnav a { padding: 14px 13px; font-size: 14px; font-weight: 600; color: var(--ht-text-sub); text-decoration: none; white-space: nowrap; }
.ht-subnav a:hover { color: var(--ht-blue); }
.ht-subnav-cta { margin-left: auto; flex: none; background: var(--ht-blue); color: #fff; border: 0; border-radius: 8px; padding: 9px 15px; font-size: 13.5px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit; }
.ht-subnav-cta:hover { background: var(--ht-blue-dark); }
.ht-intro, .ht-gallery, .ht-services, .ht-location, .ht-reviews, .ht-offer { scroll-margin-top: var(--ht-anchor-top, 112px); }
@media (max-width: 600px) {
  .ht-subnav a { padding: 12px 10px; font-size: 13px; }
  .ht-subnav-cta { padding: 8px 12px; font-size: 12.5px; }
}

/* ── Scarsità elegante (CTA finale) ── */
.ht-cta-scarcity { display: inline-flex; align-items: center; gap: 7px; margin: 12px 0 0; font-size: 13px; font-weight: 600; color: var(--ht-gold); }
.ht-cta-scarcity svg { width: 15px; height: 15px; flex: none; }

/* ── Ricerca guidata (hub) ── */
.ht-filters { max-width: 1100px; margin: 0 auto 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; padding: 16px 18px; background: #fff; border: 1px solid var(--ht-border); border-radius: 14px; box-shadow: var(--ht-shadow); }
.ht-filter { display: flex; flex-direction: column; gap: 5px; }
.ht-filter label { font-size: 12px; font-weight: 700; color: var(--ht-text-sub); text-transform: uppercase; letter-spacing: .02em; }
.ht-filter select { min-width: 160px; padding: 10px 12px; font-size: 14px; border: 1px solid var(--ht-border); border-radius: 9px; background: #fff; color: var(--ht-text); font-family: inherit; }
.ht-filter-meta { margin-left: auto; display: flex; align-items: center; gap: 14px; font-size: 13.5px; font-weight: 600; color: var(--ht-text-sub); }
.ht-filter-reset { background: none; border: 0; color: var(--ht-blue); font-weight: 700; font-size: 13.5px; cursor: pointer; font-family: inherit; }
.ht-filter-reset:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .ht-filters { gap: 10px; padding: 14px; }
  .ht-filter { flex: 1 1 45%; }
  .ht-filter select { min-width: 0; width: 100%; }
  .ht-filter-meta { margin-left: 0; width: 100%; justify-content: space-between; }
}

/* ── Carosello "tutti gli hotel" (scheda) ── */
.ht-related-carousel { position: relative; }
.ht-related-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ht-related-track::-webkit-scrollbar { display: none; }
.ht-related-track > .ht-related-card { flex: 0 0 260px; max-width: 260px; scroll-snap-align: start; }
.ht-rc-arrow {
  position: absolute; top: 90px; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #fff; border: 1px solid var(--ht-border);
  box-shadow: var(--ht-shadow); color: var(--ht-blue-dark); cursor: pointer;
}
.ht-rc-arrow svg { width: 20px; height: 20px; }
.ht-rc-arrow:hover { background: var(--ht-bg-soft); border-color: var(--ht-blue); }
.ht-rc-arrow:disabled { opacity: .3; cursor: default; box-shadow: none; }
.ht-rc-arrow--prev { left: -12px; }
.ht-rc-arrow--next { right: -12px; }
@media (max-width: 600px) {
  .ht-rc-arrow { display: none; }
  .ht-related-track > .ht-related-card { flex-basis: 78%; max-width: 78%; }
}

/* ══════════════════════════════════════════════
   OFFERTE & PREZZI — griglia stagionale (sez. 7d)
══════════════════════════════════════════════ */
.ht-deals { padding: 30px 0; }
.ht-deals-sub { color: #5a6075; font-size: 15px; margin: -6px 0 18px; max-width: 640px; }
.ht-deals-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ht-deals-tab {
  border: 1px solid #d3dcea; background: #fff; color: #1a2d52;
  font: 600 13.5px/1 inherit; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.ht-deals-tab:hover { border-color: #2563c4; color: #2563c4; }
.ht-deals-tab.is-active { background: #1a2d52; border-color: #1a2d52; color: #fff; }
.ht-deals-panel { display: none; flex-direction: column; gap: 10px; }
.ht-deals-panel.is-active { display: flex; }

.ht-deal {
  background: #fff; border: 1px solid #e3e8f2; border-left: 4px solid #2563c4;
  border-radius: 12px; overflow: hidden; transition: box-shadow .15s;
}
.ht-deal:hover { box-shadow: 0 6px 22px rgba(26,45,82,.10); }
.ht-deal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; }
.ht-deal--exp .ht-deal-head { cursor: pointer; }
.ht-deal--exp .ht-deal-head:hover { background: #fafbfe; }
.ht-deal-main { min-width: 0; }
.ht-deal-arrow { display: inline-flex; color: #9aa3b8; transition: transform .2s; }
.ht-deal-arrow svg { width: 18px; height: 18px; }
.ht-deal.is-open .ht-deal-arrow { transform: rotate(180deg); }
.ht-deal-body { padding: 4px 18px 16px; border-top: 1px solid #eef1f7; }
.ht-deal-terms { padding-top: 12px; }
.ht-deal-terms .ht-offer-incl { margin-bottom: 12px; }
.ht-deal-period { font-size: 15.5px; color: #2a3450; }
.ht-deal-period strong { color: #1a2d52; font-weight: 700; }
.ht-deal-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.ht-deal-meta span { font-size: 12px; padding: 3px 9px; border-radius: 6px; white-space: nowrap; }
.ht-deal-nights { background: #eef2fb; color: #3a4a73; }
.ht-deal-treat { background: #f3eee4; color: #8a6d2f; }
.ht-deal-bonus { background: #e7f7ec; color: #176c2c; font-weight: 700; }
.ht-deal-deadline { background: #fdecd8; color: #a5490a; font-weight: 700; }
.ht-deal-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.ht-deal-price { font-size: 21px; font-weight: 800; color: #1a2d52; white-space: nowrap; }
.ht-deal-from { font-size: 12px; font-weight: 600; color: #9aa3b8; }
.ht-deal-btn {
  background: #2563c4; color: #fff; border: none; font: 700 13.5px/1 inherit;
  padding: 11px 20px; border-radius: 9px; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.ht-deal-btn:hover { background: #1a4fa0; }

.ht-quote-offerbar {
  background: #e7f7ec; color: #176c2c; border: 1px solid #b7e3c3;
  border-radius: 8px; padding: 9px 12px; font-size: 12.5px; font-weight: 600; margin-bottom: 10px;
}

@media (max-width: 600px) {
  .ht-deal-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .ht-deal-cta { justify-content: space-between; }
}

/* ══════════════════════════════════════════════
   BOOKING ZONE — offerte sotto l'hero + box preventivo sticky
══════════════════════════════════════════════ */
.ht-bookzone { padding: 26px 0 6px; }
.ht-bookzone-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ht-bookzone-main .ht-deals { padding: 0; }
@media (min-width: 980px) {
  .ht-bookzone-grid { grid-template-columns: minmax(0, 1fr) 332px; align-items: start; }
}

.ht-bookbox {
  background: #fff; border: 1px solid #e3e8f2; border-radius: 14px; padding: 18px;
  box-shadow: 0 8px 28px rgba(26,45,82,.08);
}
@media (min-width: 980px) {
  .ht-bookbox-wrap { position: sticky; top: calc(var(--ht-anchor-top, 90px) + 6px); }
}
/* Oltre la colonna offerte, il box preventivo continua a "galleggiare" via JS (vedi hotel-template.php) */
.ht-bookbox-wrap.is-floating { position: fixed; z-index: 30; }
.ht-bookbox-wrap.is-fadeout { opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.ht-bookbox-hd { margin-bottom: 13px; }
.ht-bookbox-kicker { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: #2563c4; margin-bottom: 2px; }
.ht-bookbox-price { font-size: 25px; font-weight: 800; color: #1a2d52; line-height: 1.1; }
.ht-bookbox-price span { font-size: 13px; font-weight: 600; color: #9aa3b8; }
.ht-bookbox-price small { font-size: 12px; font-weight: 500; color: #9aa3b8; }
.ht-bookbox-title { font-size: 18px; font-weight: 800; color: #1a2d52; }
.ht-bookbox-row { margin-bottom: 9px; }
.ht-bookbox-row2 { display: flex; gap: 9px; margin-bottom: 9px; }
.ht-bookbox-row2 > label { flex: 1; min-width: 0; }

.ht-bookbox label { display: block; font-size: 11px; color: #5a6075; font-weight: 600; }
.ht-bookbox input, .ht-bookbox select {
  width: 100%; box-sizing: border-box; padding: 9px 11px; margin-top: 3px;
  border: 1px solid #d3dcea; border-radius: 8px; font-size: 14px; font-family: inherit;
  background: #fff; color: #1a2d52;
}
.ht-bookbox-check { display: flex !important; align-items: flex-start; gap: 8px; font-size: 11.5px; color: #5a6075; font-weight: 400 !important; margin: 8px 0 12px; }
.ht-bookbox-check input { width: auto; margin-top: 2px; }
.ht-bookbox-check a { color: #2563c4; }
.ht-bookbox-btn {
  width: 100%; background: #2563c4; color: #fff; border: none; border-radius: 9px;
  padding: 13px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: background .15s;
}
.ht-bookbox-btn:hover { background: #1a4fa0; }
.ht-bookbox-btn:disabled { opacity: .6; cursor: default; }
.ht-bookbox-foot { font-size: 11px; color: #9aa3b8; text-align: center; margin-top: 9px; }
.ht-bookbox-msg { font-size: 12.5px; margin-top: 9px; }
.ht-bookbox-msg.ok { color: #176c2c; font-weight: 600; }
.ht-bookbox-msg.err { color: #c0392b; }

/* Ordine sezioni scheda: ora è il markup a dettare l'ordine (Panoramica → Servizi → Foto → Perché sceglierlo),
   allineato al menù. Il vecchio riordino via flex-order è stato rimosso (combatteva col nuovo DOM). */

/* ══════════════════════════════════════════════
   HEADER BOOKING — mosaico + titolo + punteggio + servizi
══════════════════════════════════════════════ */
.ht-bhead { padding: 10px 0 6px; }
.ht-mosaic { display: grid; gap: 6px; border-radius: 14px; overflow: hidden; margin-bottom: 16px; }
.ht-mosaic--full { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 172px; }
.ht-mosaic--full .ht-mosaic-cell--main { grid-row: span 2; }
.ht-mosaic--mini { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); grid-auto-rows: 200px; }
.ht-mosaic--solo { display: block; }
.ht-mosaic--solo img { width: 100%; height: 380px; object-fit: cover; display: block; }
.ht-mosaic-cell { position: relative; padding: 0; border: none; cursor: pointer; overflow: hidden; background: #e9edf3; }
.ht-mosaic--solo picture { display: block; }
.ht-mosaic-cell picture { position: absolute; inset: 0; display: block; }
.ht-mosaic-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.ht-mosaic-cell:hover img { transform: scale(1.04); }
.ht-mosaic-more { position: absolute; inset: 0; background: rgba(20,30,50,.5); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; }
.ht-mosaic-more--m { display: none; }

.ht-bhead-body { display: flex; gap: 24px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
.ht-bhead-main { flex: 1 1 320px; min-width: 0; }
.ht-bhead-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; }
.ht-bhead-cat { text-transform: uppercase; letter-spacing: .05em; color: #2563c4; font-weight: 700; font-size: 11.5px; }
.ht-bhead .ht-stars { color: #f59e0b; letter-spacing: 1px; }
.ht-bhead-loc { display: inline-flex; align-items: center; gap: 4px; color: #5a6075; }
.ht-bhead-title { font-size: clamp(22px, 3.4vw, 30px); color: #1a2d52; line-height: 1.15; margin: 9px 0 12px; }
.ht-bhead-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.ht-bhead-chips li { display: inline-flex; align-items: center; gap: 6px; background: #eef2fb; color: #2a3a63; font-size: 12.5px; font-weight: 600; padding: 6px 11px; border-radius: 999px; }
.ht-bhead-chips svg { width: 15px; height: 15px; color: #2563c4; flex: none; }

.ht-bhead-side { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; min-width: 190px; }
.ht-score { display: inline-flex; align-items: center; gap: 9px; }
.ht-score-num { background: #1a2d52; color: #fff; font-weight: 800; font-size: 18px; padding: 7px 11px; border-radius: 9px 9px 9px 0; }
.ht-score-txt { display: flex; flex-direction: column; font-size: 12.5px; line-height: 1.25; }
.ht-score-txt strong { color: #1a2d52; }
.ht-score-txt span { color: #9aa3b8; }
.ht-bhead-side .ht-btn--primary { width: 100%; text-align: center; justify-content: center; }
.ht-bhead-price { font-size: 12.5px; color: #5a6075; }
.ht-bhead-more { display: none; }

@media (max-width: 760px) {
  .ht-bhead { padding: 5px 0 4px; }
  .ht-mosaic--full { grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 92px; gap: 5px; }
  .ht-mosaic--full .ht-mosaic-cell--main { grid-column: 1 / -1; grid-row: auto; height: 220px; }
  .ht-mosaic--full .ht-mosaic-cell:nth-child(n+5) { display: none; }
  .ht-mosaic-more--m { display: flex; }
  .ht-mosaic-more--d { display: none; }
  .ht-bhead-body { flex-direction: column; gap: 12px; }
  .ht-bhead-main { flex: 0 0 auto; width: 100%; }
  .ht-bhead-side { flex: 0 0 auto; align-items: stretch; width: 100%; }
  .ht-score { align-self: flex-start; }
  .ht-bhead-title { margin: 7px 0 10px; }
  .ht-bhead-chips { flex-direction: column; align-items: stretch; gap: 6px; }
  .ht-bhead-chips li { width: 100%; box-sizing: border-box; font-size: 12.5px; padding: 7px 11px; }
  .ht-bhead-chips li:nth-child(n+4) { display: none; }
  .ht-bhead-more { display: inline-flex; margin-top: 9px; font-size: 13px; font-weight: 600; color: #2563c4; text-decoration: none; }
}

/* ══════════════════════════════════════════════
   ISCHIA RED CARPET — vantaggio incluso, sotto le offerte (M1)
══════════════════════════════════════════════ */
.ht-redcarpet {
  display: flex; align-items: flex-start; gap: 14px;
  background: #e7f7ec; border: 1px solid #b7e3c3; border-radius: 12px;
  padding: 14px 18px; margin-top: 12px;
}
.ht-redcarpet-ic {
  flex: none; width: 42px; height: 42px; border-radius: 10px;
  background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center;
}
.ht-redcarpet-ic svg { width: 24px; height: 24px; }
.ht-redcarpet-t { font-size: 15px; font-weight: 800; color: #176c2c; }
.ht-redcarpet-x { font-size: 13px; color: #2f6a41; line-height: 1.55; margin-top: 3px; }

/* Chip Red Carpet nelle card hub */
.ht-card-rc {
  display: inline-flex; align-items: center; gap: 5px;
  background: #e7f7ec; color: #176c2c; font-size: 11.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; margin: 2px 0 10px;
}
/* Rassicurazione sotto le CTA (M3) */
.ht-cta-reassure { font-size: 12px; color: #9fb3d9; margin-top: 10px; }

/* ══════════════════════════════════════════════
   MODULO TOUR — hub /tour-ischia/ + scheda tour
══════════════════════════════════════════════ */
.tr-hero { padding: 18px 0 8px; }
.tr-hero .ht-hs-badge { background: #e7f7ec; color: #176c2c; border: 1px solid #b7e3c3; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; display: inline-block; }
.tr-hero-title { font-size: clamp(24px, 3.6vw, 34px); color: #1a2d52; line-height: 1.12; margin: 10px 0 8px; }
.tr-hero-sub { color: #5a6075; font-size: 15px; max-width: 640px; }
.tr-catnav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tr-catnav a {
  border: 1px solid #d3dcea; background: #fff; color: #1a2d52; text-decoration: none;
  font-size: 13px; font-weight: 700; padding: 8px 15px; border-radius: 999px;
}
.tr-catnav a:hover { border-color: #2563c4; color: #2563c4; }
.tr-catnav--hero { justify-content: center; margin-top: 4px; }
.tr-catnav--hero a { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.94); }

/* Intro SEO/AEO hub tour + descrizioni categoria estese */
.tr-intro { padding: 26px 0 4px; }
.tr-intro p { color: #2a3450; font-size: clamp(15px, 1.25vw, 16px); line-height: 1.75; max-width: 860px; margin: 0 0 12px; }
.tr-intro a { color: #2563c4; font-weight: 600; }

/* ── Blocchi intro SEO (.of-seo) ──────────────────────────────
   Erano tre copie identiche inline in catalogo.php, hotel-ischia.php e
   offerte-ischia.php, con font-size fisso a 20px: su mobile gli H3 finivano
   della STESSA dimensione degli H2 di sezione e la gerarchia collassava.
   Regole unificate qui, con scala fluida sempre sotto quella dell'H2. */
.of-seo h3 {
  font-family: var(--ht-serif);
  /* max 20px < min 20px dell'H2: l'H3 resta sotto l'H2 a ogni larghezza */
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;              /* Playfair non ha il 700: evita il bold sintetico */
  color: var(--ht-blue-dark);
  line-height: 1.3;
  margin: 26px 0 8px;
}
.of-seo p {
  line-height: 1.78;
  color: #40506b;
  font-size: clamp(15px, 1.25vw, 15.5px);
  max-width: none;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.of-seo p a { color: #2563c4; }
.of-seo p + h3 { margin-top: 30px; }

@media (max-width: 700px) {
  /* Giustificato su colonna stretta = spaziature irregolari fra le parole */
  .of-seo p { text-align: left; hyphens: manual; -webkit-hyphens: manual; }
}

/* ── FAQ (.of-faq) ─────────────────────────────────────────────
   Erano tre copie identiche inline in catalogo.php, hotel-ischia.php e
   offerte-ischia.php: il box aveva un max-width:820px fisso che su schermi
   larghi restava molto più stretto del paragrafo introduttivo appena sopra
   (misurato: 820px di box contro 1092px di paragrafo a 1920px di viewport),
   e le risposte non erano giustificate come il resto del testo intro. */
.of-faq-sec { padding-bottom: 20px; }
.of-faq { margin-top: 20px; display: grid; gap: 10px; }
.of-faq-item { background: #fff; border: 1px solid #dfe7f4; border-radius: 12px; overflow: hidden; }
.of-faq-item summary { cursor: pointer; list-style: none; padding: 16px 46px 16px 18px; font-weight: 700; color: var(--ht-blue-dark); font-size: 15.5px; position: relative; }
.of-faq-item summary::-webkit-details-marker { display: none; }
.of-faq-ic { position: absolute; right: 18px; top: 50%; width: 11px; height: 11px; margin-top: -7px; border-right: 2.5px solid var(--ht-blue); border-bottom: 2.5px solid var(--ht-blue); transform: rotate(45deg); transition: transform .2s; }
.of-faq-item[open] .of-faq-ic { transform: rotate(-135deg); margin-top: -2px; }
.of-faq-item[open] summary { color: var(--ht-blue); }
.of-faq-item summary:hover { background: #f7faff; }
.of-faq-item p { padding: 0 18px 18px; font-size: 15px; line-height: 1.72; color: #40506b; margin: 0; text-align: justify; }

@media (max-width: 700px) {
  .of-faq-item p { text-align: left; }
}

.tr-cat-desc { max-width: 860px; line-height: 1.7; text-align: justify; }

@media (max-width: 700px) {
  .tr-cat-desc { text-align: left; }
}

/* ── Scorciatoie (.cat-short) ─────────────────────────────────
   Nate in catalogo.php ("Vai dritto a quello che cerchi"), riusate identiche
   in tour-ischia.php per il blocco Offerte/Hotel/Contattaci. Centralizzate
   qui per non ripetere la tripla di .of-seo/.of-faq nei prossimi riusi. */
.cat-short-sec { padding: 40px 0 10px; }
.cat-short-intro { color: #40506b; font-size: 15.5px; line-height: 1.7; max-width: 70ch; margin: 0 0 22px; }
.cat-short-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.cat-short {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid #dfe7f4; border-radius: 16px; padding: 22px 22px 18px;
  text-decoration: none; color: inherit; box-shadow: 0 1px 2px rgba(26,45,82,.05), 0 8px 26px rgba(26,45,82,.06);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
a.cat-short:hover { transform: translateY(-3px); border-color: #b9cdf0; box-shadow: 0 4px 10px rgba(26,45,82,.08), 0 16px 40px rgba(26,45,82,.12); }
.cat-short-ic { width: 42px; height: 42px; border-radius: 12px; background: #eef3fc; color: #2563c4; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.cat-short-ic svg { width: 22px; height: 22px; }
.cat-short-n { font-family: var(--ht-serif); font-size: 34px; font-weight: 600; line-height: 1; color: #1a2d52; font-variant-numeric: tabular-nums; }
.cat-short-t { font-size: 15.5px; font-weight: 700; color: #1a2d52; }
.cat-short-x { font-size: 14px; color: #5a6b8c; line-height: 1.6; margin-top: 2px; }
.cat-short-go { margin-top: 12px; font-size: 14px; font-weight: 700; color: #2563c4; }
.cat-short--hot { border-color: #f5b301; }
.cat-short--hot .cat-short-ic { background: #fdf3d8; color: #a5490a; }

/* Variante "Contattaci": non è un unico link, ha due bottoni (WhatsApp + preventivo) */
.cat-short--contact { border-color: #cfe0d8; }
.cat-short--contact .cat-short-ic { background: #e3f6ea; color: #16a34a; }
.cat-short-contact-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.cat-short-wa, .cat-short-prev {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 10px 16px; border-radius: 10px; transition: background .15s, border-color .15s;
}
.cat-short-wa { background: #25d366; color: #fff; }
.cat-short-wa:hover { background: #1fb958; }
.cat-short-prev { background: #fff; color: #1a2d52; border: 1.5px solid #dfe7f4; }
.cat-short-prev:hover { border-color: #b9cdf0; background: #f7faff; }

@media (prefers-reduced-motion: reduce) {
  .cat-short { transition: none; }
  a.cat-short:hover { transform: none; }
}

.tr-cat { padding: 20px 0 8px; scroll-margin-top: 110px; }
.tr-cat-sub { color: #5a6075; font-size: 14px; margin: -6px 0 16px; }
.tr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

.tr-card { background: #fff; border: 1px solid #e3e8f2; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s; }
.tr-card:hover { box-shadow: 0 8px 26px rgba(26,45,82,.10); transform: translateY(-2px); }
.tr-card-media { position: relative; display: block; height: 160px; background: linear-gradient(135deg, #1a2d52 0%, #2563c4 100%); }
.tr-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-card-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 44px; font-weight: 800; color: rgba(255,255,255,.35); }
.tr-card-price {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(255,255,255,.95); color: #1a2d52; font-size: 12.5px; font-weight: 800;
  padding: 5px 11px; border-radius: 999px;
}
.tr-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tr-card-name { font-size: 17px; line-height: 1.2; margin: 0; }
.tr-card-name a { color: #1a2d52; text-decoration: none; }
.tr-card-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 12px; color: #5a6075; }
.tr-card-desc { font-size: 13px; color: #5a6075; line-height: 1.55; margin: 0; flex: 1; }
.tr-card-cta { font-size: 13.5px; font-weight: 700; color: #2563c4; text-decoration: none; margin-top: 2px; }

.tr-note { padding: 22px 0 34px; }

.tr-desc p { color: #2a3450; font-size: 15px; line-height: 1.75; margin: 0 0 14px; }
.tr-desc ul, .tr-desc ol { margin: 0 0 16px; padding-left: 22px; color: #2a3450; font-size: 15px; line-height: 1.75; }
.tr-desc li { margin-bottom: 7px; }
.tr-desc b, .tr-desc strong { color: #1a2d52; }
.tr-desc p:has(> b:only-child), .tr-desc p:has(> strong:only-child) {
  margin: 22px 0 8px; font-size: 16px; font-weight: 700; color: #1a2d52;
}
.tr-desc p:has(> b:only-child):first-child, .tr-desc p:has(> strong:only-child):first-child { margin-top: 0; }
.tr-route { margin-top: 12px; font-size: 13.5px; color: #44506b; background: var(--sky); border-radius: 10px; padding: 11px 14px; }
.tr-nb { margin-top: 16px; font-size: 12px; color: #9aa3b8; line-height: 1.6; }
.tr-details { width: 100%; font-size: 12.5px; margin-bottom: 12px; border-collapse: collapse; }
.tr-details td { padding: 6px 0; border-bottom: 1px solid #eef1f7; color: #1a2d52; }
.tr-details td:first-child { color: #8a93a8; padding-right: 10px; white-space: nowrap; }

/* Carosello Tour nella scheda hotel (sez. 10b) */
.ht-tours-sub { color: #5a6075; font-size: 14px; margin: -6px 0 16px; }
.ht-tourcard-ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a2d52 0%, #2563c4 100%);
}
.ht-tourcard-ph span { font-size: 40px; font-weight: 800; color: rgba(255,255,255,.35); }
.ht-tourcard-cat {
  display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: #176c2c; background: #e7f7ec; padding: 3px 8px;
  border-radius: 999px; margin-bottom: 4px; align-self: flex-start;
}
.ht-tours-all { font-size: 13.5px; font-weight: 700; color: #2563c4; text-decoration: none; }

/* Servizi extra nel modal preventivo (checkbox compatte a pillola) */
.ht-quote-extras { display: flex; flex-wrap: wrap; gap: 6px; }
.ht-quote-extra { cursor: pointer; }
.ht-quote-extra input { position: absolute; opacity: 0; pointer-events: none; }
.ht-quote-extra span {
  display: inline-block; font-size: 12px; font-weight: 600; color: #3a4a73;
  background: #f2f5fb; border: 1px solid #d9e2f2; border-radius: 999px;
  padding: 6px 11px; transition: all .12s;
}
.ht-quote-extra input:checked + span { background: #2563c4; border-color: #2563c4; color: #fff; }

/* Icone professionali modulo Tour */
.tr-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tr-card-meta svg { width: 14px; height: 14px; color: #2563c4; flex: none; }
.tr-cat-title { display: flex; align-items: center; gap: 10px; }
.tr-cat-ic { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: #eef2fb; color: #2563c4; flex: none; }
.tr-cat-ic svg { width: 19px; height: 19px; }
.tr-cat-badge { display: inline-flex; align-items: center; gap: 6px; }
.tr-cat-badge svg { width: 14px; height: 14px; }
.tr-det-ic { display: inline-flex; vertical-align: -3px; margin-right: 7px; color: #2563c4; }
.tr-det-ic svg { width: 14px; height: 14px; }
.tr-route { display: flex; align-items: flex-start; gap: 4px; }
.tr-route .tr-det-ic { margin-top: 2px; }

/* ═══════════ HUB OFFERTE /offerte-ischia/ — card hotel orizzontali (v=34) ═══════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.ofh-countbar { background: #2563c4; color: #fff; font-size: 15px; padding: 13px 6%; }
.ofh-countbar strong { font-weight: 800; }
.ofh-countprice { color: #ffd75e; }
.ofh-list { padding: 34px 6% 20px; }
.ofh-card { background: #fff; border: 1px solid #e2e7f0; border-radius: 14px; margin-bottom: 22px; overflow: hidden; box-shadow: 0 2px 10px rgba(26,45,82,.05); }
.ofh-top { display: grid; grid-template-columns: 300px 1fr 250px; }
.ofh-media { position: relative; display: block; min-height: 220px; overflow: hidden; background: linear-gradient(135deg, #dbe7f5, #b9cfe8); }
.ofh-media-track { display: flex; height: 100%; min-height: 220px; transition: transform .35s cubic-bezier(.4,0,.2,1); }
.ofh-media-slide { flex: 0 0 100%; position: relative; display: block; }
.ofh-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ofh-noimg { position: absolute; inset: 0; }
.ofh-media-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: #1a2d52; font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .18s; z-index: 3; box-shadow: 0 2px 8px rgba(26,45,82,.18); }
.ofh-media-arrow--prev { left: 8px; } .ofh-media-arrow--next { right: 8px; }
.ofh-media.has-carousel:hover .ofh-media-arrow, .ofh-media-arrow:focus-visible { opacity: 1; }
.ofh-media-count { position: absolute; right: 10px; bottom: 10px; background: rgba(15,23,42,.72); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; z-index: 3; pointer-events: none; }
@media (hover: none) { .ofh-media.has-carousel .ofh-media-arrow { opacity: 1; } }
.ofh-flag { position: absolute; top: 12px; left: 0; background: #d92b45; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .03em; padding: 6px 12px 6px 10px; border-radius: 0 999px 999px 0; text-transform: uppercase; }
/* Badge urgenza (scadenza reale del listino) — foto, in basso a sinistra */
.ofh-urg { position: absolute; left: 10px; bottom: 10px; z-index: 3; display: inline-flex; align-items: center; gap: 5px;
           color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .02em; padding: 5px 11px 5px 9px;
           border-radius: 999px; pointer-events: none; white-space: nowrap;
           box-shadow: 0 2px 8px rgba(15,23,42,.35); }
.ofh-urg svg { width: 13px; height: 13px; flex: none; }
.ofh-urg--warm { background: linear-gradient(135deg, #f59e0b, #d97706); animation: ofhPulseWarm 2.4s ease-in-out infinite; }
.ofh-urg--hot  { background: linear-gradient(135deg, #ef4444, #c81e35); animation: ofhPulseHot 1.3s ease-in-out infinite; }
@keyframes ofhPulseWarm {
  0%, 100% { opacity: 1;   box-shadow: 0 2px 8px rgba(15,23,42,.35), 0 0 0 0 rgba(245,158,11,.55); }
  50%      { opacity: .88; box-shadow: 0 2px 8px rgba(15,23,42,.35), 0 0 0 7px rgba(245,158,11,0); }
}
@keyframes ofhPulseHot {
  0%, 100% { opacity: 1;   transform: scale(1);     box-shadow: 0 2px 8px rgba(15,23,42,.35), 0 0 0 0 rgba(239,68,68,.6); }
  50%      { opacity: .92; transform: scale(1.045); box-shadow: 0 2px 8px rgba(15,23,42,.35), 0 0 0 9px rgba(239,68,68,0); }
}
@media (prefers-reduced-motion: reduce) { .ofh-urg--warm, .ofh-urg--hot { animation: none; } }
.ofh-info { padding: 18px 20px; min-width: 0; }
.ofh-name { margin: 0; font-size: 21px; line-height: 1.25; }
.ofh-name a { color: #1a2d52; text-decoration: none; }
.ofh-name a:hover { color: #2563c4; }
.ofh-stars { color: #f2b01e; font-size: 15px; letter-spacing: 1.5px; margin-left: 8px; white-space: nowrap; }
.ofh-meta { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13.5px; color: #44506b; align-items: center; }
.ofh-loc { display: inline-flex; align-items: center; gap: 6px; }
.ofh-loc svg { width: 15px; height: 15px; color: #2563c4; flex: none; }
.ofh-score { background: #eef7f1; color: #1a7f4e; font-weight: 600; padding: 3px 10px; border-radius: 999px; font-size: 12.5px; }
.ofh-score strong { font-weight: 800; }
.ofh-services { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 12px; }
.ofh-services li { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: #44506b; background: #f4f7fc; border-radius: 999px; padding: 4px 11px; }
.ofh-services svg { width: 11px; height: 11px; color: #1a7f4e; flex: none; }
.ofh-price { border-left: 1px solid #edf0f6; padding: 18px 18px 16px; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; gap: 3px; background: #fbfcfe; }
.ofh-price-label { font-size: 12.5px; color: #5a6b8c; font-weight: 600; line-height: 1.35; }
.ofh-price-val { font-size: 32px; font-weight: 800; color: #1a7f4e; line-height: 1.1; }
.ofh-price-val--txt { font-size: 18px; color: #1a2d52; }
.ofh-price-dates { font-size: 12px; color: #b03030; font-weight: 700; }
.ofh-cta { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; width: 100%; max-width: 210px; }
.ofh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 13.5px; font-weight: 800; padding: 10px 12px; border-radius: 9px; text-decoration: none; letter-spacing: .01em; transition: filter .15s; }
.ofh-btn:hover { filter: brightness(1.08); }
.ofh-btn svg { width: 15px; height: 15px; flex: none; }
.ofh-btn--call { background: #2563c4; color: #fff; }
.ofh-btn--wa { background: #1fa855; color: #fff; }
.ofh-btn--info { background: #ffd75e; color: #1a2d52; }
.ofh-deals { border-top: 1px solid #edf0f6; padding: 14px 20px 16px; }
.ofh-tabs { align-items: center; margin-bottom: 10px; }
.ofh-cal { width: 16px; height: 16px; color: #5a6b8c; margin-right: 2px; flex: none; }
.ofh-panel { display: none; flex-direction: column; gap: 8px; }
.ofh-panel.is-active { display: flex; }
.ofh-deal { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; border: 1px solid #e6ebf4; border-radius: 10px; padding: 11px 14px; transition: border-color .15s, background .15s; }
.ofh-deal:hover, .ofh-deal.is-open { border-color: #2563c4; background: #f7faff; }
/* Header cliccabile (reset button) — tap ovunque apre la fisarmonica */
.ofh-deal-head { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; gap: 12px; background: none; border: 0; padding: 0; margin: 0; font: inherit; color: inherit; text-align: left; cursor: pointer; }
.ofh-deal-head:focus-visible { outline: 2px solid #2563c4; outline-offset: 3px; border-radius: 6px; }
.ofh-deal-main { min-width: 0; flex: 1; }
.ofh-deal-title { display: block; font-size: 14.5px; font-weight: 700; color: #1a2d52; line-height: 1.3; }
.ofh-deal-meta { display: block; margin-top: 3px; font-size: 12.5px; color: #5a6b8c; }
.ofh-deal-bonus { color: #1a7f4e; font-weight: 700; }
.ofh-deal-price { font-size: 16.5px; font-weight: 800; color: #1a2d52; white-space: nowrap; }
.ofh-deal-price small { font-size: 11px; font-weight: 600; color: #5a6b8c; }
.ofh-deal-chevron { width: 18px; height: 18px; flex: none; color: #9aa7c2; transition: transform .25s ease, color .15s; }
.ofh-deal-head:hover .ofh-deal-chevron { color: #2563c4; }
.ofh-deal.is-open .ofh-deal-chevron { transform: rotate(180deg); color: #2563c4; }
.ofh-deal-btn { background: #2563c4; color: #fff; font-size: 13px; font-weight: 800; padding: 9px 18px; border-radius: 9px; text-decoration: none; white-space: nowrap; flex: none; transition: background .15s; }
.ofh-deal-btn:hover { background: #1a4e9e; }
/* Pannello dettagli a fisarmonica (full-width sotto l'header) */
.ofh-deal-detail { flex-basis: 100%; width: 100%; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .22s ease, margin-top .3s ease; }
.ofh-deal.is-open .ofh-deal-detail { max-height: 2600px; opacity: 1; margin-top: 6px; }
/* Chip periodo/trattamento/bonus/scadenza dentro il pannello (stesse classi della scheda hotel) */
.ofh-deal-chips { margin: 0 0 10px; }
/* Blocco condizioni (Compreso/Supplementi/Riduzioni) iniettato via JS */
.ofh-deal-terms:not(:empty) { margin-top: 14px; padding-top: 14px; border-top: 1px dashed #d9e1f0; }
.ofh-dd { margin: 0; border-top: 1px dashed #d9e1f0; padding-top: 10px; }
.ofh-dd-row { display: flex; gap: 12px; padding: 5px 0; font-size: 13px; line-height: 1.4; }
.ofh-dd-row dt { flex: 0 0 118px; color: #8b95ac; font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .03em; padding-top: 1px; }
.ofh-dd-row dd { margin: 0; flex: 1; color: #1a2d52; }
.ofh-dd-bonus { color: #1a7f4e; font-weight: 600; }
.ofh-dd-deadline { display: inline-block; background: #fdecd8; color: #a5490a; font-weight: 700; padding: 2px 10px; border-radius: 999px; font-size: 12px; }
.ofh-dd-price { font-weight: 800; color: #1a7f4e; font-size: 15px; }
.ofh-dd-price span { font-weight: 600; color: #5a6b8c; font-size: 12px; }
.ofh-deal-full { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; border: 1px solid #2563c4; color: #2563c4; background: #fff; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 9px; text-decoration: none; transition: background .15s, color .15s; }
.ofh-deal-full:hover { background: #2563c4; color: #fff; }
.ofh-deal-full svg { width: 15px; height: 15px; flex: none; }
@media (prefers-reduced-motion: reduce) { .ofh-deal-detail, .ofh-deal-chevron { transition: none; } }
.of-empty { margin-top: 26px; padding: 26px; background: #f4f7fc; border: 1px dashed #c7d3e8; border-radius: 12px; color: #44506b; font-size: 15px; text-align: center; }
.of-empty a { color: #2563c4; font-weight: 700; }
.ht-filter-count { font-size: 12.5px; color: rgba(255,255,255,.85); font-weight: 600; }
@media (max-width: 980px) {
  .ofh-top { grid-template-columns: 240px 1fr; }
  .ofh-price { grid-column: 1 / -1; border-left: 0; border-top: 1px solid #edf0f6; flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: left; align-items: center; padding: 14px 18px; }
  .ofh-cta { flex-direction: row; max-width: none; width: auto; margin-top: 0; }
}
@media (max-width: 640px) {
  .ofh-top { grid-template-columns: 1fr; }
  .ofh-media { min-height: 190px; aspect-ratio: 16/9; }
  .ofh-info { padding: 15px 16px; }
  .ofh-name { font-size: 18px; }
  .ofh-stars { font-size: 13px; }
  .ofh-price { flex-direction: column; text-align: center; gap: 4px; }
  .ofh-cta { flex-direction: column; width: 100%; max-width: none; }
  .ofh-deals { padding: 12px 14px 14px; }
  .ofh-deal { flex-wrap: wrap; gap: 6px 12px; }
  .ofh-deal-btn { width: 100%; text-align: center; }
  .ofh-list { padding: 26px 5% 12px; }
}

/* ═══════════ HUB DESTINAZIONI /destinazioni-ischia/ (v=35) ═══════════ */
.dst-list { padding: 40px 6% 20px; }
.dst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.dst-card { background: #fff; border: 1px solid #e2e7f0; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(26,45,82,.05); transition: box-shadow .2s, transform .2s; }
.dst-card:hover { box-shadow: 0 10px 30px rgba(26,45,82,.12); transform: translateY(-2px); }
.dst-media { position: relative; display: block; aspect-ratio: 16/10; background: linear-gradient(135deg, #dbe7f5, #b9cfe8); }
.dst-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dst-flag { position: absolute; top: 12px; left: 0; background: #1a2d52; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .03em; padding: 6px 12px 6px 10px; border-radius: 0 999px 999px 0; text-transform: uppercase; }
.dst-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.dst-name { margin: 0; font-size: 20px; line-height: 1.25; }
.dst-name a { color: #1a2d52; text-decoration: none; }
.dst-name a:hover { color: #2563c4; }
.dst-eyebrow { margin-top: 4px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #2563c4; }
.dst-desc { margin: 10px 0 0; font-size: 13.5px; line-height: 1.55; color: #44506b; }
.dst-points { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.dst-points li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: #44506b; }
.dst-points svg { width: 14px; height: 14px; color: #2563c4; flex: none; margin-top: 2px; }
.dst-foot { margin-top: auto; padding-top: 16px; }
.dst-price { display: block; font-size: 13px; color: #1a7f4e; font-weight: 600; }
.dst-price strong { font-weight: 800; }
.dst-cta { margin-top: 10px; display: flex; gap: 8px; }
.dst-btn { flex: 1; text-align: center; font-size: 13px; font-weight: 800; padding: 10px 10px; border-radius: 9px; text-decoration: none; transition: filter .15s; }
.dst-btn:hover { filter: brightness(1.08); }
.dst-btn--guide { background: #2563c4; color: #fff; }
.dst-btn--hotels { background: #eef3fb; color: #1a2d52; border: 1px solid #d4dff0; }
@media (max-width: 980px) { .dst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .dst-grid { grid-template-columns: 1fr; } .dst-list { padding: 30px 5% 12px; } }

/* ═══════════ BLOG /blog/ + scheda articolo (v=36) ═══════════ */
.bl-list { padding: 40px 6% 20px; }
.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.bl-card { background: #fff; border: 1px solid #e2e7f0; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(26,45,82,.05); transition: box-shadow .2s, transform .2s; }
.bl-card:hover { box-shadow: 0 10px 30px rgba(26,45,82,.12); transform: translateY(-2px); }
.bl-media { position: relative; display: block; aspect-ratio: 16/10; background: linear-gradient(135deg, #dbe7f5, #b9cfe8); }
/* Media fuori flusso: cosi l'aspect-ratio 16/10 di .bl-media comanda sempre,
   anche quando l'immagine ha un rapporto diverso (es. 3:2), che altrimenti fa
   crescere la card e sfalsa la griglia.
   Vale sia per le card con <picture> (pagine destinazione) sia per quelle con
   <img> diretto (blog, articolo, comuni). */
.bl-media picture,
.bl-media > img { position: absolute; inset: 0; display: block; }
.bl-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 44px; font-weight: 800; color: rgba(26,45,82,.25); }
.bl-cat { position: absolute; top: 12px; left: 12px; background: #1a2d52; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.bl-cat--inline { position: static; display: inline-block; }
.bl-body { padding: 15px 17px 18px; display: flex; flex-direction: column; flex: 1; }
.bl-date { font-size: 12px; color: #5a6b8c; font-weight: 600; }
.bl-title { margin: 6px 0 0; font-size: 17px; line-height: 1.35; }
.bl-title a { color: #1a2d52; text-decoration: none; }
.bl-title a:hover { color: #2563c4; }
.bl-excerpt { margin: 9px 0 0; font-size: 13.5px; line-height: 1.55; color: #44506b; }
.bl-more { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 800; color: #2563c4; text-decoration: none; }
.bl-more:hover { text-decoration: underline; }
/* Scheda articolo */
.bl-article { padding-bottom: 10px; }
.bl-art-head { padding: 34px 6% 0; }
.bl-art-head .ht-container, .bl-art-body { max-width: 860px; }
.bl-art-meta { display: flex; align-items: center; gap: 14px; }
/* peso 600: Playfair non ha il 700, il browser lo sintetizzava (bold finto) */
.bl-art-title { margin: 14px 0 0; font-family: var(--ht-serif); font-size: clamp(28px, 4.5vw, 42px); font-weight: 600; line-height: 1.15; color: #1a2d52; }
.bl-art-occhiello { margin: 14px 0 0; font-size: 17px; line-height: 1.55; color: #44506b; }
.bl-art-hero { margin: 26px auto 0; max-width: 860px; }
.bl-art-hero img { width: 100%; height: auto; border-radius: 16px; display: block; }
.bl-art-body { padding: 10px 6% 30px; margin: 0 auto; }
.bl-art-lead { margin: 24px 0 0; padding: 18px 20px; background: #f4f8ff; border-left: 4px solid #2563c4; border-radius: 0 12px 12px 0; font-size: 16.5px; line-height: 1.6; color: #1a2d52; font-weight: 500; }
.bl-art-text { margin-top: 22px; font-size: 15.5px; line-height: 1.75; color: #2c3a55; }
.bl-art-text p { margin: 0 0 14px; }
.bl-art-text h2 { margin: 30px 0 4px; font-size: 23px; color: #1a2d52; }
.bl-art-text h3 { margin: 24px 0 2px; font-size: 18px; color: #1a2d52; }
.bl-art-text a { color: #2563c4; font-weight: 600; }
.bl-art-text ul, .bl-art-text ol { margin: 10px 0 10px 22px; }
.bl-art-text li { margin-bottom: 6px; }
.bl-art-text b, .bl-art-text strong { color: #1a2d52; }
.bl-art-faq { margin-top: 36px; }
.bl-faq-item { border: 1px solid #e2e7f0; border-radius: 10px; padding: 0 16px; margin-top: 10px; background: #fff; }
.bl-faq-item summary { cursor: pointer; font-weight: 700; color: #1a2d52; padding: 14px 0; font-size: 15px; }
.bl-faq-item p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; color: #44506b; }
.bl-art-cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #f4f8ff; border: 1px solid #d4e2f7; border-radius: 14px; padding: 20px 22px; flex-wrap: wrap; }
.bl-art-cta-txt { font-size: 14.5px; line-height: 1.55; color: #44506b; max-width: 480px; }
.bl-art-cta-txt strong { display: block; color: #1a2d52; font-size: 15.5px; margin-bottom: 3px; }
.bl-art-cta-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.bl-related { background: #f8fafd; margin-top: 26px; padding-top: 30px; padding-bottom: 34px; }
@media (max-width: 980px) { .bl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bl-grid { grid-template-columns: 1fr; } .bl-list { padding: 30px 5% 12px; } .bl-art-cta { flex-direction: column; align-items: flex-start; } }

/* ═══════════ PAGINE GUIDA (termali + comuni) — restyle allineato alle schede (v=37) ═══════════ */
.gd-hero .ht-herosearch-inner { max-width: 900px; }
.gd-sec { padding: 44px 6% 30px; background: #fff; }
.gd-sec--alt { background: #f8fafd; }
.gd-narrow { max-width: 860px; margin: 0 auto; }
.gd-text { font-size: 15.5px; line-height: 1.75; color: #2c3a55; max-width: 760px; }
.gd-points { margin-top: 4px; }
.gd-points li { font-size: 14.5px; }
.gd-steps { list-style: none; margin: 4px 0 0; padding: 0; counter-reset: gds; display: flex; flex-direction: column; gap: 12px; }
.gd-steps li { counter-increment: gds; position: relative; padding-left: 44px; font-size: 14.5px; line-height: 1.65; color: #2c3a55; min-height: 30px; }
.gd-steps li::before { content: counter(gds); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: #1a2d52; color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.gd-cta { background: #1a2d52; padding: 52px 6%; text-align: center; }
.gd-cta-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffd75e; }
.gd-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.6vw, 34px); font-weight: 600; color: #fff; margin: 12px 0 0; line-height: 1.25; }
.gd-cta p { margin: 14px auto 0; font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 560px; }
.gd-cta-btns { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gd-cta-btns .ofh-btn { padding: 12px 22px; font-size: 14px; }
.gd-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.gd-tag { font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 5px 13px; }
@media (max-width: 640px) { .gd-sec { padding: 34px 5% 24px; } .gd-cta { padding: 40px 5%; } }

/* ═══════════ CAROSELLO FOTO MOBILE scheda hotel (v=38) ═══════════ */
.ht-mobcar { display: none; }
@media (max-width: 820px) {
  /* Su mobile comanda il carosello swipe: il mosaico resta solo desktop */
  .ht-mosaic--full, .ht-mosaic--mini { display: none; }
  .ht-mobcar { display: block; position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
  .ht-mobcar-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .ht-mobcar-track::-webkit-scrollbar { display: none; }
  .ht-mobcar-slide { position: relative; flex: 0 0 100%; scroll-snap-align: center; border: none; padding: 0; background: #dbe7f5; aspect-ratio: 4 / 3; cursor: pointer; }
  .ht-mobcar-slide picture { position: absolute; inset: 0; display: block; }
  .ht-mobcar-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ht-mobcar-count { position: absolute; right: 12px; bottom: 12px; background: rgba(15,23,42,.72); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; pointer-events: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREVENTIVO A PASSI (wizard) — includes/quote-wizard.php
   ═══════════════════════════════════════════════════════════════════ */
.wz-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(10,20,40,.62);
  backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.wz-overlay[hidden] { display: none; }
.wz { position: relative; background: #fff; border-radius: 18px; width: 100%; max-width: 560px;
  max-height: calc(100vh - 40px); display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 70px rgba(10,20,40,.35); }
.wz-x { position: absolute; right: 12px; top: 10px; z-index: 2; background: rgba(255,255,255,.9); border: 0;
  width: 34px; height: 34px; border-radius: 50%; font-size: 24px; line-height: 1; color: #44536e; cursor: pointer; }
.wz-x:hover { background: #eef2f8; }

.wz-head { padding: 22px 24px 16px; background: linear-gradient(135deg, #12294f, #1f4a8f); color: #fff; flex: none; }
.wz-kicker { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #f5b301; margin: 0 0 6px; }
.wz-head h2 { font-family: var(--ht-serif, Georgia, serif); font-size: 20px; margin: 0 0 14px; color: #fff; line-height: 1.25; }
.wz-steps { display: flex; align-items: center; gap: 12px; }
.wz-bar { flex: 1; height: 5px; background: rgba(255,255,255,.22); border-radius: 99px; overflow: hidden; }
.wz-bar i { display: block; height: 100%; width: 20%; background: #f5b301; border-radius: 99px; transition: width .3s ease; }
#wzStepLbl { font-size: 11.5px; color: #cfe0fb; white-space: nowrap; }

.wz-form { display: flex; flex-direction: column; overflow: hidden; flex: 1; }
.wz-step { display: none; padding: 22px 24px 6px; overflow-y: auto; }
.wz-step.is-on { display: block; }
.wz-step h3 { font-family: var(--ht-serif, Georgia, serif); font-size: 19px; color: #1a2d52; margin: 0 0 6px; }
.wz-x-note, .wz-x { }
.wz-step .wz-x { position: static; background: none; border: 0; width: auto; height: auto; border-radius: 0;
  font-size: 13.5px; color: #5a6b8c; line-height: 1.6; margin: 0 0 16px; display: block; cursor: auto; }

.wz-f { display: block; margin-bottom: 13px; font-size: 12px; font-weight: 700; color: #5a6b8c;
  text-transform: uppercase; letter-spacing: .04em; }
.wz-f input, .wz-f select, .wz-f textarea { display: block; width: 100%; margin-top: 5px; padding: 11px 13px;
  border: 1px solid #d5dded; border-radius: 9px; font-size: 15px; font-family: inherit; font-weight: 400;
  color: #1a2d52; text-transform: none; letter-spacing: 0; background: #fff; }
.wz-f input:focus, .wz-f select:focus, .wz-f textarea:focus { outline: 2px solid #2563c4; outline-offset: 1px; border-color: #2563c4; }
.wz-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wz-hint { font-size: 12.5px; color: #7a879e; margin: -6px 0 12px; }
.wz-lab { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #8b95ac; margin-bottom: 6px; }
.wz-ck { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: #44536e; margin-bottom: 10px; line-height: 1.5; }
.wz-ck input { margin-top: 2px; flex: none; }
.wz-ck a { color: #2563c4; }

/* Scelta del pacchetto */
.wz-offs { display: grid; gap: 8px; margin-bottom: 16px; max-height: 240px; overflow-y: auto; }
.wz-off { display: block; cursor: pointer; }
.wz-off input { position: absolute; opacity: 0; }
.wz-off-b { display: block; border: 1.5px solid #dfe7f4; border-radius: 11px; padding: 11px 13px; transition: border-color .15s, background .15s; }
.wz-off input:checked + .wz-off-b { border-color: #2563c4; background: #f4f8ff; }
.wz-off input:focus-visible + .wz-off-b { outline: 2px solid #2563c4; outline-offset: 2px; }
.wz-off-t { display: block; font-weight: 700; font-size: 14px; color: #1a2d52; line-height: 1.35; }
.wz-off-m { display: block; font-size: 12.5px; color: #7a879e; margin-top: 2px; }
.wz-off-p { display: inline-block; margin-top: 5px; font-weight: 800; color: #1a7f4e; font-size: 13.5px; }
.wz-off-p small { font-weight: 600; font-size: 11.5px; opacity: .8; }

/* Età bambini */
.wz-eta { margin: 4px 0 12px; }
.wz-eta-in { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 9px; }
.wz-eta-f { font-size: 11.5px; color: #7a879e; font-weight: 600; }
.wz-eta-f input { width: 100%; margin-top: 4px; padding: 9px 11px; border: 1px solid #d5dded; border-radius: 8px; font-size: 15px; }

/* Riquadro stima */
.wz-stima { background: #f7faff; border: 1px solid #dfe7f4; border-radius: 13px; padding: 16px; margin-top: 4px; }
.wz-stima-load { color: #7a879e; font-size: 13.5px; }
.wz-stima-no { color: #5a6b8c; font-size: 13.5px; line-height: 1.6; margin: 0; }
.wz-tot { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px dashed #d9e1f0; }
.wz-tot span { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #8b95ac; }
.wz-tot strong { font-size: 28px; color: #1a7f4e; font-weight: 800; margin-left: auto; }
.wz-tot em { display: block; width: 100%; font-style: normal; font-size: 12.5px; color: #7a879e; }
.wz-voci { list-style: none; margin: 10px 0 0; padding: 0; }
.wz-voci li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 4px 0; color: #44536e; }
.wz-voci li b { color: #1a2d52; white-space: nowrap; }
.wz-loco, .wz-sr { margin-top: 12px; padding-top: 10px; border-top: 1px dashed #d9e1f0; }
.wz-sr ul { margin: 0; padding-left: 16px; font-size: 12.5px; color: #96590a; line-height: 1.6; }
.wz-sr em { color: #7a879e; font-style: normal; }
.wz-disc { font-size: 11.5px; color: #8b95ac; line-height: 1.55; margin: 12px 0 0; }

.wz-recap { background: #f7faff; border-left: 3px solid #2563c4; border-radius: 0 9px 9px 0; padding: 11px 14px; margin-top: 8px; }
.wz-recap p { margin: 0; font-size: 13px; color: #1a2d52; line-height: 1.55; }

.wz-msg { padding: 0 24px; font-size: 13.5px; line-height: 1.5; }
.wz-msg.is-err { color: #a1291c; }
.wz-msg.is-ok { color: #126b3f; font-weight: 600; padding: 20px 24px; }

.wz-nav { display: flex; gap: 10px; padding: 16px 24px 20px; border-top: 1px solid #eef2f8; flex: none; }
.wz-b { border: 0; border-radius: 10px; padding: 13px 24px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
.wz-b--back { background: #fff; border: 1px solid #d5dded; color: #44536e; }
.wz-b--next, .wz-b--send { background: #2563c4; color: #fff; margin-left: auto; flex: 1; max-width: 260px; }
.wz-b--send { background: #1a7f4e; }
.wz-b--next:hover { background: #1a4e9e; } .wz-b--send:hover { background: #14663e; }
.wz-b:disabled { opacity: .6; cursor: default; }

@media (max-width: 560px) {
  .wz-overlay { padding: 0; align-items: flex-end; }
  .wz { max-width: 100%; border-radius: 16px 16px 0 0; max-height: 94vh; }
  .wz-row2 { grid-template-columns: 1fr; }
  .wz-b--next, .wz-b--send { max-width: none; }
}
@media (prefers-reduced-motion: reduce) { .wz-bar i, .wz-off-b { transition: none; } }
/* Spunta "viaggio da solo": disattivata quando gli ospiti sono più di uno */
.wz-ck-x { display: block; font-size: 12px; color: #8b95ac; font-style: normal; margin-top: 2px; line-height: 1.45; }
.wz-ck.is-off { opacity: .45; }
.wz-ck.is-off span { cursor: not-allowed; }
.wz-f select:disabled, .wz-f input:disabled { background: #f4f6fa; color: #8b95ac; cursor: not-allowed; }
