/* ============================================================
   VIENNA MARE — extra.css
   Mobile menu, nav labels, dropdowns, lang switcher,
   animations, CF7, pagination, utilities
   Wecomm Agency
   ============================================================ */

/* ── NAV LABELS (2 righe per voce) ── */
.vm-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.vm-nav-item { position: relative; }
.vm-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.05rem;
  height: var(--nav-h);
  text-decoration: none;
  transition: opacity .2s;
}
.vm-nav-item > a:hover { opacity: .65; }
.vm-nav-label {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 1px;
}
.vm-nav-label-top {
  font-family: var(--sans);
  font-size: .5rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-light); line-height: 1.2;
}
.vm-nav-label-main {
  font-family: var(--serif);
  font-size: .88rem; font-weight: 300;
  color: var(--ink); letter-spacing: .04em;
  line-height: 1.2; white-space: nowrap;
}
/* Separatori verticali */
.vm-nav-item + .vm-nav-item > a::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 20px; width: 1px;
  background: var(--border);
  pointer-events: none;
}

/* ── DROPDOWN ── */
.vm-nav-dropdown {
  position: absolute; top: 100%;
  left: 50%; transform: translateX(-50%) translateY(-4px);
  background: rgba(245,243,240,.98);
  backdrop-filter: blur(14px);
  border-top: 2px solid var(--ink);
  min-width: 200px; padding: .7rem 0;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(11,61,98,.1);
}
.vm-nav-has-dropdown:hover .vm-nav-dropdown,
.vm-nav-has-dropdown:focus-within .vm-nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.vm-nav-dropdown li { list-style: none; }
.vm-nav-dropdown li a {
  display: block; padding: .55rem 1.4rem;
  font-size: .65rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mid); transition: color .15s, padding-left .15s;
  white-space: nowrap; text-decoration: none;
}
.vm-nav-dropdown li a:hover { color: var(--ink); padding-left: 1.8rem; }

/* ── NAV ON-DARK (hero) ── */
.vm-nav.on-dark .vm-nav-label-top  { color: rgba(255,255,255,.45); }
.vm-nav.on-dark .vm-nav-label-main { color: rgba(255,255,255,.9); }
.vm-nav.on-dark .vm-nav-item + .vm-nav-item > a::before { background: rgba(255,255,255,.15); }
.vm-nav.on-dark .vm-logo-main { color: #fff; }
.vm-nav.on-dark .vm-logo-main .sep { color: rgba(255,255,255,.3); }
.vm-nav.on-dark .vm-logo-sub { color: rgba(255,255,255,.4); }
.vm-nav.on-dark .vm-prenota { color: #fff; border-color: rgba(255,255,255,.45); }
.vm-nav.on-dark .vm-prenota:hover { background: #fff; color: var(--ink); border-color: #fff; }
.vm-nav.on-dark .vm-prenota svg { stroke: currentColor; }
.vm-nav.on-dark .vm-hamburger span { background: #fff; }
.vm-nav.on-dark .vm-lang-current { color: rgba(255,255,255,.75); }
.vm-nav.on-dark .vm-lang-toggle svg { color: rgba(255,255,255,.45); }

/* ── LANGUAGE SWITCHER ── */
.vm-lang { position: relative; cursor: pointer; }
.vm-lang-toggle {
  display: flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer; padding: .3rem .2rem;
}
.vm-lang-current {
  font-size: .65rem; font-weight: 400; letter-spacing: .12em;
  color: var(--ink-mid); transition: color .2s;
}
.vm-lang-toggle svg { color: var(--ink-light); }
.vm-lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: rgba(245,243,240,.98); backdrop-filter: blur(12px);
  border-top: 2px solid var(--ink);
  min-width: 64px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
  box-shadow: 0 4px 16px rgba(11,61,98,.1);
}
.vm-lang.open .vm-lang-dropdown,
.vm-lang:hover .vm-lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.vm-lang-dropdown a {
  display: block; padding: .4rem 1rem; text-align: center;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-light); transition: color .15s; text-decoration: none;
}
.vm-lang-dropdown a.active,
.vm-lang-dropdown a:hover { color: var(--ink); }

/* ── MOBILE MENU ── */
.vm-mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(245,243,240,.98);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 5rem 3rem 4rem;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.77,0,.175,1);
  overflow-y: auto;
}
.vm-mobile-menu.open { transform: translateX(0); }
.vm-mobile-links {
  display: flex; flex-direction: column; gap: 1.2rem; width: 100%;
}
.vm-mobile-links a {
  font-family: var(--serif);
  font-size: clamp(1.4rem,4vw,2rem); font-weight: 300;
  color: var(--ink); text-decoration: none;
  transition: color .2s; line-height: 1.2;
}
.vm-mobile-links a:hover { color: var(--ink-light); }
.vm-mobile-close {
  position: absolute; top: 1.8rem; right: 2.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: .4rem;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* ── PAGINATION ── */
.nav-links {
  display: flex; justify-content: center; gap: .6rem;
  padding: 3rem 0; font-size: .72rem; font-weight: 300;
  list-style: none;
}
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(11,61,98,.15);
  color: var(--ink-mid); transition: all .2s; text-decoration: none;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav-links .page-numbers.dots { border: none; }

/* ── CF7 FORMS ── */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%; font-family: var(--sans);
  font-size: .82rem; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  padding: .8rem 1rem; outline: none; border-radius: 0;
  transition: border-color .2s; appearance: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: var(--ink); }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] {
  font-family: var(--sans); font-size: .63rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); background: var(--ink);
  border: 1px solid var(--ink); border-radius: 100px;
  padding: .72rem 2rem; cursor: pointer; transition: background .2s;
}
.wpcf7 input[type="submit"]:hover { background: #0e4a78; }
.wpcf7-response-output { font-size: .72rem; margin-top: 1rem; padding: .7rem 1rem; border: none !important; }
.wpcf7-validation-errors { color: #b0392b; background: rgba(176,57,43,.06); }
.wpcf7-mail-sent-ok { color: #1a7a3a; background: rgba(26,122,58,.06); }

/* ── NEWSLETTER FORM ── */
.vm-newsletter-form { display: flex; gap: 0; max-width: 480px; }
.vm-newsletter-form input[type="email"] {
  flex: 1; border: 1px solid var(--border); border-right: none;
  font-family: var(--sans); font-size: .78rem; font-weight: 300;
  color: var(--ink); padding: .75rem 1rem; outline: none;
  background: var(--white); transition: border-color .2s;
}
.vm-newsletter-form input:focus { border-color: var(--ink); }
.vm-newsletter-form button {
  font-family: var(--sans); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); background: var(--ink);
  border: 1px solid var(--ink); padding: .75rem 1.4rem;
  white-space: nowrap; cursor: pointer; transition: background .2s;
}
.vm-newsletter-form button:hover { background: #0e4a78; }

/* ── META BOX ADMIN STYLE ── */
#vm_camera_details .inside,
#vm_offerta_details .inside,
#vm_servizio_details .inside {
  padding: 12px 16px !important;
}

/* ── WPML ls override ── */
.wpml-ls-statics-shortcode_actions { display: none; }

/* ── SELECTION ── */
::selection { background: rgba(11,61,98,.1); color: var(--ink); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(11,61,98,.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(11,61,98,.35); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 10000;
  background: var(--ink); color: var(--cream);
  padding: .7rem 1.4rem; font-size: .72rem; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── GALLERY FILTER ACTIVE ── */
.vm-gall-filter.active {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-color: var(--ink) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .vm-nav-label-main { font-size: .78rem; }
  .vm-nav-item > a { padding: 0 .75rem; }
}
@media (max-width: 1024px) {
  #vm-nav-links { display: none; }
}
@media (max-width: 768px) {
  .vm-nav { padding: 0 1.5rem; }
  .vm-newsletter-form { flex-direction: column; }
  .vm-newsletter-form input[type="email"] { border-right: 1px solid var(--border); border-bottom: none; }
}

/* ── PRINT ── */
@media print {
  .vm-nav, .vm-booking, .vm-scroll-top, .vm-mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}

/* keyboard nav dropdown */
.vm-nav-has-dropdown.force-open .vm-nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════════
   PAGE LOADER — sfondo brand blue + logo centrale
   ══════════════════════════════════════════════════ */

/* Variabile blu brand (colore primario hotel) */
:root { --brand-blue: #0b3d62; }

/* Blocca scroll mentre il loader è visibile */
body.vm-loading {
  overflow: hidden;
  pointer-events: none;
}

.vm-page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .65s cubic-bezier(.55,0,.1,1);
}
.vm-page-loader.show {
  opacity: 1;
  pointer-events: all;
}

/* Logo: entra dal basso con fade */
.vm-page-loader__inner {
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease .15s, transform .6s cubic-bezier(.22,1,.36,1) .15s;
}
.vm-page-loader.show .vm-page-loader__inner {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse sul logo quando visibile */
.vm-page-loader__logo {
  display: block;
  max-width: 130px;
  width: 18vw;
  min-width: 90px;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  animation: vmLogoPulse 2.2s ease-in-out infinite;
}
@keyframes vmLogoPulse {
  0%,100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: .72; transform: scale(.97); }
}

/* Linea animata sotto il logo */
.vm-page-loader__line {
  display: block;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,.35);
  margin: 1.4rem auto 0;
  animation: vmLineGrow 1.8s ease-in-out infinite alternate;
}
@keyframes vmLineGrow {
  from { width: 0;    opacity: .3; }
  to   { width: 80px; opacity: .7; }
}

/* em rimosso — subtitle non più usato */

@media (prefers-reduced-motion: reduce) {
  .vm-page-loader { display: none !important; }
  body.vm-loading { overflow: auto; pointer-events: auto; }
}

/* ══════════════════════════════════════════════════
   GSAP / SPLITTING — base per animazioni
   ══════════════════════════════════════════════════ */
[data-vm-anim] { position: relative; }

.vm-fb-h2, .vm-lfb-h2, .vm-split-h2, .vm-section-h2,
.vm-hero-logo-big {
  overflow: hidden;
  display: block;
}
.vm-fb-h2 .word, .vm-lfb-h2 .word, .vm-split-h2 .word,
.vm-section-h2 .word, .vm-hero-logo-big .word {
  display: inline-block;
  overflow: hidden;
}
.vm-fb-h2 .char, .vm-lfb-h2 .char, .vm-split-h2 .char,
.vm-section-h2 .char, .vm-hero-logo-big .char {
  display: inline-block;
}

.vm-cam, .vm-off-card, .vm-rec, .vm-srv {
  will-change: transform, opacity;
}
.vm-fb-bg, .vm-lfb-bg, .vm-split-img-bg, .vm-hero-bg {
  will-change: transform;
}

/* Lenis smooth scroll */
html.lenis,
html.lenis body { height: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .vm-page-loader { display: none !important; }
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════════
   DARK OVERLAY HERO — stile Vienna Mare
   Overlay nero su tutte le hero per leggibilità testo
   ══════════════════════════════════════════════════ */

/* Hero homepage (full screen) */
.vm-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.55) 100%
  ) !important;
}

/* Full-bleed dark sections (.vm-fb) — overlay più carico per testo bianco */
.vm-fb-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.15) 65%,
    rgba(0,0,0,0.55) 100%
  ) !important;
}

/* Variante diagonale (più stile Vienna Mare) */
.vm-fb-overlay-diag {
  background: linear-gradient(
    115deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.20) 65%,
    rgba(0,0,0,0.10) 100%
  ) !important;
}

.vm-fb-overlay-bottom {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.70) 100%
  ) !important;
}

/* Light full-bleed (.vm-lfb) — overlay più carico per testo nettamente leggibile su foto */
.vm-lfb { position: relative; }
.vm-lfb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.vm-lfb-content { position: relative; z-index: 2; }

/* Su .vm-lfb-content forziamo testo bianco quando c'è overlay (foto come bg) */
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-lfb-h2,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-lfb-body,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-eyebrow,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-breadcrumb,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-breadcrumb a {
  color: rgba(255,255,255,.92);
}
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-eyebrow::before {
  background: rgba(255,255,255,.45);
}
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .vm-lfb-body {
  color: rgba(255,255,255,.78);
}
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .btn-pill-soft,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .btn-pill-outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .btn-pill-soft:hover,
.vm-lfb:has(.vm-lfb-bg[style*="url("]) .btn-pill-outline-dark:hover {
  background: #fff; color: var(--ink); border-color: #fff;
}

/* Hero principale (vm-hero) — testo deve restare visibile su foto */
.vm-hero { position: relative; }
.vm-hero-logo-big,
.vm-hero-logo-city {
  color: #fff !important;
  text-shadow: 0 1px 24px rgba(0,0,0,.18);
}
.vm-hero-logo-big .fade {
  color: rgba(255,255,255,.4) !important;
}

/* Single camera hero — overlay stronger from bottom (testo è in basso) */
body.single-camera .vm-fb-overlay-bottom {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.85) 100%
  ) !important;
}

/* ══════════════════════════════════════════════════
   HERO SLIDER — crossfade elegante
   ══════════════════════════════════════════════════ */
.vm-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vm-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale(1.06);
  transition: opacity 1.6s cubic-bezier(.4, 0, .2, 1), transform 8s linear;
}
.vm-hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
  transition: opacity 1.6s cubic-bezier(.4, 0, .2, 1), transform 8s linear;
}

/* Dots hero */
.vm-hero-dots {
  position: absolute;
  bottom: 7rem; /* v5.11 — sopra la sticky bar fixed (~80px) */
  right: 3.5rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.vm-hero-dot {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .35s, width .35s;
}
.vm-hero-dot.active {
  background: rgba(255,255,255,.85);
  width: 36px;
}
.vm-hero-dot:hover { background: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════
   LOGO — bianco su hero, BLUE su scrolled
   Il logo (nuovo_logo_2) è un PNG colorato.
   on-dark → invert a bianco
   scrolled → logo blu originale
   on-dark (hero) → logo bianco
   ══════════════════════════════════════════════════ */
.vm-logo { position: relative; }

/* Entrambe le immagini sempre presenti, si switchano via opacity */
.vm-logo-img {
  display: block;
  height: 50px; /* leggermente più grande, header invariato */
  width: auto;
  transition: opacity .4s ease;
}

/* Bianco: nascosto di default, visibile su dark */
.vm-logo-img--white {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}

/* Blu: visibile di default */
.vm-logo-img--blue {
  opacity: 1;
  height: 50px; /* era 42px */
}

/* Su hero (on-dark): mostra bianco, nascondi blu */
.vm-nav.on-dark .vm-logo-img--blue  { opacity: 0; }
.vm-nav.on-dark .vm-logo-img--white { opacity: 1; }

/* Scrolled: sempre blu */
.vm-nav.scrolled .vm-logo-img--blue  { opacity: 1; }
.vm-nav.scrolled .vm-logo-img--white { opacity: 0; }

.vm-logo:hover .vm-logo-img { opacity: .75; }

/* ══════════════════════════════════════════════════
   BOOKING BAR — semplificata (solo date)
   ══════════════════════════════════════════════════ */
.vm-booking {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 50;
}
.vm-booking-inner {
  display: flex;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.vm-bk-intro {
  display: flex;
  align-items: center;
  padding: 0 2rem 0 1.4rem;
  border-right: 1px solid var(--border);
  min-width: 220px;
}
.vm-bk-eyebrow {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
}
.vm-bk-sep {
  display: flex;
  align-items: center;
  padding: 0 .6rem;
  font-size: .75rem;
  color: var(--ink-lighter);
  font-weight: 300;
  flex-shrink: 0;
}
.vm-bk-field {
  flex: 1;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  min-width: 150px;
}
.vm-bk-field:hover { background: rgba(11,61,98,.03); }
.vm-bk-label {
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: .28rem;
}
.vm-bk-val { font-size: .82rem; font-weight: 300; color: var(--ink); }
.vm-bk-val input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  pointer-events: none; /* click gestito dal wrapper */
}
.vm-bk-btn {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 0 2.4rem;
  white-space: nowrap;
  border: none;
  transition: background .2s;
  cursor: pointer;
  flex-shrink: 0;
}
.vm-bk-btn:hover { background: var(--ink2); }

/* Flatpickr calendar — z-index override */
.flatpickr-calendar {
  z-index: 99999 !important;
  font-family: var(--sans) !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 48px rgba(11,61,98,.18) !important;
  border: 1px solid var(--border) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}
.flatpickr-day.inRange {
  background: rgba(11,61,98,.1) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.flatpickr-day:hover { background: rgba(11,61,98,.08) !important; }

/* Galleria — label su immagine */
.vm-gall-label {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 2;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  opacity: 0;
  transition: opacity .3s;
}
.vm-gall-item:hover .vm-gall-label { opacity: 1; }

/* ══════════════════════════════════════════════════
   RESPONSIVE booking bar
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vm-bk-intro { display: none; }
  .vm-booking-inner { max-width: 100%; }
}
@media (max-width: 768px) {
  .vm-booking-inner { flex-direction: column; }
  .vm-bk-field { border-right: none; border-bottom: 1px solid var(--border); }
  .vm-bk-sep { display: none; }
  .vm-bk-btn { padding: 1rem; width: 100%; text-align: center; }
  .vm-hero-dots { right: 1.5rem; bottom: 6rem; }
}


/* ── NAV LABEL MAIN — maiuscolo ── */
.vm-nav-label-main {
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  font-size: .75rem !important;
}


/* ══════════════════════════════════════════════════
   MR PRENO MODAL — shell pulita, form non toccato
   ══════════════════════════════════════════════════ */

/* Scroll lock */
html.vm-modal-open,
html.vm-modal-open body {
  overflow: hidden !important;
  height: 100vh;
}

/* ══════════════════════════════════════════════════
   MODAL MR. PRENO — solo frame, NO overrides interni
   ══════════════════════════════════════════════════ */
.vm-prenota-modal {
  position: fixed; inset: 0; z-index: 99998;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .38s ease;
}
.vm-prenota-modal.is-open { pointer-events: all; opacity: 1; }

.vm-prenota-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,14,22,.75);
  backdrop-filter: blur(6px);
}
.vm-prenota-modal__panel {
  position: relative; z-index: 2;
  background: var(--cream);
  width: min(820px, 95vw);
  max-height: 92vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.42);
  transform: translateY(24px) scale(.97);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.vm-prenota-modal.is-open .vm-prenota-modal__panel {
  transform: translateY(0) scale(1);
}
/* Header fisso blu */
.vm-prenota-modal__head {
  flex-shrink: 0;
  background: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem 1.3rem;
  border-radius: 16px 16px 0 0;
}
.vm-prenota-modal__title {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: #fff; letter-spacing: -.005em;
}
.vm-prenota-modal__title small {
  display: block; font-family: var(--sans);
  font-size: .55rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .35rem;
}
.vm-prenota-modal__close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.85);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.vm-prenota-modal__close:hover {
  background: rgba(255,255,255,.18); color: #fff;
}
/* Body: scrolla con mouse wheel + touch */
.vm-prenota-modal__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 1.8rem 2rem 2rem;
}
.vm-prenota-modal__body::-webkit-scrollbar { width: 8px; }
.vm-prenota-modal__body::-webkit-scrollbar-thumb { background: rgba(11,61,98,.18); border-radius: 4px; }
.vm-prenota-modal__body::-webkit-scrollbar-track { background: rgba(11,61,98,.04); }
/* v5.13.2 — #mrp_form rimane nascosto nel modal (usiamo form Vienna custom) */
.vm-prenota-modal__body #mrp_form {
  position: absolute; left: -9999px; visibility: hidden; pointer-events: none;
}
@media (max-width: 600px) {
  .vm-prenota-modal__panel {
    width: 100vw; max-height: 96dvh;
    border-radius: 16px 16px 0 0;
    align-self: flex-end;
    transform: translateY(100%) !important;
  }
  .vm-prenota-modal.is-open .vm-prenota-modal__panel {
    transform: translateY(0) !important;
  }
}

/* ══════════════════════════════════════════════════
   FOOTER — stile Vienna Mare, colori Vienna Mare
   ══════════════════════════════════════════════════ */
.vm-footer {
  background: var(--ink);
  padding: 5rem 4rem 0;
  color: rgba(245,243,240,.32);
  font-size: .78rem; font-weight: 300;
}
.vm-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,243,240,.08);
  align-items: start;
}
/* Brand col */
.vm-footer__logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,243,240,.6);
}
.vm-footer__logo span { color: rgba(245,243,240,.18); }
.vm-footer__tagline {
  font-size: .55rem; font-weight: 300; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(245,243,240,.22);
  margin: .3rem 0 1.8rem;
}
.vm-footer__address {
  font-style: normal; line-height: 1.9; margin-bottom: 1.5rem;
  font-size: .75rem; color: rgba(245,243,240,.3);
}
.vm-footer__address a {
  display: block; color: rgba(245,243,240,.35);
  transition: color .2s; text-decoration: none;
}
.vm-footer__address a:hover { color: rgba(245,243,240,.7); }
.vm-footer__social {
  display: flex; gap: 1.4rem; flex-wrap: wrap; list-style: none;
}
.vm-footer__social a {
  font-size: .58rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(245,243,240,.22);
  transition: color .2s; text-decoration: none;
}
.vm-footer__social a:hover { color: rgba(245,243,240,.65); }
/* Nav cols */
.vm-footer__nav-title {
  font-size: .54rem; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(245,243,240,.22);
  margin-bottom: 1.4rem;
}
.vm-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.vm-footer__nav a {
  font-size: .78rem; font-weight: 300; color: rgba(245,243,240,.35);
  text-decoration: none; transition: color .2s;
}
.vm-footer__nav a:hover { color: rgba(245,243,240,.75); }
/* Book col */
.vm-footer__book { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.vm-footer__book-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: rgba(245,243,240,.88);
  border: none; border-radius: 100px;
  padding: .7rem 1.6rem; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.vm-footer__book-btn:hover { background: #fff; }
.vm-footer__book-link {
  font-size: .62rem; font-weight: 300; letter-spacing: .1em;
  color: rgba(245,243,240,.28); text-decoration: none;
  border-bottom: 1px solid rgba(245,243,240,.12);
  padding-bottom: 1px; transition: color .2s, border-color .2s;
}
.vm-footer__book-link:hover { color: rgba(245,243,240,.6); border-color: rgba(245,243,240,.4); }
/* Awards */
.vm-footer__awards {
  display: flex; align-items: center; gap: 2rem;
  padding: 2.2rem 0; border-bottom: 1px solid rgba(245,243,240,.08);
}
.vm-footer__awards-label {
  font-size: .52rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(245,243,240,.22); white-space: nowrap;
}
.vm-footer__awards-img {
  max-height: 54px; width: auto; opacity: .75;
  transition: opacity .25s; object-fit: contain;
}
.vm-footer__awards-img:hover { opacity: 1; }
/* Bottom bar */
.vm-footer__bottom {
  padding: 1.8rem 0 2.2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .6rem; font-weight: 300; color: rgba(245,243,240,.18);
}
.vm-footer__legal { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.vm-footer__legal a { color: rgba(245,243,240,.22); text-decoration: none; transition: color .2s; }
.vm-footer__legal a:hover { color: rgba(245,243,240,.55); }

@media (max-width: 1100px) {
  .vm-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .vm-footer { padding: 4rem 1.5rem 0; }
  .vm-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .vm-footer__awards { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ══════════════════════════════════════════════════
   PAGINA CAMERE — layout identico a Vienna Mare
   ══════════════════════════════════════════════════ */
.vm-camere-page { background: var(--cream); }

.vm-camere-header {
  padding: calc(var(--nav-h) + 4rem) 4rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.vm-camere-header h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--ink); line-height: 1.05;
  margin: .6rem 0 1.2rem;
}
.vm-camere-header h1 span { color: var(--ink-lighter); }
.vm-camere-intro {
  font-size: .82rem; font-weight: 300; color: var(--ink3);
  line-height: 1.8; max-width: 520px;
}

/* Griglia: 2 colonne, padding e gap per respiro */
.vm-camere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  background: var(--cream);
}

.vm-cam-card {
  background: transparent;
  overflow: hidden;
  border: none;
  transition: box-shadow .3s;
}
.vm-cam-card:hover { box-shadow: 0 8px 40px rgba(11,61,98,.18); z-index: 2; position: relative; }
/* Tutti gli stili sotto sono OBSOLETI v3.6 e SUPERATI dalle regole "ARCHIVIO CAMERE — identico Vienna Mare" più sotto.
   Tenuti solo per evitare layout breakage in altre viste; ridotti a no-op su archive camere via reset esplicito. */
.vm-camere-grid .vm-cam-card__img-link,
.vm-camere-grid .vm-cam-card__body,
.vm-camere-grid .vm-cam-card__desc,
.vm-camere-grid .vm-cam-card__nome,
.vm-camere-grid .vm-cam-card__footer,
.vm-camere-grid .vm-cam-card__price,
.vm-camere-grid .vm-cam-card__cta { all: unset; }
.vm-camere-grid .vm-cam-card__specs {
  /* RESET totale del vecchio rule che metteva color blu */
  display: flex !important;
  position: absolute !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 1.1rem 1.8rem !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
}
.vm-camere-grid .vm-cam-card__specs span,
.vm-camere-grid .vm-cam-card__specs em {
  /* Forza colori bianchi per le card camere — sovrascrive il vecchio var(--ink-light) */
  color: inherit !important;
}

/* Responsive */
@media (max-width: 900px) {
  .vm-cam-card--wide { grid-column: span 2; grid-template-columns: 1fr; }
  .vm-cam-card--wide .vm-cam-card__img { min-height: 280px; padding-top: 0; height: 55vw; }
}
@media (max-width: 680px) {
  .vm-camere-header { padding: calc(var(--nav-h) + 2.5rem) 1.5rem 2rem; }
  .vm-camere-grid { grid-template-columns: 1fr; }
  .vm-cam-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .vm-cam-card__body { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   ARCHIVIO CAMERE — identico Vienna Mare room-suite
   ══════════════════════════════════════════════════ */

/* Hero fullscreen */
.vm-camere-hero { position:relative; height:100vh; min-height:500px; overflow:hidden; }
.vm-camere-hero__bg { position:absolute; inset:0; background-color:var(--ink); transition:transform .8s ease; }
.vm-camere-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.45) 0%,rgba(0,0,0,.1) 60%,transparent 100%); }

/* Griglia 2 colonne con respiro — secondo reference utente */
.vm-camere-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  background:var(--cream);
  padding:24px;
}
.vm-camere-grid .vm-cam-card { border-radius: 6px; overflow: hidden; }

/* Card camera — tutta foto, fullbleed */
.vm-cam-card { display:block; position:relative; overflow:hidden; cursor:pointer; text-decoration:none; }
.vm-cam-card__link { display:block; text-decoration:none; }

.vm-cam-card__img {
  position:relative;
  overflow:hidden;
  height:calc(50vw - 2px); /* quadrata-ish, metà larghezza */
  min-height:320px;
  max-height:520px;
  background:var(--ink);
}
@media (min-width:1400px) { .vm-cam-card__img { max-height:600px; } }

.vm-cam-card__photo {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:transform .9s cubic-bezier(.25,.46,.45,.94);
}
.vm-cam-card__photo--ph { background:linear-gradient(145deg,#2a5070 0%,#0b2030 100%); }
.vm-cam-card:hover .vm-cam-card__photo { transform:scale(1.06); }

/* Gradienti overlay */
.vm-cam-card__grad-top {
  position:absolute; inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.3) 0%,rgba(0,0,0,0) 35%);
}
.vm-cam-card__grad-bot {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.75) 0%,rgba(0,0,0,.2) 45%,transparent 100%);
}

/* Nome CENTRATO sulla foto — come Vienna Mare */
.vm-cam-card__name {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-family:var(--serif) !important;
  font-size:clamp(1.6rem,2.5vw,2.4rem) !important;
  font-weight:400 !important;
  color:#fff !important;
  text-align:center !important;
  white-space:nowrap;
  letter-spacing:.02em;
  text-shadow:0 2px 24px rgba(0,0,0,.45);
  pointer-events:none;
  z-index: 3;
}

/* Specs bar in basso — bianche su foto, centrate */
.vm-cam-card__specs {
  position:absolute; bottom:0; left:0; right:0;
  padding:1.1rem 1.8rem;
  display:flex; align-items:center; justify-content: center; gap:2rem;
  border-top:1px solid rgba(255,255,255,.22);
  flex-wrap:wrap;
  z-index: 3;
  /* Gradient scuro dietro per garantire visibilità icone bianche su foto chiare */
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.50) 50%, rgba(0,0,0,.15) 100%);
}
.vm-cam-card__spec {
  display:flex; align-items:center; gap:.65rem; flex-shrink:0;
  color: #fff !important;
}
.vm-cam-card__spec-icon { color:rgba(255,255,255,.85) !important; display:flex; align-items:center; }
.vm-cam-card__spec-icon svg { width:20px; height:20px; }
.vm-cam-card__spec-txt { display:flex; flex-direction:column; gap:1px; }
.vm-cam-card__spec-label {
  font-size:.52rem !important; font-weight:500 !important; letter-spacing:.18em !important;
  text-transform:uppercase !important; color:rgba(255,255,255,.7) !important; line-height:1 !important;
}
.vm-cam-card__spec-val {
  font-size:.78rem !important; font-weight:400 !important;
  color:#fff !important; line-height:1.2 !important;
}
.vm-cam-card__spec-sep { width:1px; height:30px; background:rgba(255,255,255,.28); flex-shrink:0; }
/* SVG inside spec — forza colore bianco */
.vm-cam-card__spec svg { stroke: #fff !important; }

/* Come arrivare */
.vm-come-arrivare {
  display:grid; grid-template-columns:1fr 1fr; min-height:420px;
}
.vm-come-arrivare__txt {
  padding:5rem 3.5rem; background:var(--cream);
  display:flex; flex-direction:column; justify-content:center;
}
.vm-come-arrivare__h2 {
  font-family:var(--serif); font-size:clamp(1.8rem,2.5vw,2.4rem);
  font-weight:400; color:var(--ink); line-height:1.1;
  margin:1rem 0 1.5rem; letter-spacing:-.01em;
}
.vm-come-arrivare__body {
  font-size:.82rem; font-weight:300; color:rgba(11,61,98,.55);
  line-height:1.9; max-width:380px; margin-bottom:1.5rem;
}
.vm-come-arrivare__addr {
  font-style:normal; display:flex; align-items:center; gap:.5rem;
  font-size:.78rem; font-weight:300; color:rgba(11,61,98,.45);
  margin-bottom:1.8rem;
}
.vm-come-arrivare__btn {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.62rem; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ink);
  border:1px solid rgba(11,61,98,.2); border-radius:100px;
  padding:.65rem 1.4rem; text-decoration:none;
  transition:all .2s; width:fit-content;
}
.vm-come-arrivare__btn:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.vm-come-arrivare__map { overflow:hidden; min-height:420px; background:var(--cream2); }
.vm-come-arrivare__map iframe { display:block; width:100%; height:100%; min-height:420px; border:0; }

@media (max-width:900px) {
  .vm-camere-grid { grid-template-columns:1fr; }
  .vm-cam-card__img { height:70vw; max-height:400px; }
  .vm-come-arrivare { grid-template-columns:1fr; }
  .vm-come-arrivare__map { min-height:280px; }
  .vm-come-arrivare__map iframe { min-height:280px; }
}

/* ══════════════════════════════════════════════════
   SINGOLA CAMERA — slider stile Vienna Mare
   ══════════════════════════════════════════════════ */

/* Hero */
.vm-scam-hero { position:relative; height:65vh; min-height:420px; overflow:hidden; }
.vm-scam-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.vm-scam-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.55) 0%,rgba(0,0,0,.08) 100%); }
.vm-scam-hero__nav { position:absolute; bottom:2rem; left:3rem; z-index:2; }
.vm-scam-hero__back {
  font-size:.6rem; font-weight:400; letter-spacing:.18em;
  text-transform:uppercase; color:rgba(255,255,255,.5);
  text-decoration:none; display:flex; align-items:center; gap:.4rem;
}
.vm-scam-hero__back:hover { color:rgba(255,255,255,.85); }

/* Main: testo sx + slider dx — STILE Vienna Mare con padding */
.vm-scam-main {
  display:grid;
  grid-template-columns: 360px 1fr;
  min-height: 580px;
  align-items: stretch;
  background:var(--cream);
  padding: 5rem 4rem 4rem;
  gap: 0;
}
.vm-scam-txt {
  padding: 0 3rem 0 0;
  display:flex; flex-direction:column; justify-content:flex-start;
  background: transparent;
  border-right: none;
}
.vm-scam-txt__inner { flex:1; }
.vm-scam-txt__body {
  font-family: var(--sans);
  font-size: .9rem; font-weight: 400;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.vm-scam-txt__body p { margin-bottom: 1.2rem; }
.vm-scam-txt__controls { display:flex; flex-direction:column; gap:1.4rem; align-items:flex-start; margin-top: 2rem; }
.vm-scam-arrows { display:flex; gap:.8rem; }
.vm-scam-arrow {
  width:54px; height:54px; border-radius:50%;
  border:1px solid rgba(11,61,98,.25); background:transparent;
  color:var(--ink); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.vm-scam-arrow:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.vm-scam-arrow:disabled { opacity:.25; cursor:not-allowed; }
.vm-scam-book {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.65rem; font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; background:transparent; color:var(--ink);
  border:1px solid rgba(11,61,98,.3); border-radius:100px;
  padding:.85rem 1.8rem;
  cursor:pointer; transition:all .2s;
}
.vm-scam-book:hover { background:var(--ink); color:#fff; border-color:var(--ink); }

/* SLIDER — identico Vienna Mare: foto grandi scorrono orizzontalmente */
.vm-scam-slider { position:relative; overflow:hidden; }
.vm-scam-track {
  display:flex; height:100%;
  transition:transform .65s cubic-bezier(.4,0,.2,1);
}
.vm-scam-slide {
  min-width:78%; position:relative; overflow:hidden; cursor:pointer;
  flex-shrink:0;
}
.vm-scam-slide:not(:first-child) { min-width:75%; margin-left:3px; }
.vm-scam-slide__bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.vm-scam-counter {
  position:absolute; bottom:1.2rem; right:1.5rem;
  font-size:.62rem; font-weight:300; color:rgba(255,255,255,.65);
  letter-spacing:.1em;
}

/* Specs + dettagli */
.vm-scam-details { background:var(--white); }
.vm-scam-details__inner { max-width:1100px; margin:0 auto; padding:4rem 3.5rem; display:grid; grid-template-columns:1fr 1fr 1fr; gap:4rem; align-items:start; }
.vm-scam-specs { grid-column:span 2; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); padding-top:2rem; gap:0; }
.vm-scam-spec { padding:1rem 0; border-right:1px solid var(--border); padding-right:1.5rem; padding-left:1.5rem; }
.vm-scam-spec:first-child { padding-left:0; }
.vm-scam-spec__label { font-size:.55rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--ink-light); display:block; margin-bottom:.35rem; }
.vm-scam-spec__val { font-size:.82rem; font-weight:300; color:var(--ink); }
.vm-scam-content { }
.vm-scam-content__body { font-size:.82rem; font-weight:300; line-height:1.9; color:rgba(11,61,98,.6); margin-top:1rem; }
.vm-scam-services {}
.vm-scam-services__list { list-style:none; margin-top:1rem; display:flex; flex-direction:column; gap:.55rem; }
.vm-scam-services__list li { font-size:.78rem; font-weight:300; color:rgba(11,61,98,.55); display:flex; align-items:center; gap:.6rem; }
.vm-scam-services__list li::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--ink-lighter); flex-shrink:0; }
.vm-scam-book-box { background:var(--cream); padding:2rem; border-top:2px solid var(--ink); display:flex; flex-direction:column; gap:1rem; }
.vm-scam-book-price { font-size:.7rem; font-weight:300; color:var(--ink-light); }
.vm-scam-book-price strong { font-family:var(--serif); font-size:2.4rem; font-weight:300; color:var(--ink); }
.vm-scam-book-cta { display:inline-flex; align-items:center; gap:.5rem; font-size:.65rem; font-weight:500; letter-spacing:.16em; text-transform:uppercase; background:var(--ink); color:#fff; border:none; border-radius:100px; padding:.75rem 1.8rem; cursor:pointer; }
.vm-scam-book-tel { font-size:.78rem; font-weight:300; color:rgba(11,61,98,.45); text-decoration:none; }

/* Altre camere */
.vm-scam-altre { padding:4rem 3.5rem; background:var(--cream); }
.vm-scam-altre__h2 { font-family:var(--serif); font-size:2rem; font-weight:400; color:var(--ink); margin:1rem 0 2.5rem; }
.vm-scam-altre__grid { display:grid; grid-template-columns:1fr 1fr; gap:3px; }

@media (max-width:900px) {
  .vm-scam-main { grid-template-columns:1fr; }
  .vm-scam-slider { min-height:60vw; }
  .vm-scam-details__inner { grid-template-columns:1fr; gap:2rem; }
  .vm-scam-specs { grid-column:1; grid-template-columns:1fr 1fr; }
  .vm-scam-altre__grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .vm-scam-hero { height:50vh; }
  .vm-scam-txt { padding:2rem 1.5rem; }
  .vm-scam-details__inner { padding:2.5rem 1.5rem; }
  .vm-scam-altre { padding:2.5rem 1.5rem; }
}

/* ══════════════════════════════════════════════════
   MR. PRENO FORM — override con classi reali del widget
   Classi confermate dall'HTML del widget
   ══════════════════════════════════════════════════ */

/* Reset Bootstrap dentro il modal */
#mrp_form .row { margin:0 !important; }
#mrp_form [class*="col-"] { padding:0 !important; }

/* Form group */
#mrp_form .form-group {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

/* Label */
#mrp_form .input_label {
  display: block !important;
  font-family: var(--sans) !important;
  font-size: .58rem !important;
  font-weight: 500 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: rgba(11,61,98,.45) !important;
  margin-bottom: .35rem !important;
  line-height: 1 !important;
}
#mrp_form .input_label span { font-size: inherit !important; }

/* Input e select */
#mrp_form .form-control {
  font-family: var(--sans) !important;
  font-size: .84rem !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1px solid rgba(11,61,98,.15) !important;
  border-radius: 8px !important;
  padding: .72rem 1rem !important;
  height: auto !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color .2s, box-shadow .2s !important;
  width: 100% !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
#mrp_form .form-control:focus {
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 3px rgba(11,61,98,.08) !important;
}

/* Date inputs — NO padding aggressivo (rompe il native picker) */
#mrp_form input.jquery-datepicker__input,
#mrp_form input[type="date"].form-control {
  padding: .55rem .8rem !important;
  cursor: pointer !important;
  width: 100% !important;
}

/* Periodo alternativo link */
#mrp_form .period_tools_wrapper { padding: .5rem 0 1rem !important; }
#mrp_form .bt_add_period {
  font-family: var(--sans) !important;
  font-size: .68rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  opacity: .55 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .4rem !important;
  transition: opacity .2s !important;
}
#mrp_form .bt_add_period:hover { opacity: 1 !important; }
#mrp_form .bt_remove_period {
  font-family: var(--sans) !important;
  font-size: .65rem !important;
  color: rgba(11,61,98,.4) !important;
  text-decoration: none !important;
}

/* Checkbox inline */
#mrp_form input[type="checkbox"],
#mrp_form input[type="radio"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--ink) !important;
  cursor: pointer !important;
  vertical-align: middle !important;
  margin-right: .5rem !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* Row con 2 colonne: gap orizzontale */
#mrp_form .row.period_wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: .8rem !important;
  margin-bottom: .8rem !important;
}

/* Submit button */
#mrp_form button[type="submit"],
#mrp_form input[type="submit"],
#mrp_form .mrp-btn,
#mrp_form [class*="btn-primary"],
#mrp_form .btn-success {
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: var(--sans) !important;
  font-size: .68rem !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  padding: .9rem 2rem !important;
  cursor: pointer !important;
  transition: background .2s !important;
  width: 100% !important;
  margin-top: 1rem !important;
  display: block !important;
  box-shadow: none !important;
}
#mrp_form button[type="submit"]:hover { background: var(--ink2) !important; }

/* Messaggi */
#mrp_form .alert-danger, #mrp_form .alert-warning { background: rgba(176,57,43,.06) !important; border: 1px solid rgba(176,57,43,.15) !important; color: #8b2020 !important; border-radius: 8px !important; font-size: .78rem !important; padding: .8rem 1rem !important; }
#mrp_form .alert-success { background: rgba(26,122,58,.06) !important; border: 1px solid rgba(26,122,58,.15) !important; color: #0f5c2a !important; border-radius: 8px !important; font-size: .78rem !important; padding: .8rem 1rem !important; }

/* Link interni (privacy, ecc.) */
#mrp_form a { color: var(--ink) !important; }

/* Mobile: riduce padding */
@media (max-width: 600px) {
  #mrp_form .row.period_wrapper { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════
   SINGOLA CAMERA — slider compatto stile Vienna Mare v3.8
   ══════════════════════════════════════════════════ */
.vm-scam-hero { position:relative; height:72vh; min-height:480px; overflow:hidden; }
.vm-scam-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.vm-scam-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.62) 0%,rgba(0,0,0,.08) 60%,transparent 100%); }
.vm-scam-hero__footer { position:absolute; bottom:0; left:0; right:0; padding:2.5rem 3.5rem; z-index:2; }
.vm-scam-back { font-size:.58rem;font-weight:400;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.45);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem;margin-bottom:.8rem; }
.vm-scam-back:hover { color:rgba(255,255,255,.8); }
.vm-scam-title { font-family:var(--serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:400;color:#fff;letter-spacing:-.01em;line-height:1.05;margin-bottom:.5rem; }
.vm-scam-price { font-family:var(--serif);font-size:1.4rem;font-weight:300;color:rgba(255,255,255,.8);margin-bottom:1.2rem; }
.vm-scam-price strong { font-weight:400; }
.vm-scam-hero-cta { display:inline-flex;align-items:center;gap:.5rem;font-family:var(--sans);font-size:.65rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;background:rgba(255,255,255,.15);color:#fff;border:1px solid rgba(255,255,255,.4);border-radius:100px;padding:.65rem 1.5rem;cursor:pointer;transition:all .2s;backdrop-filter:blur(4px); }
.vm-scam-hero-cta:hover { background:rgba(255,255,255,.25);border-color:rgba(255,255,255,.7); }

/* Sezione principale: testo sx + slider dx — STILE Vienna Mare */
.vm-scam-main { display:grid; grid-template-columns: 360px 1fr; min-height: 580px; padding: 5rem 4rem 4rem; background:var(--cream); }
.vm-scam-txt { padding: 0 3rem 0 0; display:flex; flex-direction:column; justify-content:flex-start; border-right:none; }
.vm-scam-excerpt { font-size:.8rem;font-weight:300;color:rgba(11,61,98,.55);line-height:1.85;flex:1; }
.vm-scam-arrows { display:flex;gap:.7rem;margin-top:1.5rem;margin-bottom:1rem; }
.vm-scam-arrow { width:42px;height:42px;border-radius:50%;border:1px solid rgba(11,61,98,.2);background:transparent;color:var(--ink);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s; }
.vm-scam-arrow:hover { background:var(--ink);color:#fff;border-color:var(--ink); }
.vm-scam-arrow:disabled { opacity:.3;cursor:not-allowed; }
.vm-scam-book { display:inline-flex;align-items:center;gap:.5rem;font-family:var(--sans);font-size:.62rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;background:var(--ink);color:#fff;border:none;border-radius:100px;padding:.7rem 1.5rem;cursor:pointer;transition:background .2s;width:fit-content; }
.vm-scam-book:hover { background:var(--ink2); }

/* Slider */
.vm-scam-slider-wrap { overflow:hidden;position:relative; }
.vm-scam-slider { height:100%;overflow:hidden; }
.vm-scam-track { display:flex;height:100%;transition:transform .6s cubic-bezier(.4,0,.2,1); }
.vm-scam-slide { min-width:78%;position:relative;overflow:hidden;flex-shrink:0; }
.vm-scam-slide:not(:first-child) { min-width:75%;margin-left:3px; }
.vm-scam-slide-bg { position:absolute;inset:0;background-size:cover;background-position:center; }
.vm-scam-counter { position:absolute;bottom:1rem;right:1.2rem;font-size:.6rem;font-weight:300;color:rgba(255,255,255,.65);letter-spacing:.1em;z-index:2; }

/* Responsive */
@media (max-width:900px) {
  .vm-scam-main { grid-template-columns:1fr;height:auto; }
  .vm-scam-txt { border-right:none;border-bottom:1px solid var(--border); }
  .vm-scam-slider-wrap { height:55vw;min-height:260px; }
}
@media (max-width:600px) {
  .vm-scam-hero { height:55vh; }
  .vm-scam-hero__footer { padding:2rem 1.5rem; }
}

/* Footer logo: HOTEL VIENNA MARE */
.vm-footer__logo {
  font-family:var(--serif);
  font-size:.95rem;
  font-weight:400;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(245,243,240,.65);
  line-height:1.4;
}
.vm-footer__logo span { color:rgba(245,243,240,.0); /* spazio invisibile */ }

/* ══════════════════════════════════════════════════
   v3.9 — FONT 600 sui titoli
   ══════════════════════════════════════════════════ */
h1, h2, h3,
.vm-h1, .vm-h2, .vm-h3,
.vm-fb-h2, .vm-lfb-h2, .vm-split-h2,
.vm-cam-card__name, .vm-scam-title,
.vm-camere-hero h1, .vm-come-arrivare__h2,
.vm-scam-altre__h2, .vm-dove-trovarci__h2 {
  font-weight: 400 !important;
  letter-spacing: -.005em !important;
}
/* Hero logo: NESSUN override, lascia stile originale di main.css (Cormorant 300/400) */

/* ══════════════════════════════════════════════════
   PAGINA CAMERE — respiro come reference utente
   ══════════════════════════════════════════════════ */
.vm-camere-grid {
  gap: 14px !important;
  background: var(--cream) !important;
  padding: 24px !important;
}
.vm-cam-card__img {
  border-radius: 6px;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════
   DOVE TROVARCI (sotto Altre Camere)
   ══════════════════════════════════════════════════ */
.vm-dove-trovarci {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 400px; background: #fff;
}
.vm-dove-trovarci__txt {
  padding: 5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.vm-dove-trovarci__h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--ink); line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.vm-dove-trovarci__body {
  font-size: .85rem; font-weight: 300;
  color: rgba(11,61,98,.55);
  line-height: 1.9; max-width: 420px; margin-bottom: 1.5rem;
}
.vm-dove-trovarci__addr {
  font-style: normal; display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 400; color: rgba(11,61,98,.5);
  margin-bottom: 1.8rem;
}
.vm-dove-trovarci__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); border: 1px solid rgba(11,61,98,.2); border-radius: 100px;
  padding: .7rem 1.4rem; text-decoration: none;
  transition: all .2s; width: fit-content;
}
.vm-dove-trovarci__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.vm-dove-trovarci__map { overflow: hidden; min-height: 380px; background: var(--cream2); }
.vm-dove-trovarci__map iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
@media (max-width: 900px) {
  .vm-dove-trovarci { grid-template-columns: 1fr; }
  .vm-dove-trovarci__txt { padding: 3rem 1.5rem; }
  .vm-dove-trovarci__map { min-height: 280px; }
}

/* ══════════════════════════════════════════════════
   DRAWER MENU laterale (50% schermo)
   ══════════════════════════════════════════════════ */
.vm-drawer {
  position: fixed; inset: 0; z-index: 9998;
  visibility: hidden; opacity: 0;
  transition: opacity .35s, visibility .35s;
}
.vm-drawer.open { visibility: visible; opacity: 1; }
.vm-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(11,61,98,.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.vm-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50vw; max-width: 720px; min-width: 380px;
  background: rgba(11,61,98,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
  padding: 5rem 3rem 2.5rem;
}
.vm-drawer.open .vm-drawer-panel { transform: translateX(0); }

.vm-drawer-close {
  position: absolute; top: 1.8rem; right: 2rem;
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: .55rem 1rem;
  cursor: pointer; transition: all .2s;
}
.vm-drawer-close:hover { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }

.vm-drawer-content { display: flex; flex-direction: column; gap: 2rem; flex: 1; }
.vm-drawer-eyebrow {
  font-family: var(--sans);
  font-size: .55rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.vm-drawer-nav { display: flex; flex-direction: column; gap: .55rem; }
.vm-drawer-link {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  letter-spacing: -.005em; line-height: 1.2;
  display: flex; align-items: center; gap: 1rem;
  transition: color .2s, transform .2s;
}
.vm-drawer-link:hover { color: #fff; transform: translateX(4px); }
.vm-drawer-num {
  font-family: var(--sans); font-size: .55rem; font-weight: 600;
  letter-spacing: .2em; color: rgba(255,255,255,.28);
  width: 26px; flex-shrink: 0;
}

.vm-weather-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}
.vm-weather-row { display: flex; align-items: center; justify-content: space-between; }
.vm-weather-temp {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 500;
  color: #fff; line-height: 1;
}
.vm-weather-icon { color: rgba(255,255,255,.7); }
.vm-weather-meta {
  display: flex; gap: 1.2rem;
  margin-top: .9rem; padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.vm-weather-meta-item {
  font-size: .65rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: .35rem;
}
.vm-weather-meta-item strong { color: rgba(255,255,255,.95); font-weight: 500; }

.vm-drawer-social { display: flex; gap: .5rem; flex-wrap: wrap; }
.vm-social-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: all .2s;
}
.vm-social-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.vm-social-btn svg { width: 13px; height: 13px; }

.vm-drawer-bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem;
  flex-wrap: wrap;
}
.vm-drawer-info {
  font-style: normal;
  font-size: .7rem; font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}
.vm-drawer-info strong { color: rgba(255,255,255,.85); font-weight: 500; }
.vm-drawer-info a { color: inherit; text-decoration: none; }
.vm-drawer-bottom .btn-pill {
  background: #fff; color: var(--ink); border-color: #fff;
  font-weight: 600;
}

@media (max-width: 700px) {
  .vm-drawer-panel { width: 92vw; max-width: 92vw; min-width: 0; padding: 4.5rem 1.8rem 2rem; }
}

/* ══════════════════════════════════════════════════
   FORM CUSTOM (sostituisce Mr. PRENO)
   ══════════════════════════════════════════════════ */
.vm-form { padding: 0; }
.vm-form-section-title {
  font-family: var(--sans);
  font-size: .55rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(11,61,98,.4);
  margin: 1.4rem 0 .85rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11,61,98,.07);
}
.vm-form-section-title:first-child { padding-top: 0; border-top: none; margin-top: 0; }

.vm-form-row { display: grid; gap: .85rem; margin-bottom: 1rem; }
.vm-form-row-2 { grid-template-columns: 1fr 1fr; }
.vm-form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

.vm-form-field { display: flex; flex-direction: column; }
.vm-form-label {
  font-family: var(--sans);
  font-size: .55rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(11,61,98,.5);
  margin-bottom: .4rem; line-height: 1;
}
.vm-req { color: rgba(176,57,43,.7); margin-left: 2px; }

.vm-form-input, .vm-form-select, .vm-form-date, textarea.vm-form-input {
  width: 100%;
  font-family: var(--sans);
  font-size: .85rem; font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(11,61,98,.15);
  border-radius: 9px;
  padding: .72rem .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
  font-variant-numeric: tabular-nums;
}
.vm-form-input:focus, .vm-form-select:focus, .vm-form-date:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11,61,98,.07);
}
.vm-form-input.vm-error, .vm-form-date.vm-error, .vm-form-select.vm-error {
  border-color: rgba(176,57,43,.6);
  box-shadow: 0 0 0 3px rgba(176,57,43,.07);
}

.vm-form-date {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%230b3d62' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 15px;
  padding-right: 2.4rem;
}
.vm-form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b3d62' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 12px;
  padding-right: 2.2rem;
  cursor: pointer;
}
textarea.vm-form-input { resize: vertical; min-height: 70px; }

/* COUNTER */
.vm-counter {
  display: flex; align-items: center;
  background: #fff;
  border: 1px solid rgba(11,61,98,.15);
  border-radius: 9px;
  height: 44px; padding: 0 .25rem;
}
.vm-counter-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: none;
  font-size: 1rem; font-weight: 300; color: var(--ink);
  cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.vm-counter-btn:hover { background: rgba(11,61,98,.06); }
.vm-counter-val { flex: 1; text-align: center; font-size: .9rem; color: var(--ink); font-variant-numeric: tabular-nums; }

/* SERVIZI cards */
.vm-form-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  margin: .5rem 0 1.2rem;
}
.vm-service-card {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .75rem;
  background: #fff;
  border: 1px solid rgba(11,61,98,.1);
  border-radius: 8px; cursor: pointer;
  font-size: .76rem; font-weight: 400; color: var(--ink);
  transition: all .15s;
}
.vm-service-card:hover { border-color: rgba(11,61,98,.25); }
.vm-service-card input { width: 14px; height: 14px; accent-color: var(--ink); cursor: pointer; flex-shrink: 0; }
.vm-service-card.checked { background: var(--ink); color: #fff; border-color: var(--ink); }

/* PRIVACY */
.vm-form-privacy {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .85rem 1rem;
  background: rgba(11,61,98,.03);
  border-radius: 9px;
  margin: 1rem 0 1.2rem;
}
.vm-form-privacy input { width: 14px; height: 14px; accent-color: var(--ink); margin-top: 2px; flex-shrink: 0; }
.vm-form-privacy label { font-size: .7rem; font-weight: 300; color: rgba(11,61,98,.65); line-height: 1.55; cursor: pointer; }
.vm-form-privacy a { color: var(--ink); text-decoration: underline; }

/* MSG */
.vm-form-msg {
  padding: .8rem 1rem; border-radius: 8px;
  font-size: .78rem; font-weight: 400;
  margin-bottom: 1rem;
}
.vm-form-msg-err { background: rgba(176,57,43,.08); color: #8b2020; border: 1px solid rgba(176,57,43,.2); }
.vm-form-msg-ok  { background: rgba(26,122,58,.08); color: #0f5c2a; border: 1px solid rgba(26,122,58,.2); }
.vm-form-msg-info{ background: rgba(11,61,98,.05); color: var(--ink); border: 1px solid rgba(11,61,98,.15); }

/* SUBMIT */
.vm-form-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  border: none; border-radius: 100px;
  padding: 1rem 2rem; cursor: pointer;
  transition: background .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.vm-form-submit:hover { background: var(--ink2); }

@media (max-width: 600px) {
  .vm-form-row-2, .vm-form-row-3 { grid-template-columns: 1fr; }
  .vm-form-services { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   VIDEO HERO fallback
   ══════════════════════════════════════════════════ */
.vm-hero-video-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: none; z-index: 0;
}

/* ══════════════════════════════════════════════════
   PAGINE GENERICHE (template Vienna Mare-style)
   ══════════════════════════════════════════════════ */
.vm-page-hero {
  position:relative; height:65vh; min-height:440px; overflow:hidden;
}
.vm-page-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.vm-page-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.5) 0%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.25) 100%); }
.vm-page-hero__content {
  position:absolute; bottom:3rem; left:0; right:0;
  padding:0 3.5rem; z-index:2;
}
.vm-page-hero__title {
  font-family:var(--serif);
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:600;
  color:#fff; line-height:1.05;
  letter-spacing:-.012em;
  margin-top:.6rem;
}
.vm-page-content {
  background:var(--cream);
  padding:5rem 3.5rem;
}
.vm-page-content__inner { max-width:780px; margin:0 auto; }
.vm-page-content__body {
  font-size:1rem; font-weight:300;
  color:rgba(11,61,98,.7);
  line-height:1.95;
}
.vm-page-content__body h2,
.vm-page-content__body h3 {
  font-family:var(--serif);
  color:var(--ink); font-weight:600;
  margin:2.5rem 0 1rem;
  letter-spacing:-.012em;
}
.vm-page-content__body h2 { font-size:2rem; }
.vm-page-content__body h3 { font-size:1.5rem; }
.vm-page-content__body p { margin-bottom:1.3rem; }
.vm-page-content__body a { color:var(--ink); border-bottom:1px solid rgba(11,61,98,.3); }
.vm-page-content__body img { width:100%; height:auto; border-radius:8px; margin:2rem 0; }
.vm-page-content__placeholder {
  text-align:center; padding:3rem 1rem;
  background:#fff; border-radius:12px;
  font-size:.85rem; color:rgba(11,61,98,.5);
  border:1px dashed rgba(11,61,98,.15);
}

.vm-page-cta {
  background:var(--ink);
  padding:5rem 3.5rem;
  text-align:center;
}
.vm-page-cta__inner { max-width:680px; margin:0 auto; }
.vm-page-cta .vm-eyebrow { color:rgba(245,243,240,.4); }
.vm-page-cta__h2 {
  font-family:var(--serif);
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:600; color:#fff;
  letter-spacing:-.012em;
  margin:.8rem 0 1.2rem;
}
.vm-page-cta__body {
  font-size:.92rem; font-weight:300;
  color:rgba(245,243,240,.6);
  line-height:1.85; margin-bottom:2rem;
  max-width:540px; margin-left:auto; margin-right:auto;
}
.vm-page-cta .btn-pill-filled-dark {
  background:#fff; color:var(--ink); border:none;
  font-weight:600;
}

@media (max-width:700px) {
  .vm-page-hero { height:55vh; }
  .vm-page-hero__content { padding:0 1.5rem; bottom:2rem; }
  .vm-page-content { padding:3rem 1.5rem; }
  .vm-page-cta { padding:3rem 1.5rem; }
}

/* ══════════════════════════════════════════════════
   ICONE Vienna Mare-STYLE: Omino + Onde mare
   ══════════════════════════════════════════════════ */
.vm-cam-card__spec-icon svg {
  width:24px; height:24px;
}

/* Lang switcher TranslatePress: testo semplice IT / EN */
.vm-lang-simple {
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--sans);
}
.vm-lang-simple a {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(11,61,98,.45);
  text-decoration: none;
  transition: color .2s;
  padding: .4rem .3rem;
}
.vm-lang-simple a:hover,
.vm-lang-simple a.active {
  color: var(--ink);
}
.vm-lang-sep {
  font-size: .62rem;
  color: rgba(11,61,98,.2);
}
/* Hero scuro: lang switcher bianco */
.vm-hero ~ * .vm-lang-simple a,
body.home:not(.scrolled) .vm-lang-simple a { color: rgba(255,255,255,.55); }
body.home:not(.scrolled) .vm-lang-simple a.active,
body.home:not(.scrolled) .vm-lang-simple a:hover { color: #fff; }
body.home:not(.scrolled) .vm-lang-sep { color: rgba(255,255,255,.25); }
/* Vecchio TP wrapper nascosto se ancora presente */
.vm-lang-trp { display: none !important; }

/* ══════════════════════════════════════════════════
   PAGINA GENERICA — stile La Riviera / Vienna Mare
   ══════════════════════════════════════════════════ */
.vm-page-prose {
  background: var(--cream);
  padding: 6rem 3.5rem;
}
.vm-page-prose__inner {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: .95rem; font-weight: 400;
  line-height: 1.85; color: var(--ink);
}
.vm-page-prose__inner h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400; letter-spacing: -.005em;
  color: var(--ink); margin: 3rem 0 1.4rem;
  line-height: 1.15;
}
.vm-page-prose__inner h3 {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 400; color: var(--ink);
  margin: 2.4rem 0 1rem;
}
.vm-page-prose__inner p { margin-bottom: 1.4rem; }
.vm-page-prose__inner ul, .vm-page-prose__inner ol { margin: 1rem 0 1.6rem 1.5rem; }
.vm-page-prose__inner li { margin-bottom: .5rem; }
.vm-page-prose__inner a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color .2s;
}
.vm-page-prose__inner a:hover { border-color: var(--ink); }
.vm-page-prose__inner img {
  max-width: 100%; height: auto;
  margin: 2rem 0; border-radius: 4px;
}
@media (max-width: 720px) {
  .vm-page-prose { padding: 4rem 1.5rem; }
}

/* ══════════════════════════════════════════════════
   FOOTER — contatti con label + P.IVA + CIN
   ══════════════════════════════════════════════════ */
.vm-footer__address {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: .35rem;
  align-items: baseline;
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.vm-footer__contact-label {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,243,240,.45);
}
.vm-footer__address a {
  color: rgba(245,243,240,.85);
  text-decoration: none;
  font-size: .82rem;
}
.vm-footer__address a:hover { color: #fff; }
.vm-footer__address br { display: none; }
.vm-footer__bottom-info {
  display: flex; flex-direction: column; gap: .3rem;
}
.vm-footer__legal-ids {
  font-size: .68rem;
  color: rgba(245,243,240,.45);
  letter-spacing: .04em;
}

/* Telefono visibile in topbar (CTA primaria mobile) */
.vm-topbar-tel {
  display: none;
  font-size: .72rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 1rem;
  align-items: center;
  gap: .35rem;
}
.vm-topbar-tel svg { width: 14px; height: 14px; }
@media (min-width: 901px) {
  .vm-topbar-tel { display: inline-flex; }
}
.vm-nav.on-dark:not(.scrolled) .vm-topbar-tel { color: #fff; }

/* ══════════════════════════════════════════════════
   STICKY BOOKING BAR (WuBook) — glass blur effect
   ══════════════════════════════════════════════════ */
.vm-stickybook {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  /* Glass blur invece di blu pieno */
  background: rgba(11,61,98,.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: #fff;
  z-index: 996;
  box-shadow: 0 -2px 14px rgba(0,0,0,.10);
  font-family: var(--sans);
  border-top: 1px solid rgba(255,255,255,.10);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
/* v5.0: padding-bottom rimosso dal body (causava blocco fantasma sotto footer).
   Ora viene applicato al footer stesso solo quando la sticky bar è visibile.
   Quando la sticky bar si nasconde su footer (IntersectionObserver), nessun gap residuo. */
body { padding-bottom: 0; }
.vm-foot { padding-bottom: 102px; transition: padding-bottom .35s cubic-bezier(.4,0,.2,1); }
.vm-foot.vm-stickybar-hidden { padding-bottom: 50px; }
@media (max-width: 720px) {
  .vm-foot { padding-bottom: 82px; }
  .vm-foot.vm-stickybar-hidden { padding-bottom: 40px; }
}
/* Nascondi sticky bar quando si è in fondo (footer visibile) */
.vm-stickybook.is-near-bottom {
  transform: translateY(110%);
  pointer-events: none;
}
/* Nascondila quando modal è aperto */
html.vm-modal-open .vm-stickybook { transform: translateY(110%); }

.vm-stickybook__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 1.5rem;
}
.vm-stickybook__title-wrap {
  flex-shrink: 0;
}
.vm-stickybook__eyebrow {
  display: block;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1;
}
.vm-stickybook__title-mobile { display: none; }

.vm-stickybook__fields {
  display: flex; gap: 1rem; flex: 1; align-items: center;
}
.vm-stickybook__field {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.vm-stickybook__field label {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.vm-stickybook__field input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .55rem .7rem;
  color: #fff;
  font-size: .82rem;
  font-family: var(--sans);
  width: 100%;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.vm-stickybook__field input:hover,
.vm-stickybook__field input:focus {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.3);
  outline: none;
}

.vm-stickybook__qty {
  display: flex; align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
}
.vm-stickybook__qty input {
  background: transparent; border: none;
  text-align: center; padding: .55rem 0;
  width: 40px;
}
.vmsb-qty-btn, .vmsb-qty-btn-mobile {
  background: transparent; border: none; color: #fff;
  width: 32px; height: 32px;
  font-size: 1.2rem; font-weight: 400;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.vmsb-qty-btn:hover, .vmsb-qty-btn-mobile:hover { background: rgba(255,255,255,.1); }
.vmsb-qty-btn:disabled, .vmsb-qty-btn-mobile:disabled { opacity: .3; cursor: not-allowed; }

.vm-stickybook__cta-wrap {
  flex-shrink: 0;
}
.vm-stickybook__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ink);
  border: none; border-radius: 100px;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .85rem 1.4rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.vm-stickybook__cta:hover { background: var(--cream); transform: translateY(-1px); }
.vm-stickybook__cta:active { transform: translateY(0); }

.vm-stickybook__expand-mobile {
  display: none;
  background: transparent; border: none; color: #fff;
  width: 36px; height: 36px; padding: 0;
  cursor: pointer;
}

/* Flatpickr override per la sticky bar — calendario sopra al bar */
.flatpickr-calendar { z-index: 9999 !important; }

/* ══════ MOBILE ══════ */
@media (max-width: 720px) {
  .vm-stickybook__inner {
    padding: 10px 14px;
    gap: .8rem;
  }
  .vm-stickybook__eyebrow { display: none; }
  .vm-stickybook__title-mobile {
    display: block;
    font-size: .72rem; font-weight: 500;
    color: #fff;
    line-height: 1.2;
  }
  .vm-stickybook__title-mobile + * { display: none; }
  .vm-stickybook__fields {
    flex: 0 0 auto;
    gap: .5rem;
  }
  .vm-stickybook__field--hide-mobile {
    display: none;
  }
  .vm-stickybook__field label { display: none; }
  .vm-stickybook__field input {
    padding: .5rem .6rem;
    font-size: .75rem;
    min-width: 100px;
  }
  .vm-stickybook__cta {
    padding: .7rem 1rem;
    font-size: .62rem;
  }
  .vm-stickybook__cta-text { display: none; }
  .vm-stickybook__cta svg { width: 18px; height: 18px; }
  .vm-stickybook__expand-mobile { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
  .vm-stickybook__inner { padding: 8px 10px; gap: .5rem; }
  .vm-stickybook__title-mobile { font-size: .65rem; }
  .vm-stickybook__field input { min-width: 90px; font-size: .7rem; }
}

/* Overlay mobile fullscreen (espansione) */
.vm-stickybook__mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(11,61,98,.96);
  backdrop-filter: blur(12px);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity .25s;
}
.vm-stickybook__mobile-overlay.open {
  display: flex;
  opacity: 1;
  align-items: flex-end; justify-content: center;
}
.vm-stickybook__mobile-content {
  width: 100%;
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px 16px 0 0;
  padding: 1.5rem 1.5rem 2rem;
  max-height: 90vh; overflow-y: auto;
}
.vm-stickybook__mobile-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.vm-stickybook__mobile-head h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin: 0;
}
.vm-stickybook__mobile-close {
  background: transparent; border: none; color: var(--ink);
  width: 36px; height: 36px;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  padding: 0;
}
.vm-stickybook__mobile-fields {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 1.5rem;
}
.vm-stickybook__mobile-fields .vm-stickybook__field label {
  display: block;
  color: var(--ink-light);
}
.vm-stickybook__mobile-fields .vm-stickybook__field input {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: .9rem;
  padding: .75rem 1rem;
}
.vm-stickybook__mobile-fields .vm-stickybook__qty {
  background: #fff;
  border: 1px solid var(--border);
}
.vm-stickybook__mobile-fields .vmsb-qty-btn-mobile {
  color: var(--ink);
  width: 44px; height: 44px;
  font-size: 1.4rem;
}
.vm-stickybook__cta--mobile {
  width: 100%; justify-content: center;
  background: var(--ink); color: #fff;
  padding: 1rem 1.5rem;
  font-size: .8rem;
}
.vm-stickybook__cta--mobile:hover { background: var(--ink2); }

/* Nascondi vecchia booking section homepage (sostituita dalla sticky bar) */
.vm-booking { display: none; }

/* ══════════════════════════════════════════════════
   MOBILE OPTIMIZATION — single column, layout pulito
   Riferimento: hotelviennamare.it mobile (Camera Family)
   ══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Body più grande overall (Graziella: aumentare font caratteri) */
  body { font-size: 16px; }

  /* ARCHIVIO CAMERE — single column, card stack verticale */
  .vm-camere-grid {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 12px !important;
  }
  .vm-cam-card {
    aspect-ratio: 16/11;
  }
  .vm-cam-card__name {
    font-size: 1.6rem !important;
    white-space: normal !important;
    padding: 0 1rem;
  }
  .vm-cam-card__specs {
    padding: .8rem 1rem !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
  .vm-cam-card__spec-val { font-size: .68rem !important; }

  /* SINGLE CAMERA — Vienna Mare mobile: hero + titolo + Prenota Ora + descrizione + slider + dettagli stack */
  .vm-scam-main {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.25rem !important;
    min-height: auto !important;
    gap: 1.5rem !important;
  }
  .vm-scam-txt {
    padding: 0 !important;
    border-right: none !important;
  }
  .vm-scam-txt__body {
    font-size: .92rem !important;
    margin-bottom: 1.5rem !important;
  }
  .vm-scam-slider-wrap {
    margin: 0 -1.25rem;  /* edge-to-edge */
  }
  .vm-scam-slider {
    min-height: 70vw !important;
    height: 70vw !important;
  }
  .vm-scam-arrows { gap: .5rem; }
  .vm-scam-arrow { width: 44px !important; height: 44px !important; }

  /* Prezzo + Prenota in blocco SEPARATO (sotto dettagli) — Graziella request */
  .vm-scam-details {
    padding: 2rem 1.25rem !important;
  }
  .vm-scam-details > div {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .vm-scam-price-block,
  .vm-scam-sidebar {
    order: 999;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
  }

  /* HOMEPAGE OFFERTE — single column (Graziella: come offerte home) */
  .vm-off-grid,
  .vm-off-list {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .vm-off-card {
    aspect-ratio: 16/11;
  }

  /* HOMEPAGE SPLIT sections — stack invece di affianco */
  .vm-split,
  .vm-fb,
  .vm-lfb {
    grid-template-columns: 1fr !important;
  }
  .vm-split-img,
  .vm-lfb-bg {
    min-height: 60vw !important;
  }
  .vm-split-txt {
    padding: 2rem 1.25rem !important;
  }
  .vm-split-h2,
  .vm-lfb-h2,
  .vm-fb-h2 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }
  .vm-split-body p,
  .vm-lfb-body {
    font-size: .92rem !important;
  }

  /* SEZIONI 5 esperienze, animazione → 1 colonna */
  .vm-srv-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* COME ARRIVARE → stack */
  .vm-come-arrivare {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .vm-come-arrivare__txt,
  .vm-come-arrivare__map {
    padding: 2rem 1.25rem !important;
  }
  .vm-come-arrivare__map {
    min-height: 60vw;
  }

  /* PAGINA GENERICA prose → padding ridotto */
  .vm-page-prose {
    padding: 3rem 1.25rem !important;
  }
  .vm-page-prose__inner {
    font-size: 1rem !important;
  }
  .vm-page-prose__inner h2 {
    font-size: 1.5rem !important;
  }

  /* NAVBAR mobile: nascondi label sub, mantieni solo principale */
  .vm-nav-label-top { display: none !important; }
  .vm-nav-label-main {
    font-size: .8rem !important;
  }

  /* HEADER su mobile: padding ridotto */
  .vm-nav {
    padding: 0 1rem !important;
    height: 64px !important;
  }
  :root { --nav-h: 64px; }

  /* FOOTER — single column stack */
  .vm-footer__inner {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 1.5rem !important;
    gap: 2rem !important;
  }
  .vm-footer__address {
    grid-template-columns: 1fr;
    row-gap: .15rem;
    margin-bottom: 1rem;
  }
  .vm-footer__contact-label {
    margin-top: .8rem;
  }
  .vm-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.5rem !important;
  }
}

/* ══════════════════════════════════════════════════
   RECENSIONI scrollabili orizzontalmente su mobile
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vm-rec-grid,
  .vm-recensioni__grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1rem !important;
    padding: 0 1rem 1rem !important;
    margin: 0 -1rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vm-rec-grid::-webkit-scrollbar,
  .vm-recensioni__grid::-webkit-scrollbar { display: none; }
  .vm-rec,
  .vm-recensioni__card {
    flex: 0 0 85% !important;
    scroll-snap-align: start;
  }
}

/* ══════════════════════════════════════════════════
   BOTTONI — contrast e visibility migliorati
   ══════════════════════════════════════════════════ */
.btn-pill,
.btn-pill-filled,
.btn-pill-filled-dark,
.btn-pill-outline-dark,
.btn-pill-outline-white,
.btn-d-fill,
.btn-d-out,
.btn-w-dark,
.btn-soft {
  font-weight: 500;
  letter-spacing: .14em;
  transition: all .2s;
}
/* Outline scuro: stato hover più visibile */
.btn-pill-outline-dark,
.btn-d-out {
  border: 1.5px solid var(--ink) !important;
  color: var(--ink);
  background: transparent;
}
.btn-pill-outline-dark:hover,
.btn-d-out:hover {
  background: var(--ink);
  color: #fff;
}
/* Filled: shadow per visibilità su foto chiare */
.btn-pill-filled,
.btn-d-fill,
.btn-pill-filled-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 2px 12px rgba(11,61,98,.18);
}
.btn-pill-filled:hover,
.btn-d-fill:hover {
  background: var(--ink2);
  box-shadow: 0 4px 18px rgba(11,61,98,.25);
}

/* Pulsanti su sfondo bianco — bordo visibile sempre */
.vm-scam-book,
.vm-scam-hero-cta {
  border-width: 1.5px !important;
}

/* Mobile: bottoni più grandi e leggibili */
@media (max-width: 720px) {
  .btn-pill, .btn-pill-filled, .btn-pill-outline-dark,
  .btn-d-fill, .btn-d-out, .btn-w-dark {
    padding: .95rem 1.6rem;
    font-size: .72rem;
    min-height: 44px;
  }
}

/* Sottotitolo hero homepage — "Fronte mare nel cuore di Cattolica" */
.vm-hero-logo-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
  margin-top: .6rem;
  text-shadow: 0 1px 16px rgba(0,0,0,.25);
}
@media (max-width: 720px) {
  .vm-hero-logo-sub { font-size: 1rem; margin-top: .4rem; }
}

/* Eyebrow homepage camere — claim corretto Graziella */
.vm-fb-sublabel {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════
   MOBILE — REGOLE FORTI ANTI-CACHE (specificità body)
   Ultimo blocco del file, vince su tutto il resto
   ══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* ARCHIVIO CAMERE: forza 1 colonna con specificità body */
  body .vm-camere-grid,
  body main.vm-camere-grid {
    grid-template-columns: 1fr !important;
    padding: 12px !important;
    gap: 10px !important;
    background: var(--cream) !important;
  }
  body .vm-camere-grid .vm-cam-card {
    aspect-ratio: 16/11 !important;
    height: auto !important;
    min-height: 260px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
  }
  body .vm-camere-grid .vm-cam-card__img {
    height: auto !important;
    padding-top: 0 !important;
    position: absolute !important;
    inset: 0 !important;
  }
  body .vm-camere-grid .vm-cam-card__name {
    font-size: 1.4rem !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0 1.5rem !important;
  }
  body .vm-camere-grid .vm-cam-card__specs {
    padding: .7rem 1rem !important;
    gap: 1rem !important;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent) !important;
  }
  body .vm-camere-grid .vm-cam-card__spec-val { font-size: .68rem !important; }

  /* SINGLE CAMERA - vincono su tutto */
  body .vm-scam-main {
    grid-template-columns: 1fr !important;
    padding: 1.5rem 1rem !important;
    min-height: auto !important;
    gap: 1.5rem !important;
  }
  body .vm-scam-txt {
    padding: 0 !important;
    border-right: none !important;
  }
  body .vm-scam-txt__body { font-size: 1rem !important; }
  body .vm-scam-slider-wrap {
    margin: 0 -1rem !important;
  }
  body .vm-scam-slider {
    min-height: 75vw !important;
    height: 75vw !important;
  }
  body .vm-scam-details > div {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* PAGE GENERICA / RISTORANTE: prose width full + header padding ridotto */
  body .vm-lfb,
  body .vm-lfb-content {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  body .vm-lfb-content {
    padding-top: calc(var(--nav-h) + 2.5rem) !important;
    padding-bottom: 3rem !important;
  }
  body .vm-page-prose {
    padding: 2.5rem 1.25rem !important;
  }
  body .vm-page-prose__inner {
    max-width: 100% !important;
    font-size: 1rem !important;
  }

  /* HOMEPAGE: hero logo size adatto */
  body .vm-hero-logo-big {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
    text-align: center !important;
  }
  body .vm-hero-logo-sub {
    text-align: center !important;
    font-size: 1rem !important;
  }
  body .vm-hero-logo-wrap {
    text-align: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* FB sections: padding mobile */
  body .vm-fb-content,
  body .vm-fb-full .vm-fb-content {
    padding: 4rem 1.5rem !important;
  }
  body .vm-fb-h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }

  /* HEADER navbar: solo logo e CTA su mobile (niente menu items) */
  body .vm-nav-list { display: none !important; }
  body .vm-nav .vm-topbar-tel { display: none !important; }
  body .vm-nav .vm-prenota {
    font-size: .6rem !important;
    padding: .5rem .9rem !important;
  }
  body .vm-nav .vm-prenota svg { display: none !important; }

  /* RECENSIONI scroll orizzontale obbligatorio */
  body .vm-rec-grid,
  body .vm-recensioni__grid {
    display: flex !important;
    overflow-x: auto !important;
    flex-direction: row !important;
    scroll-snap-type: x mandatory !important;
    gap: 1rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  body .vm-rec-grid > *,
  body .vm-recensioni__grid > * {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
  }
}

/* ══════════════════════════════════════════════════
   OVERLAY su tutte le slide/hero per leggibilità testo
   ══════════════════════════════════════════════════ */
.vm-hero::after,
.vm-fb::before,
.vm-lfb::after,
.vm-fb-full::before,
.vm-camere-hero::after,
.vm-scam-hero::after,
.vm-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.vm-hero > *,
.vm-fb-content,
.vm-lfb-content,
.vm-camere-hero__content,
.vm-scam-hero__footer,
.vm-page-hero__content {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════
   BUTTON visibility — outline forti per "Scopri la nostra storia" e simili
   ══════════════════════════════════════════════════ */
.btn-pill,
.btn-pill-outline-white,
.btn-d-out,
.btn-w-dark,
.btn-pill-filled,
.btn-d-fill,
.btn-soft {
  position: relative;
  z-index: 5;
}
/* Outline su sfondo scuro: bianco + ombra leggera */
.vm-fb .btn-pill,
.vm-fb .btn-pill-outline-white,
.vm-hero .btn-pill,
.vm-lfb .btn-pill {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.55) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 500;
}
.vm-fb .btn-pill:hover,
.vm-hero .btn-pill:hover,
.vm-lfb .btn-pill:hover {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: #fff !important;
}
/* Btn .btn-w-dark (bianco con testo scuro) — visibile su foto */
.btn-w-dark {
  background: rgba(255,255,255,.95) !important;
  color: var(--ink) !important;
  border: 1px solid #fff !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn-w-dark:hover {
  background: #fff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.24);
}

/* ══════════════════════════════════════════════════
   FOOTER — riconoscimenti dinamici (multipli loghi)
   ══════════════════════════════════════════════════ */
.vm-footer__awards-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.vm-footer__award-item {
  display: inline-flex;
  align-items: center;
  height: 50px;
  opacity: .7;
  transition: opacity .2s, transform .2s;
  text-decoration: none;
}
.vm-footer__award-item:hover { opacity: 1; transform: translateY(-2px); }
.vm-footer__award-item img {
  max-height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);  /* loghi monocromatici bianchi */
  opacity: .85;
}
.vm-footer__award-item--noLink img { filter: brightness(0) invert(1); }
@media (max-width: 720px) {
  .vm-footer__awards-logos { gap: 1rem; justify-content: center; }
  .vm-footer__award-item { height: 38px; }
}

/* ══════════════════════════════════════════════════
   LOGO HEADER (testo compatto, una sola riga)
   ══════════════════════════════════════════════════ */
.vm-logo.vm-logo-text {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.vm-logo-text__main {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color .35s;
}
/* Su hero scuro (on-dark): bianco */
.vm-nav.on-dark .vm-logo-text__main { color: #fff; }

/* Nascondi vecchi img logo se ancora presenti nel DOM */
.vm-logo-img { display: none !important; }

@media (max-width: 980px) {
  .vm-logo-text__main { font-size: 1rem; }
}
@media (max-width: 720px) {
  .vm-logo-text__main { font-size: .92rem; }
}

/* ══════════════════════════════════════════════════
   SEZIONI INTERNE — fix "Le esperienze / Dalla colazione alle serate"
   layout cards puliti senza confusione numeri
   ══════════════════════════════════════════════════ */
.vm-srv {
  padding: 2.5rem 1.6rem;
  position: relative;
  background: var(--white);
}
.vm-srv-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  opacity: .35;
  margin-bottom: 1.2rem !important;
  line-height: 1 !important;
  letter-spacing: .04em;
}
.vm-srv-nome {
  font-size: .7rem !important;
  font-weight: 500 !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin-bottom: .6rem;
  line-height: 1.3;
}
.vm-srv-desc {
  font-size: .82rem !important;
  font-weight: 400 !important;
  line-height: 1.7;
  color: var(--ink) !important;
  opacity: .75;
}

/* Mobile: SEMPRE 1 COLONNA per .vm-srv-grid */
@media (max-width: 720px) {
  body .vm-srv-grid {
    grid-template-columns: 1fr !important;
    border: none !important;
  }
  body .vm-srv {
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 2rem 1.25rem !important;
  }
}

/* ══════════════════════════════════════════════════
   PAGINE INTERNE — 2-col sections diventano 1-col su mobile
   (Cucina su misura, Come arrivare, ecc.)
   ══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Tutti i div inline-style con grid 1fr 1fr o repeat(2,1fr) → 1 colonna */
  body section > div[style*="grid-template-columns:1fr 1fr"],
  body section > div[style*="grid-template-columns: 1fr 1fr"],
  body section > div[style*="grid-template-columns:repeat(2,1fr)"],
  body section > div[style*="grid-template-columns: repeat(2,1fr)"],
  body section > div[style*="grid-template-columns:repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1.25rem !important;
  }
  /* page-chi-siamo 2-col (Spiaggia + Riviera) */
  body .vm-section > div[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Cards Gluten/Pet su ristorante mobile */
  body .vm-section a[style*="padding:2.5rem"] {
    padding: 1.5rem !important;
  }
}

/* ══════════════════════════════════════════════════
   LISTA SERVIZI IN CAMERA — icone SVG visibili
   ══════════════════════════════════════════════════ */
.vm-srv-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
}
.vm-srv-list__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink);
  opacity: .82;
}
.vm-srv-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(11,61,98,.06);
  border-radius: 50%;
  padding: 6px;
}
.vm-srv-list__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.vm-srv-list__text {
  line-height: 1.4;
}
@media (max-width: 720px) {
  .vm-srv-list { grid-template-columns: 1fr; gap: .85rem; }
  .vm-srv-list__icon { width: 32px; height: 32px; padding: 7px; }
  .vm-srv-list__text { font-size: .9rem; }
}

/* ══════════════════════════════════════════════════
   OVERLAY GARANTITO su tutte le sezioni con testo+foto
   ══════════════════════════════════════════════════ */
/* Hero homepage carousel */
.vm-hero { position: relative; }
.vm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.40) 0%,
    rgba(0,0,0,.20) 35%,
    rgba(0,0,0,.10) 60%,
    rgba(0,0,0,.50) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.vm-hero > * { position: relative; z-index: 2; }
.vm-hero .vm-hero-carousel,
.vm-hero .vm-hero-video,
.vm-hero .vm-hero-bg { z-index: 0; }

/* Camere hero, scam hero, page hero — overlay forte */
.vm-camere-hero,
.vm-scam-hero,
.vm-page-hero { position: relative; }
.vm-camere-hero::after,
.vm-scam-hero::after,
.vm-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.40) 0%,
    rgba(0,0,0,.20) 50%,
    rgba(0,0,0,.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.vm-camere-hero__content,
.vm-scam-hero__footer,
.vm-page-hero__content { position: relative; z-index: 2; }

/* Sezioni .vm-fb (full bleed con testo) — overlay rafforzato */
.vm-fb-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.40) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.60) 100%
  ) !important;
}

/* .vm-split-img-bg — gli split richiedono overlay leggero sulla foto */
.vm-split-img { position: relative; }
.vm-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   HERO PAGINE INTERNE — full screen + padding header
   ══════════════════════════════════════════════════ */

/* Hero camera singola — full screen con title in alto */
.vm-scam-hero {
  height: 100vh !important;
  min-height: 600px !important;
}
.vm-scam-hero__footer {
  position: absolute !important;
  bottom: auto !important;
  top: 0 !important;
  left: 0; right: 0;
  padding: calc(var(--nav-h, 80px) + 60px) 3.5rem 3rem !important;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-start;
}
.vm-scam-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.vm-scam-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
  font-weight: 300;
  font-style: italic;
  margin: 0;
}
.vm-scam-back {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  margin-bottom: .5rem;
}
.vm-scam-back:hover { color: #fff; }

@media (max-width: 720px) {
  .vm-scam-hero { height: 90vh !important; min-height: 500px !important; }
  .vm-scam-hero__footer { padding: calc(var(--nav-h, 80px) + 40px) 1.25rem 2rem !important; }
  .vm-scam-title { font-size: clamp(2rem, 9vw, 3rem); }
}

/* Hero archivio camere — full screen */
.vm-camere-hero {
  min-height: 75vh;
}
.vm-camere-hero__content {
  padding-top: calc(var(--nav-h, 80px) + 60px) !important;
}

/* Hero pagine generiche (.vm-lfb) — full screen sempre */
.vm-lfb {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.vm-lfb-content {
  padding: calc(var(--nav-h, 80px) + 60px) 4rem 5rem !important;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 720px) {
  .vm-lfb { min-height: 80vh; }
  .vm-lfb-content { padding: calc(var(--nav-h, 80px) + 40px) 1.5rem 3rem !important; }
}

/* Hero ristorante/eventi (vm-fb-full) — full screen */
.vm-fb-full {
  min-height: 92vh;
}
.vm-fb-full .vm-fb-content {
  padding: calc(var(--nav-h, 80px) + 60px) 4rem 5rem !important;
}
@media (max-width: 720px) {
  .vm-fb-full { min-height: 80vh; }
  .vm-fb-full .vm-fb-content { padding: calc(var(--nav-h, 80px) + 40px) 1.5rem 3rem !important; }
}

/* Hero page-hero (single-offerta, etc.) */
.vm-page-hero {
  min-height: 75vh !important;
}
.vm-page-hero__content {
  padding-top: calc(var(--nav-h, 80px) + 60px) !important;
}

/* ══════════════════════════════════════════════════
   PAGE PROSE — contenuto editor pagine interne (WP editor)
   ══════════════════════════════════════════════════ */
.vm-page-prose {
  padding: 6rem 2rem;
  background: var(--white);
}
.vm-page-prose__inner {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}
.vm-page-prose__inner h2,
.vm-page-prose__inner h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin: 2.5rem 0 1.2rem;
}
.vm-page-prose__inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.vm-page-prose__inner h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.vm-page-prose__inner p { margin-bottom: 1.5rem; color: var(--ink-mid); }
.vm-page-prose__inner p:last-child { margin-bottom: 0; }
.vm-page-prose__inner a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.vm-page-prose__inner ul,
.vm-page-prose__inner ol { margin: 0 0 1.5rem 1.5rem; padding: 0; }
.vm-page-prose__inner li { margin-bottom: .5rem; color: var(--ink-mid); }
.vm-page-prose__inner img { max-width: 100%; height: auto; border-radius: 4px; margin: 2rem 0; }
.vm-page-prose__inner blockquote {
  border-left: 2px solid var(--ink);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--ink);
}
@media (max-width: 720px) {
  .vm-page-prose { padding: 3.5rem 1.25rem; }
  .vm-page-prose__inner { font-size: 1rem; }
}

/* PAGE CTA finale */
.vm-page-cta {
  background: var(--ink);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}
.vm-page-cta__inner { max-width: 720px; margin: 0 auto; }
.vm-page-cta__inner .vm-eyebrow {
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.vm-page-cta__inner .vm-eyebrow::before { background: rgba(255,255,255,.7); }
.vm-page-cta__h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
.vm-page-cta__body {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: .85;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.vm-page-cta .btn-pill-filled-dark {
  background: #fff;
  color: var(--ink);
  border: none;
  font-weight: 500;
}
.vm-page-cta .btn-pill-filled-dark:hover {
  background: rgba(255,255,255,.92);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
@media (max-width: 720px) {
  .vm-page-cta { padding: 4rem 1.25rem; }
}

/* ══════════════════════════════════════════════════
   SEZIONE 5 CARDS RISTORANTE — "01-05" più visibili
   ══════════════════════════════════════════════════ */
.vm-srv-num {
  display: inline-block !important;
  font-family: var(--serif) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  opacity: 0.55 !important;
  margin-bottom: 1.4rem !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
}

/* ══════════════════════════════════════════════════
   NAV LAYOUT — riduzione padding per menu su 7 voci
   ══════════════════════════════════════════════════ */
.vm-nav { padding: 0 1.8rem !important; }
.vm-nav-list { gap: 0 !important; }
.vm-nav-link {
  padding: 0 .7rem !important;
  font-size: .58rem !important;
  letter-spacing: .14em !important;
}
.vm-nav-link__main { font-size: .68rem !important; }
.vm-topbar-tel {
  font-size: .72rem !important;
  padding: 0 .8rem !important;
}
.vm-prenota {
  padding: .55rem 1.1rem !important;
  font-size: .58rem !important;
  letter-spacing: .14em !important;
}
@media (max-width: 1280px) {
  .vm-nav-link { padding: 0 .55rem !important; font-size: .54rem !important; }
  .vm-nav-link__main { font-size: .62rem !important; }
  .vm-topbar-tel { display: none !important; }
}
@media (max-width: 1100px) {
  .vm-nav-list { display: none !important; }
  .vm-burger { display: flex !important; }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE COMPREHENSIVE FIX — 100% single column su tutti i layout
   Regole con specificità body + !important per vincere su tutto
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* SPLIT (homepage sections + altre) → 1 colonna */
  body .vm-split,
  body div.vm-split,
  body section.vm-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  body .vm-split.rev { direction: ltr !important; }
  body .vm-split-img {
    min-height: 60vw !important;
    max-height: 400px !important;
    height: 60vw !important;
  }
  body .vm-split-txt {
    padding: 3rem 1.25rem !important;
    text-align: left !important;
  }
  body .vm-split-h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    margin-bottom: 1.25rem !important;
  }
  body .vm-split-body { font-size: 1rem !important; line-height: 1.7 !important; }

  /* DIVS INLINE-STYLE con 2 colonne (page-contatti, page-chi-siamo, ecc.) */
  body section > div[style*="grid-template-columns:1fr 1.3fr"],
  body section > div[style*="grid-template-columns: 1fr 1.3fr"],
  body section > div[style*="grid-template-columns:1fr 1fr"],
  body section > div[style*="grid-template-columns: 1fr 1fr"],
  body section > div[style*="grid-template-columns:repeat(2,1fr)"],
  body section > div[style*="grid-template-columns: repeat(2,1fr)"],
  body section > div[style*="grid-template-columns:repeat(2, 1fr)"],
  body section > div[style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  body section > div[style*="grid-template-columns"] > * {
    padding: 2.5rem 1.25rem !important;
  }
  /* Iframe map mobile: rendi statico */
  body iframe[src*="google.com/maps"] {
    position: relative !important;
    min-height: 320px !important;
    inset: auto !important;
  }
  body section > div[style*="grid-template-columns"] > div[style*="position:relative"][style*="background:var(--cream-dark)"] {
    min-height: 320px !important;
    padding: 0 !important;
  }
}

@media (max-width: 720px) {

  /* ═══ HOMEPAGE ═══ */
  /* Hero homepage: testo + carousel */
  body .vm-hero-logo-wrap {
    padding: 1.5rem !important;
    text-align: center !important;
  }
  body .vm-hero-logo-big {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    text-align: center !important;
  }

  /* SEZIONI HOMEPAGE */
  body .vm-fb-content,
  body .vm-fb-full .vm-fb-content,
  body .vm-lfb-content {
    padding: 5rem 1.25rem 3rem !important;
  }
  body .vm-fb-h2,
  body .vm-lfb-h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem) !important;
    line-height: 1.12 !important;
  }
  body .vm-fb-body,
  body .vm-lfb-body { font-size: .95rem !important; line-height: 1.7 !important; }

  /* SECTION head (eyebrow + h2 + h2-right) */
  body .vm-section-head {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
    padding: 0 1.25rem !important;
  }
  body .vm-section,
  body section.vm-section { padding: 4rem 0 !important; }
  body .vm-section-h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    line-height: 1.15 !important;
  }

  /* ═══ RECENSIONI (testimonianze) — scroll orizzontale ═══ */
  body .vm-rec-grid,
  body .vm-recensioni__grid,
  body .vm-s .vm-rec-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1rem !important;
    padding: 0 1.25rem 1.5rem !important;
    grid-template-columns: none !important;
  }
  body .vm-rec-grid > *,
  body .vm-recensioni__grid > * {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    border-left: none !important;
    padding: 1rem !important;
    min-width: 0 !important;
  }
  body .vm-rec-grid::-webkit-scrollbar,
  body .vm-recensioni__grid::-webkit-scrollbar { height: 0 !important; }
  body .vm-rec,
  body .vm-recensione {
    border: 1px solid var(--border) !important;
    padding: 1.5rem !important;
    border-radius: 4px !important;
    background: var(--white) !important;
  }
  body .vm-rec p,
  body .vm-rec__text,
  body .vm-recensione p {
    font-size: .9rem !important;
    line-height: 1.65 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  /* ═══ FOOTER mobile ═══ */
  body .vm-footer { padding: 3rem 1.25rem 100px !important; }
  body .vm-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  body .vm-footer__brand,
  body .vm-footer__nav,
  body .vm-footer__book { text-align: left !important; }
  body .vm-footer__logo { font-size: 1.5rem !important; }
  body .vm-footer__awards-logos { justify-content: flex-start !important; flex-wrap: wrap !important; gap: 1rem !important; }
  body .vm-footer__award-item { height: 36px !important; }
  body .vm-footer__bottom { flex-direction: column !important; gap: 1rem !important; align-items: flex-start !important; }

  /* ═══ HEADER: hamburger sempre + nav nascosto ═══ */
  body .vm-nav-list { display: none !important; }
  body .vm-burger,
  body .vm-nav-toggle { display: flex !important; }
  body .vm-topbar-tel { display: none !important; }
  body .vm-prenota {
    padding: .5rem .9rem !important;
    font-size: .55rem !important;
  }
  body .vm-prenota svg { display: none !important; }

  /* ═══ TIPOGRAFIA mobile generale ═══ */
  body h1 { font-size: clamp(1.9rem, 8vw, 2.8rem) !important; }
  body h2 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  body h3 { font-size: clamp(1.2rem, 5vw, 1.5rem) !important; }
  body p { font-size: 1rem !important; line-height: 1.7 !important; }

  /* BOOKING BAR mobile: meno alta */
  body .vm-stickybook {
    font-size: .7rem !important;
  }
  body .vm-stickybook .vm-stickybook__inner {
    flex-direction: row !important;
    padding: .55rem .75rem !important;
    gap: .5rem !important;
  }
  body .vm-stickybook .vm-stickybook__label { display: none !important; }
  body .vm-stickybook input[type="text"] { font-size: .75rem !important; padding: .35rem !important; }

  /* SECTION GRIDS: forzo 1 col */
  body section > div[style*="display:grid"],
  body section > div[style*="display: grid"],
  body div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
  body div[style*="display:grid"][style*="grid-template-columns:repeat(2"],
  body div[style*="display:grid"][style*="grid-template-columns:repeat(3"],
  body div[style*="display:grid"][style*="grid-template-columns:repeat(4"],
  body div[style*="display:grid"][style*="grid-template-columns:repeat(5"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* CTA finale pagine */
  body .vm-page-cta { padding: 3rem 1.25rem !important; }
  body .vm-page-cta__h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  body .vm-page-prose { padding: 3rem 1.25rem !important; }
  body .vm-page-prose__inner { font-size: 1rem !important; }
}

/* Loader text logo */
.vm-page-loader-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  animation: vm-loader-pulse 1.4s ease-in-out infinite;
}
@keyframes vm-loader-pulse {
  0%, 100% { opacity: .5; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(-2px); }
}

/* ════════════════════════════════════════════════════════════════
   v5.0 — NAV TUNING: meno bold, più elegante
   ════════════════════════════════════════════════════════════════ */
.vm-nav .vm-nav-label-top,
.vm-nav .vm-nav-label-main,
.vm-nav-dropdown a,
.vm-stickybook__eyebrow {
  font-weight: 400 !important;
}
.vm-nav .vm-nav-label-main {
  font-weight: 300 !important;
  letter-spacing: .03em;
}

/* ════════════════════════════════════════════════════════════════
   v5.0 — FORM MR.PRENO: servizi fixed (5 checkbox classici)
   ════════════════════════════════════════════════════════════════ */
.vm-form-services-fixed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .8rem;
}
.vm-srv-check {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem;
  background: rgba(11,61,98,.04);
  border: 1px solid rgba(11,61,98,.15);
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--ink);
}
.vm-srv-check:hover { background: rgba(11,61,98,.08); border-color: rgba(11,61,98,.3); }
.vm-srv-check input[type="checkbox"] {
  accent-color: var(--ink);
  width: 16px; height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.vm-srv-check input[type="checkbox"]:checked + span { font-weight: 500; color: var(--ink); }
.vm-srv-check:has(input:checked) {
  background: rgba(11,61,98,.10);
  border-color: var(--ink);
}

/* Form row 3 column */
.vm-form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .vm-form-row-3 { grid-template-columns: 1fr; }
  .vm-form-services-fixed { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   v5.0 — WUBOOK/ZAK BOOKING POPUP — premium, coerente col sito
   ═══════════════════════════════════════════════════════════════ */
.vm-wubook-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.4,0,.2,1), visibility .35s;
}
.vm-wubook-modal[aria-hidden="false"],
.vm-wubook-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop — blur premium del background pagina */
.vm-wubook-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 98, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  cursor: pointer;
}

/* Panel — centrato, white, large radius, ombra morbida */
.vm-wubook-modal__panel {
  position: relative;
  margin: 5vh auto;
  max-width: 720px;
  width: calc(100% - 2.5rem);
  max-height: 90vh;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -15px rgba(11, 61, 98, 0.35),
    0 18px 32px -12px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.vm-wubook-modal.is-open .vm-wubook-modal__panel {
  transform: translateY(0) scale(1);
}

/* Close button */
.vm-wubook-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.vm-wubook-modal__close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(90deg);
}

/* Head */
.vm-wubook-modal__head {
  padding: 2.2rem 2.2rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}
.vm-wubook-modal__head small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-light);
  margin-bottom: .5rem;
  font-weight: 400;
}
.vm-wubook-modal__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.vm-wubook-modal__subtitle {
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink);
  opacity: .65;
  margin: .6rem 0 0;
  line-height: 1.5;
}

/* Body — contiene il widget Zak */
.vm-wubook-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2.2rem 2rem;
  -webkit-overflow-scrolling: touch;
}

/* Widget host — placeholder per script Zak */
.vm-wubook-widget-host {
  min-height: 360px;
  position: relative;
}
.vm-wubook-widget-host[data-loaded="true"] .vm-wubook-loading {
  display: none;
}

/* Loading spinner */
.vm-wubook-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ink);
  opacity: .7;
}
.vm-wubook-loading p {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0;
}
.vm-wubook-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: vm-wubook-spin .8s linear infinite;
}
@keyframes vm-wubook-spin { to { transform: rotate(360deg); } }

/* Override stili widget Zak SOLO al container — non al contenuto interno */
.vm-wubook-widget-host > div,
.vm-wubook-widget-host > iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Fallback link */
.vm-wubook-modal__fallback {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.vm-wubook-fallback-link {
  font-family: var(--sans);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink);
  opacity: .65;
  text-decoration: none;
  transition: opacity .2s;
}
.vm-wubook-fallback-link:hover { opacity: 1; text-decoration: underline; }

/* Body scroll lock quando modal aperto */
html.vm-wubook-open,
body.vm-wubook-open {
  overflow: hidden !important;
}

/* Sticky bar nascosta quando popup aperto */
html.vm-wubook-open .vm-stickybook {
  transform: translateY(110%) !important;
  pointer-events: none;
}

/* ── MOBILE: quasi fullscreen ── */
@media (max-width: 720px) {
  .vm-wubook-modal__panel {
    margin: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }
  .vm-wubook-modal__head {
    padding: 1.5rem 1.3rem .9rem;
  }
  .vm-wubook-modal__body {
    padding: 1rem 1.3rem 5rem;
  }
  .vm-wubook-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
  .vm-wubook-modal__title {
    font-size: 1.4rem;
  }
  .vm-wubook-modal__subtitle {
    font-size: .85rem;
  }
}


/* ═══ v5.2 FIX: vm-section padding ═══ */
.vm-section { padding: var(--section-pad); }
.vm-section.vm-section-bg-white { background: var(--white); }
.vm-section.vm-section-bg-cream { background: var(--cream); }
.vm-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }

/* ═══ v5.2 FIX: Recensioni homepage — griglia desktop, scroll mobile ═══ */
.vm-reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.vm-reviews-grid > div { background: var(--white); padding: 2rem 1.8rem; }
@media (max-width: 900px) {
  .vm-reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 0 !important;
    background: var(--border) !important;
    padding: 0 !important;
  }
  .vm-reviews-grid > div {
    flex: 0 0 80vw !important;
    scroll-snap-align: start !important;
    min-width: 0 !important;
  }
  .vm-reviews-grid::-webkit-scrollbar { height: 0 !important; }
}
@media (max-width: 600px) {
  .vm-reviews-grid > div { flex: 0 0 85vw !important; }
}

/* ═══ v5.2 FIX: mobile columns stack ═══ */
@media (max-width: 768px) {
  .vm-split { flex-direction: column !important; }
  .vm-split.rev { flex-direction: column !important; }
  .vm-split-img, .vm-split-txt { width: 100% !important; min-width: 0 !important; }
  .vm-srv-grid { grid-template-columns: 1fr !important; }
  .vm-off-grid { grid-template-columns: 1fr !important; }
  .vm-gall-grid { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="grid-template-columns:repeat(5,1fr)"],
  div[style*="grid-template-columns: repeat(5,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr;"],
  div[style*="grid-template-columns: 1fr 1fr;"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="padding:5rem 4rem"] { padding: 3rem 1.5rem !important; }
  div[style*="padding:5rem 3.5rem"] { padding: 3rem 1.5rem !important; }
  body section.vm-section,
  body .vm-section { padding: 4rem 1.5rem !important; }
}
@media (max-width: 480px) {
  .vm-gall-grid { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ═══ v5.2 FIX: WuBook iframe nel popup ═══ */
.vm-wubook-widget-host iframe { border: none; width: 100%; height: 100%; display: block; flex: 1; min-height: 0; }
.vm-wubook-widget-host[data-loaded="true"] .vm-wubook-loading { display: none; }

/* v5.3 — Pannello altezza fissa, body NO scroll, iframe fills */
.vm-wubook-modal__panel {
  max-width: 900px !important;
  height: 85vh !important;
  max-height: 85vh !important;
  display: flex !important;
  flex-direction: column !important;
}
.vm-wubook-modal__head { flex: 0 0 auto; }
.vm-wubook-modal__body {
  flex: 1 1 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
}
.vm-wubook-widget-host {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}
.vm-wubook-modal__fallback {
  flex: 0 0 auto;
  padding: .8rem 1.5rem;
  margin: 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 720px) {
  .vm-wubook-modal__panel { height: 100vh !important; max-height: 100vh !important; margin: 0 !important; border-radius: 0 !important; width: 100% !important; }
}

/* ════════════════════════════════════════════════════════════════
   v5.3 — FIX T1/T2/T3/T4/T5
   ════════════════════════════════════════════════════════════════ */

/* T1 — iframe WuBook: sblocca Lenis lock + bonifica */
.vm-wubook-modal iframe,
.vm-wubook-widget-host iframe,
html.lenis.lenis-smooth .vm-wubook-widget-host iframe { pointer-events: auto !important; }

/* T2/T3 — flatpickr-calendar deve stare SOPRA il modal Mr.PRENO (99998) */
.flatpickr-calendar { z-index: 100050 !important; }

/* T4 — Bottoni "Richiedi preventivo" sotto offerte: stile premium blu pieno + hover */
.vm-off-cta .vm-split-link,
.vm-off-card .vm-split-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: .7rem 1.4rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  font-family: var(--sans);
}
.vm-off-cta .vm-split-link:hover,
.vm-off-card .vm-split-link:hover {
  background: var(--ink2, #0a4f7c);
  border-color: var(--ink2, #0a4f7c);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(11,61,98,.4);
}
.vm-off-cta .vm-split-link.feat,
.vm-off-card .vm-split-link.feat {
  background: var(--ink);
  color: #fff;
}

/* T5 — Link IT/EN: forza blu fuori dall'hero scuro, anche su sfondo panna */
.vm-nav:not(.on-dark) .vm-lang-simple a,
.vm-nav.scrolled .vm-lang-simple a {
  color: rgba(11,61,98,.5) !important;
}
.vm-nav:not(.on-dark) .vm-lang-simple a.active,
.vm-nav:not(.on-dark) .vm-lang-simple a:hover,
.vm-nav.scrolled .vm-lang-simple a.active,
.vm-nav.scrolled .vm-lang-simple a:hover {
  color: var(--ink) !important;
}
.vm-nav:not(.on-dark) .vm-lang-sep,
.vm-nav.scrolled .vm-lang-sep {
  color: rgba(11,61,98,.25) !important;
}

/* T8 — Flatpickr calendar header fix (font/letter-spacing reset) */
.flatpickr-calendar,
.flatpickr-calendar * {
  font-family: var(--sans) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.flatpickr-months {
  position: relative;
  padding: .6rem 0 .4rem;
}
.flatpickr-month {
  height: auto !important;
  line-height: 1.4 !important;
  overflow: visible !important;
}
.flatpickr-current-month {
  font-size: .95rem !important;
  font-weight: 500 !important;
  padding: .4rem 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  color: var(--ink) !important;
}
.flatpickr-current-month .cur-month {
  font-weight: 500 !important;
  margin: 0 !important;
}
.flatpickr-current-month .numInputWrapper {
  width: auto !important;
  min-width: 56px;
}
.flatpickr-current-month input.cur-year {
  font-size: .95rem !important;
  font-weight: 500 !important;
  padding: 0 !important;
  color: var(--ink) !important;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  padding: .5rem !important;
  height: auto !important;
  top: 4px !important;
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg { fill: var(--ink) !important; width: 12px; height: 12px; }
.flatpickr-weekday {
  font-size: .65rem !important;
  font-weight: 500 !important;
  color: var(--ink-light, rgba(11,61,98,.55)) !important;
}
.flatpickr-day { font-size: .82rem !important; font-weight: 400 !important; }

/* T9 — Flatpickr header mese/anno: reset position + altezza */
.flatpickr-months { padding: 0 !important; min-height: 44px; }
.flatpickr-month {
  height: auto !important;
  min-height: 44px !important;
  line-height: 1.4 !important;
  overflow: visible !important;
  background: transparent !important;
  color: var(--ink) !important;
  position: relative !important;
}
.flatpickr-current-month {
  position: static !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  height: 44px !important;
  padding: .6rem 2.6rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .4rem !important;
  font-size: .95rem !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
}
.flatpickr-current-month .cur-month {
  display: inline-block !important;
  visibility: visible !important;
  font-weight: 500 !important;
  font-size: .95rem !important;
  margin: 0 !important;
  color: var(--ink) !important;
}
.flatpickr-current-month .numInputWrapper {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  min-width: 56px !important;
  height: auto !important;
}
.flatpickr-current-month input.cur-year {
  display: inline-block !important;
  visibility: visible !important;
  font-size: .95rem !important;
  font-weight: 500 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  border: none !important;
  width: 4ch !important;
  text-align: center;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  position: absolute !important;
  top: 0 !important;
  height: 44px !important;
  width: 38px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2;
}
.flatpickr-prev-month { left: 0 !important; }
.flatpickr-next-month { right: 0 !important; }

/* ════════════════════════════════════════════════════════════════
   v5.6 — T10: Mobile overflow root fix
   ════════════════════════════════════════════════════════════════ */

/* html overflow-x: mancava (solo body lo aveva, non basta su iOS Safari) */
html { overflow-x: hidden !important; }
html, body { max-width: 100vw !important; }

@media (max-width: 720px) {
  /* T10 + T11 — Sticky bar: rimuovo fields (4 input × 100px > viewport),
     mantengo solo titolo + CTA + expand chevron full-width */
  .vm-stickybook__inner {
    padding: 12px 16px !important;
    gap: .6rem !important;
    justify-content: space-between !important;
    max-width: 100vw !important;
  }
  .vm-stickybook__fields { display: none !important; }
  .vm-stickybook__title-wrap { flex: 1 1 auto; min-width: 0; }
  .vm-stickybook__cta-wrap { flex: 0 0 auto; }
  .vm-stickybook__cta { padding: .7rem 1.2rem !important; }

  /* T10 + T13 — Inline grid repeat(5,1fr) (pagina ristorante esperienze) → 1 col */
  div[style*="grid-template-columns:repeat(5"],
  div[style*="grid-template-columns: repeat(5"],
  .vm-srv-grid[style*="repeat(5"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* T10 — Padding sezioni interne 5rem×4rem → mobile sicuro */
  div[style*="padding:5rem 4rem"],
  div[style*="padding: 5rem 4rem"],
  div[style*="padding:5rem 3.5rem"],
  div[style*="padding: 5rem 3.5rem"] {
    padding: 2.5rem 1.2rem !important;
  }

  /* T10 — safety: tutto box-sizing border-box e nessun min-width oversize */
  body img, body video, body iframe { max-width: 100% !important; }
}

/* ════════════════════════════════════════════════════════════════
   v5.7 — STEP 2: T10b mobile overflow residuo (offerte)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Forza min-width:0 sulla colonna grid (default grid è auto) */
  .vm-off-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1px !important;
  }
  .vm-off-card {
    padding: 1.8rem 1.2rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .vm-off-card * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
  }
  .vm-off-cta .btn-pill,
  .vm-off-cta .btn-pill.btn-d-fill {
    white-space: normal !important;
    max-width: 100% !important;
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

/* STEP 3 — T19: Hero home testo mobile più piccolo + più in basso */
@media (max-width: 720px) {
  .vm-hero-logo-wrap {
    padding: calc(var(--nav-h) + 6rem) 1.5rem 0 !important;
  }
  .vm-hero-logo-big {
    font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }
  .vm-hero-logo-sub {
    font-size: .82rem !important;
    margin-top: 1rem !important;
  }
}
@media (max-width: 480px) {
  .vm-hero-logo-big { font-size: 2rem !important; }
}

/* STEP 4 — T11: Sticky bar mobile full-width (CTA grande, no titolo lasciato a metà) */
@media (max-width: 720px) {
  .vm-stickybook__inner {
    padding: 10px 14px !important;
    gap: .5rem !important;
    flex-wrap: nowrap !important;
  }
  .vm-stickybook__title-wrap {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  .vm-stickybook__cta-wrap {
    flex: 0 0 auto !important;
  }
  .vm-stickybook__cta {
    padding: .85rem 1.6rem !important;
    font-size: .68rem !important;
    letter-spacing: .12em !important;
    border-radius: 100px !important;
  }
  .vm-stickybook__cta-text {
    display: inline-block !important;
    margin-right: .5rem !important;
  }
  .vm-stickybook__cta svg { width: 14px; height: 14px; }
  .vm-stickybook__expand-mobile {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   STEP 6 — T20: Camere mobile non tagliate
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Card un po' più alta per dare respiro alle specs */
  .vm-cam-card__img {
    height: 75vw !important;
    min-height: 380px !important;
    max-height: 480px !important;
  }
  /* Specs compatte single-row, no wrap, padding ridotto */
  .vm-camere-grid .vm-cam-card__specs,
  .vm-cam-card__specs {
    padding: .9rem 1rem !important;
    gap: .8rem !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }
  .vm-cam-card__spec {
    gap: .4rem !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }
  .vm-cam-card__spec-icon svg { width: 16px !important; height: 16px !important; }
  .vm-cam-card__spec-label { font-size: .48rem !important; }
  .vm-cam-card__spec-val {
    font-size: .68rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .vm-cam-card__spec-sep { height: 20px !important; }
  /* Nome più piccolo per non sovrastare la foto piccola */
  .vm-cam-card__name { font-size: 1.4rem !important; }
}

/* STEP 7 — T13: Ristorante esperienze 5col desktop, 1col mobile (no inline style) */
.vm-srv-grid--5col {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 980px) {
  .vm-srv-grid--5col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  body .vm-srv-grid--5col { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════════
   STEP 8 — T14b: Mr.PRENO popup eyebrow "Prenotazioni" leggibile
   (era nero illeggibile su sfondo blu — bug: selettore CSS errato,
   <small> è fuori da .vm-prenota-modal__title, è sibling)
   ════════════════════════════════════════════════════════════════ */
.vm-prenota-modal__head small,
.vm-prenota-modal__head > div > small {
  display: block;
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55) !important;
  margin-bottom: .35rem;
}

/* Su mobile: testa popup leggermente più compatta */
@media (max-width: 720px) {
  .vm-prenota-modal__head {
    padding: 1.2rem 1.4rem !important;
    border-radius: 0 !important;
  }
  .vm-prenota-modal__title {
    font-size: 1.4rem !important;
    line-height: 1.15 !important;
  }
  .vm-prenota-modal__head small,
  .vm-prenota-modal__head > div > small {
    font-size: .5rem !important;
    letter-spacing: .24em !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   v5.8 — STEP 2: T19b Hero testo in basso a destra (mobile)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .vm-hero-logo-wrap {
    position: absolute !important;
    top: auto !important;
    bottom: 7rem !important;
    right: 1.4rem !important;
    left: auto !important;
    padding: 0 !important;
    text-align: right !important;
    max-width: 78% !important;
    z-index: 2 !important;
  }
  .vm-hero-logo-big {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
    line-height: 1.05 !important;
    text-align: right !important;
  }
  .vm-hero-logo-sub {
    text-align: right !important;
    font-size: .72rem !important;
    margin-top: .6rem !important;
    opacity: .85;
  }
}

/* ════════════════════════════════════════════════════════════════
   v5.8 — STEP 3: T21 Bottone PRENOTA in header (filled, apre WuBook)
   Differenziato da "Richiedi preventivo" (outline) per gerarchia visiva
   ════════════════════════════════════════════════════════════════ */
.vm-prenota--filled {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-color: var(--ink) !important;
}
.vm-prenota--filled:hover {
  background: var(--cream) !important;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}
.vm-nav.on-dark .vm-prenota--filled {
  background: var(--cream) !important;
  color: var(--ink) !important;
  border-color: var(--cream) !important;
}
.vm-nav.on-dark .vm-prenota--filled:hover {
  background: transparent !important;
  color: var(--cream) !important;
  border-color: var(--cream) !important;
}

/* Mobile: bottone PRENOTA visibile, Richiedi preventivo passa in mobile menu */
@media (max-width: 720px) {
  .vm-prenota:not(.vm-prenota--filled) {
    display: none !important; /* "Richiedi preventivo" lo trovi nel menu hamburger */
  }
  .vm-prenota--filled {
    padding: .55rem 1.1rem !important;
    font-size: .6rem !important;
    letter-spacing: .14em !important;
  }
  .vm-prenota--filled svg { width: 12px; height: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   v5.9 — STEP 7: Hero bg single-element pattern v48 stable
   Forza visibilità .vm-hero-bg sopra qualsiasi pseudo overlay
   ════════════════════════════════════════════════════════════════ */
.vm-hero .vm-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0 !important;
  opacity: 1;
  transition: opacity .6s ease;
}
/* Overlay deve essere SOTTO il logo ma SOPRA il bg.
   Garantisco gerarchia: bg(0) → overlay(1) → logo(2) */
.vm-hero .vm-hero-overlay { z-index: 1 !important; }
.vm-hero .vm-hero-logo-wrap { z-index: 3 !important; position: relative; }

/* ═══════════════════════════════════════════════════════════════
   v5.12.0 — STYLING FORM MR.PRENO NATIVO (custom_template)
   Override per dare al form Mr.PRENO l'aspetto Vienna Mare.
   Mr.PRENO usa classi tipo .mr_name, .mr_email, .mr_phone, etc.
   ═══════════════════════════════════════════════════════════════ */

.vm-mrp-wrap { width: 100%; }

/* Reset visivo per tutti gli input/select/textarea generati da Mr.PRENO */
.vm-mrp-wrap input[type="text"],
.vm-mrp-wrap input[type="email"],
.vm-mrp-wrap input[type="tel"],
.vm-mrp-wrap input[type="number"],
.vm-mrp-wrap input[type="date"],
.vm-mrp-wrap select,
.vm-mrp-wrap textarea,
.vm-mrp-wrap [class*="mr_"] input,
.vm-mrp-wrap [class*="mr_"] select,
.vm-mrp-wrap [class*="mr_"] textarea {
  width: 100% !important;
  background: var(--cream, #f5f3f0) !important;
  border: 1px solid rgba(11, 61, 98, 0.18) !important;
  border-radius: 0 !important;
  padding: 0.75rem 0.85rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--ink, #0b3d62) !important;
  transition: border-color 0.2s ease !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.vm-mrp-wrap input:focus,
.vm-mrp-wrap select:focus,
.vm-mrp-wrap textarea:focus,
.vm-mrp-wrap [class*="mr_"] input:focus,
.vm-mrp-wrap [class*="mr_"] select:focus,
.vm-mrp-wrap [class*="mr_"] textarea:focus {
  outline: none !important;
  border-color: var(--ink, #0b3d62) !important;
}
.vm-mrp-wrap textarea {
  min-height: 90px !important;
  resize: vertical !important;
}

/* Select dropdown arrow */
.vm-mrp-wrap select,
.vm-mrp-wrap [class*="mr_"] select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230b3d62' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 10px !important;
  padding-right: 2rem !important;
}

/* Labels Mr.PRENO native (se le mostra) */
.vm-mrp-wrap label,
.vm-mrp-wrap [class*="mr_"] label {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(11, 61, 98, 0.7) !important;
  margin-bottom: 0.4rem !important;
  display: block !important;
  font-weight: 500 !important;
}

/* Riprendo i wrapper Vienna esistenti (.vm-form-field, .vm-form-row, etc) */
.vm-mrp-wrap .vm-form-field { margin-bottom: 1.1rem; }
.vm-mrp-wrap .vm-form-field label.vm-form-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 61, 98, 0.7);
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 500;
}

/* Periodo Mr.PRENO (date arrivo/partenza + adulti/bambini) */
.vm-mrp-period {
  background: rgba(11, 61, 98, 0.04);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.vm-mrp-period [class*="mr_periodo"] {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  gap: 1rem !important;
}

/* Mr.PRENO checkboxes (es. privacy) */
.vm-mrp-wrap input[type="checkbox"] {
  width: auto !important;
  margin-right: 0.5rem !important;
  vertical-align: middle !important;
  accent-color: var(--ink, #0b3d62) !important;
}

/* Privacy block Vienna Mare */
.vm-mrp-wrap .vm-form-privacy {
  margin: 1.5rem 0 1rem;
  padding: 1rem;
  background: rgba(11, 61, 98, 0.04);
  font-size: 0.85rem;
  line-height: 1.5;
}
.vm-mrp-wrap .vm-form-privacy a {
  color: var(--ink, #0b3d62);
  text-decoration: underline;
}

/* Send button Mr.PRENO → stile bottone Vienna primario */
.vm-mrp-send,
.vm-mrp-wrap [class*="mr_send"],
.vm-mrp-wrap button[type="submit"],
.vm-mrp-wrap input[type="submit"] {
  width: 100% !important;
  margin-top: 1rem !important;
}
.vm-mrp-wrap button[type="submit"],
.vm-mrp-wrap input[type="submit"],
.vm-mrp-wrap [class*="mr_send"] button,
.vm-mrp-wrap [class*="mr_send"] input[type="submit"] {
  background: var(--ink, #0b3d62) !important;
  color: var(--cream, #f5f3f0) !important;
  border: none !important;
  padding: 1rem 2rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.25s ease !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  width: 100% !important;
}
.vm-mrp-wrap button[type="submit"]:hover,
.vm-mrp-wrap input[type="submit"]:hover,
.vm-mrp-wrap [class*="mr_send"] button:hover {
  background: rgba(11, 61, 98, 0.85) !important;
}

/* Servizi extra (checkbox grid Vienna) */
.vm-mrp-wrap #vm-mrp-services { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.vm-mrp-wrap #vm-mrp-services .vm-srv-check {
  flex: 0 0 auto;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(11, 61, 98, 0.2);
  background: var(--cream, #f5f3f0);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}
.vm-mrp-wrap #vm-mrp-services .vm-srv-check:has(input:checked) {
  background: var(--ink, #0b3d62);
  color: var(--cream, #f5f3f0);
  border-color: var(--ink, #0b3d62);
}
.vm-mrp-wrap #vm-mrp-services .vm-srv-check input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
}

/* Sezioni titolo Vienna preservate */
.vm-mrp-wrap .vm-form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink, #0b3d62);
  margin: 1.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(11, 61, 98, 0.12);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.vm-mrp-wrap .vm-form-section-title:first-child { margin-top: 0; }

/* Loading state (mentre form-widget.js carica) */
#mrp_form:empty::before {
  content: "Caricamento form preventivo…";
  display: block;
  padding: 2rem;
  text-align: center;
  color: rgba(11, 61, 98, 0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
}

/* Messaggio di successo Vienna */
#vm-form-msg-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .vm-mrp-wrap .vm-form-row-2,
  .vm-mrp-wrap .vm-form-row-3 {
    grid-template-columns: 1fr !important;
  }
  .vm-mrp-period [class*="mr_periodo"] {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   v5.13.1 — STYLING FORM MR.PRENO NATIVO (Vertical)
   Override completi per dare al form Mr.PRENO l'aspetto Vienna Mare.
   ═══════════════════════════════════════════════════════════════════════════ */

.vm-mrp-wrap { width: 100%; padding: 0.5rem 0; }

/* Loading state mentre Mr.PRENO carica */
#mrp_form:empty::before {
  content: "Caricamento form preventivo…";
  display: block;
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(11, 61, 98, 0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* ─── Tutti gli input/select/textarea generati da Mr.PRENO ─── */
#mrp_form input[type="text"],
#mrp_form input[type="email"],
#mrp_form input[type="tel"],
#mrp_form input[type="number"],
#mrp_form input[type="date"],
#mrp_form select,
#mrp_form textarea {
  width: 100% !important;
  background: var(--cream, #f5f3f0) !important;
  border: 1px solid rgba(11, 61, 98, 0.18) !important;
  border-radius: 4px !important;
  padding: 0.75rem 0.85rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--ink, #0b3d62) !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease !important;
}

#mrp_form input:focus,
#mrp_form select:focus,
#mrp_form textarea:focus {
  outline: none !important;
  border-color: var(--ink, #0b3d62) !important;
}

#mrp_form textarea {
  min-height: 90px !important;
  resize: vertical !important;
}

/* ─── Labels Mr.PRENO ─── */
#mrp_form label {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(11, 61, 98, 0.7) !important;
  font-weight: 500 !important;
  margin-bottom: 0.4rem !important;
  display: block !important;
}

/* ─── FIX checkbox servizi: vanno A SINISTRA del testo, non SOPRA ─── */
#mrp_form label[for*="service"],
#mrp_form label[for*="servic"],
#mrp_form .mr_service label,
#mrp_form [class*="mr_servic"] label,
#mrp_form [class*="service"] label,
#mrp_form label:has(> input[type="checkbox"]) {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.6rem !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 0.92rem !important;
  color: var(--ink, #0b3d62) !important;
  margin: 0.4rem 0 !important;
  padding: 0.5rem 0.85rem !important;
  background: var(--cream, #f5f3f0) !important;
  border: 1px solid rgba(11, 61, 98, 0.15) !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

#mrp_form label:has(> input[type="checkbox"]:checked) {
  background: rgba(11, 61, 98, 0.06) !important;
  border-color: var(--ink, #0b3d62) !important;
}

/* ─── Checkbox standalone ─── */
#mrp_form input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  accent-color: var(--ink, #0b3d62) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

/* ─── Bottone INVIA — stile Vienna primario ─── */
#mrp_form button[type="submit"],
#mrp_form input[type="submit"],
#mrp_form button.mr_send_btn,
#mrp_form .mr_send_btn,
#mrp_form [class*="send"][role="button"] {
  background: var(--ink, #0b3d62) !important;
  color: var(--cream, #f5f3f0) !important;
  border: none !important;
  padding: 1.1rem 2rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  width: 100% !important;
  font-weight: 500 !important;
  border-radius: 4px !important;
  margin-top: 1.5rem !important;
  transition: background-color 0.25s ease !important;
}
#mrp_form button[type="submit"]:hover,
#mrp_form .mr_send_btn:hover {
  background: rgba(11, 61, 98, 0.88) !important;
}

/* ─── Layout periodo (date+ospiti) ─── */
#mrp_form [class*="mr_periodo"],
#mrp_form [class*="mr_period"] {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  gap: 1rem !important;
  margin-bottom: 1rem !important;
}

/* ─── Spaziatura generale ─── */
#mrp_form > div,
#mrp_form > section,
#mrp_form > fieldset {
  margin-bottom: 1.2rem !important;
}

/* ─── Aggiungi periodo alternativo ─── */
#mrp_form a[class*="add"],
#mrp_form button[class*="add"],
#mrp_form [class*="periodo_aggiungi"] {
  color: var(--ink, #0b3d62) !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-family: 'Jost', sans-serif !important;
  cursor: pointer !important;
}

/* ─── Privacy block ─── */
#mrp_form [class*="privacy"],
#mrp_form [class*="gdpr"] {
  margin: 1.2rem 0 !important;
  padding: 1rem !important;
  background: rgba(11, 61, 98, 0.04) !important;
  border-radius: 4px !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
}

#mrp_form [class*="privacy"] a,
#mrp_form [class*="gdpr"] a {
  color: var(--ink, #0b3d62) !important;
  text-decoration: underline !important;
}

/* ─── Counter adulti/bambini ─── */
#mrp_form [class*="counter"],
#mrp_form [class*="qty"] {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* ─── Asterischi obbligatori ─── */
#mrp_form .required,
#mrp_form .mr_required,
#mrp_form [class*="required"] {
  color: var(--ink, #0b3d62) !important;
}

/* ─── Mobile ─── */
@media (max-width: 640px) {
  #mrp_form [class*="mr_periodo"],
  #mrp_form [class*="mr_period"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ─── Messaggio successo Vienna ─── */
#vm-form-msg-success {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
}
