/* ================================================================
   BOOKING ENGINE — Stile allineato a budonicasevacanze.com
   Palette: cream #fefbf6 + terracotta #c78444 + navy #1a2332
   Font:    Playfair Display (display) + Inter (body) - stessi del sito
   ================================================================ */

/* Google Fonts @import rimosso: il sito usa fonts self-hosted via /fonts/fonts.css */

/* ══════════════════════════════════════════
   DESIGN TOKENS (stessi valori del sito)
   ══════════════════════════════════════════ */
:root {
  /* Base */
  --c-cream:        #fefbf6;
  --c-cream-soft:   #faf5ec;
  --c-cream-warm:   #f5ebdc;
  --c-border-warm:  #f0e8d8;

  /* Testo */
  --c-navy:         #1a2332;
  --c-navy-dark:    #0f1924;
  --c-text-body:    #4a5568;
  --c-text-soft:    #6b7280;
  --c-text-mute:    #9aa5b1;

  /* Accento terracotta (brand primary) */
  --c-terra:        #c78444;
  --c-terra-dark:   #a66a34;
  --c-terra-deep:   #8b5a2b;

  /* Tones peach / amber */
  --c-peach:        #ffd9a8;
  --c-amber-gold:   #ffc362;
  --c-amber-soft:   #fef3c7;
  --c-amber-warm:   #fde68a;
  --c-amber-border: #fcd34d;
  --c-amber-text:   #78350f;
  --c-amber-textHi: #92400e;

  /* Success */
  --c-green:        #059669;
  --c-green-accent: #10b981;
  --c-green-soft:   #dcfce7;

  /* Shadows (stile sito) */
  --sh-sm:   0 1px 2px rgba(26, 35, 50, 0.04);
  --sh-card: 0 4px 30px rgba(0, 0, 0, 0.06);
  --sh-card-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
  --sh-terra: 0 8px 28px rgba(199, 132, 68, 0.45);
  --sh-terra-hover: 0 12px 36px rgba(199, 132, 68, 0.6);
  --sh-soft-terra: 0 4px 15px rgba(199, 132, 68, 0.35);

  /* Radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* Fonts (matchati col sito) */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Easing (stesso del sito) */
  --ease:       cubic-bezier(0.2, 0.9, 0.3, 1.2);
  --ease-soft:  cubic-bezier(0.2, 0.9, 0.3, 1.1);
  --ease-std:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════
   RESET & GLOBALI (mirror del sito)
   ══════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--c-navy);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--c-navy);
}
h1 em, h2 em, h3 em { color: var(--c-terra); font-style: italic; font-weight: 500; }

::selection { background: rgba(199, 132, 68, 0.25); color: var(--c-navy); }

/* Eyebrow — lo stesso del sito */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-terra);
}

/* ══════════════════════════════════════════
   DEV BANNER
   ══════════════════════════════════════════ */
#dev-banner {
  background: linear-gradient(90deg, var(--c-amber-warm), var(--c-terra));
  color: var(--c-amber-text);
  font-weight: 700;
  font-size: 11.5px;
  text-align: center;
  padding: 7px 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(199, 132, 68, 0.3);
}

/* ══════════════════════════════════════════
   HEADER — replica ESATTA della .cta-final del sito
   (stessa immagine, stesso overlay, stesso parallax fixed)
   ══════════════════════════════════════════ */
.bk-header {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 5%;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-image: url('https://www.budonicasevacanze.com/foto/budoni-case-vacanze-mare-budoni2.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax sul desktop */
}
.bk-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(199, 132, 68, 0.5) 100%);
  z-index: 0;
}

.bk-header-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.bk-header .eyebrow {
  color: var(--c-peach);
  display: block;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: bkHeroIn 0.7s var(--ease-soft) backwards;
}

.bk-logo {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  animation: bkHeroIn 0.8s var(--ease-soft) 0.08s backwards;
}
.bk-logo em { color: var(--c-peach); font-style: italic; font-weight: 500; }

.bk-tagline {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  opacity: 0.95;
  margin: 0 auto 0;
  max-width: 600px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: bkHeroIn 0.8s var(--ease-soft) 0.16s backwards;
}

@keyframes bkHeroIn {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: disabilita parallax (stesso trick del sito) */
@media (max-width: 560px) {
  .bk-header { background-attachment: scroll; }
}

/* ══════════════════════════════════════════
   FORM INLINE NEL HERO — trasparente, tutto su 1 riga
   ══════════════════════════════════════════ */
.bk-form-inline {
  max-width: 1150px;
  margin: 44px auto 0;
  background: transparent;
  display: grid;
  grid-template-columns:
    minmax(160px, 1.25fr)  /* Data arrivo */
    minmax(160px, 1.25fr)  /* Data partenza */
    minmax(80px,  0.55fr)  /* Notti */
    minmax(150px, 1fr)     /* Adulti */
    minmax(155px, 1fr)     /* Bambini */
    auto;                  /* CTA */
  gap: 12px;
  align-items: end;
  text-align: left;
  animation: bkHeroIn 0.8s var(--ease-soft) 0.24s backwards;
}
.bk-form-inline .bk-field { display: flex; flex-direction: column; min-width: 0; }

/* Label bianca con text-shadow leggibile sul hero */
.bk-form-inline .bk-field label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.bk-form-inline .bk-label-hint {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 9.5px;
}

/* Date buttons: glass (white semi-trasparente + blur) */
.bk-form-inline .bk-date-btn {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--c-navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.bk-form-inline .bk-date-btn:hover {
  background: #fff;
  border-color: var(--c-terra);
  box-shadow: 0 8px 22px rgba(199, 132, 68, 0.28);
}

/* Stepper: glass */
.bk-form-inline .bk-stepper {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.bk-form-inline .bk-stepper:hover { border-color: var(--c-terra); background: #fff; }
.bk-form-inline .bk-step-btn { background: transparent; color: var(--c-terra); }
.bk-form-inline .bk-step-btn:hover { background: var(--c-amber-soft); }

/* Notti display: peach su navy semi-trasparente con contrasto elegante */
.bk-form-inline .bk-notti-display {
  background: rgba(26, 35, 50, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-peach);
  border: 1px solid rgba(255, 217, 168, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* CTA inline (non a tutta larghezza) */
.bk-form-inline .bk-cta-primary {
  grid-column: auto;
  margin-top: 0;
  height: 56px;
  padding: 0 26px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-size: 13.5px;
}
.bk-form-inline .bk-cta-primary svg { width: 17px; height: 17px; }

/* Responsive del form inline */
@media (max-width: 1100px) {
  .bk-form-inline {
    grid-template-columns: 1fr 1fr 0.55fr 1fr 1fr;
    gap: 12px;
  }
  .bk-form-inline .bk-cta-primary {
    grid-column: 1 / -1;
    height: 54px;
    width: 100%;
  }
}
@media (max-width: 760px) {
  .bk-form-inline {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 36px;
  }
  .bk-form-inline .bk-field-notti { grid-column: 1 / -1; }
  .bk-form-inline .bk-notti-display { text-align: center; }
}
@media (max-width: 440px) {
  .bk-form-inline { grid-template-columns: 1fr; }
  .bk-form-inline .bk-label-hint { display: inline; }
}

/* ══════════════════════════════════════════
   FASCIA BLU NAVY — replica sezione .features del sito
   ══════════════════════════════════════════ */
.bk-features {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(30px, 4vw, 48px) 5% clamp(60px, 8vw, 90px);
  position: relative;
  z-index: 1;
}
.bk-features-inner { max-width: 1200px; margin: 0 auto; }

/* Riga header: brand a sx, CTA a dx */
.bk-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Brand bicolor (stile .footer-brand del sito) */
.bk-brand-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  text-align: left;
}
.bk-brand-title span { color: var(--c-terra); font-weight: 700; }

/* Gruppo CTA WhatsApp + Chiamaci — a destra del brand */
.bk-brand-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

/* CTA primario terracotta (stile btn-primary sito, compatto per inline row) */
.bk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--c-terra);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-std);
  box-shadow: var(--sh-terra);
  text-decoration: none;
  white-space: nowrap;
}
.bk-btn-primary:hover {
  background: var(--c-terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-terra-hover);
}
.bk-btn-primary svg { flex-shrink: 0; width: 18px; height: 18px; }

/* CTA secondario glass (stile btn-secondary sito, compatto) */
.bk-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s var(--ease-std);
  text-decoration: none;
  white-space: nowrap;
}
.bk-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.bk-btn-secondary svg { flex-shrink: 0; width: 18px; height: 18px; }

/* Mobile: brand-row impilato verticalmente, CTA a tutta larghezza */
@media (max-width: 720px) {
  .bk-brand-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .bk-brand-ctas { width: 100%; }
}
@media (max-width: 480px) {
  .bk-brand-ctas { flex-direction: column; width: 100%; }
  .bk-btn-primary, .bk-btn-secondary { width: 100%; justify-content: center; }
}

/* Divider elegante tra brand+CTA e features */
.bk-brand-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-terra), transparent);
  margin: clamp(40px, 5vw, 56px) auto;
  opacity: 0.55;
}

.bk-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

/* ──────────────────────────────────────────
   RATING Booking.com (trust signal sopra le features)
   - Badge "9,4" stile Booking (blu navy + angolo BL squadrato)
   - Logo testuale "Booking.com" con colori del brand
   ────────────────────────────────────────── */
.bk-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 36px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  max-width: max-content;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.bk-rating:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(254, 186, 2, 0.45);
  transform: translateY(-1px);
}
.bk-rating-badge {
  background: #003580; /* Booking blue */
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px 8px 8px 0; /* angolo bottom-left squadrato (cifra Booking) */
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.3px;
  box-shadow: 0 3px 8px rgba(0, 53, 128, 0.35);
}
.bk-rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.bk-rating-text {
  font-size: 14px;
  margin: 0 !important;
  color: #fff;
  opacity: 0.95;
  line-height: 1.3;
}
.bk-rating-text strong {
  color: #feba02; /* Booking yellow */
  font-weight: 700;
}
.bk-rating-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 17px;
  background: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: -0.4px;
  display: inline-block;
}
.bk-rating-logo .bkc-blue { color: #003580; }
.bk-rating-logo .bkc-orange { color: #feba02; }
@media (max-width: 480px) {
  .bk-rating { gap: 12px; padding: 10px 16px; }
  .bk-rating-badge { font-size: 18px; padding: 6px 10px; }
  .bk-rating-text { font-size: 12.5px; }
  .bk-rating-logo { font-size: 15px; padding: 2px 8px; }
}
.bk-feature { text-align: center; padding: 0 20px; }
.bk-feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
  filter: grayscale(0.3);
  display: inline-block;
}
.bk-feature h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--c-peach);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bk-feature p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  color: #fff;
  margin: 0;
}

/* ══════════════════════════════════════════
   MAIN CONTAINER
   ══════════════════════════════════════════ */
.bk-main {
  max-width: 1280px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: clamp(30px, 4vw, 50px) 5% 0;
  position: relative;
  z-index: 1;
}
/* Quando i risultati e lo stato sono entrambi nascosti (1a pagina al primo
   caricamento, prima che l'utente clicchi "Verifica disponibilita"), non
   riservare spazio sotto la fascia blu navy: e' la "sezione bianca in basso"
   che generava la viewport con sfondo crema vuota. Il #bk-cal-overlay e' un
   overlay fixed quindi non occupa spazio nel flow. */
.bk-main:has(#bk-results[hidden]):has(#bk-status[hidden]) {
  margin: 0 auto;
  padding: 0;
  min-height: 0;
}

/* ══════════════════════════════════════════
   SEARCH CARD — cream/white elegante, stile sito
   ══════════════════════════════════════════ */
.bk-search-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 42px) clamp(24px, 3vw, 36px);
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-warm);
  position: relative;
  animation: bkCardIn 0.7s var(--ease-soft) 0.15s backwards;
}
@keyframes bkCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bk-section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  margin: 0 0 26px;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  padding-bottom: 18px;
}
.bk-section-title em { color: var(--c-terra); font-style: italic; font-weight: 500; }
.bk-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--c-terra);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(199, 132, 68, 0.35);
}

/* ══════════════════════════════════════════
   FORM GRID
   ══════════════════════════════════════════ */
.bk-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px 16px;
  align-items: end;
}
.bk-field { display: flex; flex-direction: column; min-width: 0; }
.bk-field label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-terra);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  white-space: nowrap;
}
.bk-label-hint {
  color: var(--c-text-soft);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}
.bk-guests-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--c-border-warm);
}

/* ══════════════════════════════════════════
   DATE BUTTONS
   ══════════════════════════════════════════ */
.bk-date-btn {
  height: 56px;
  padding: 0 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md);
  background: var(--c-cream);
  color: var(--c-navy);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.bk-date-btn:hover {
  border-color: var(--c-terra);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(199, 132, 68, 0.15);
}
.bk-date-btn:focus {
  outline: none;
  border-color: var(--c-terra);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 132, 68, 0.15);
}
.bk-date-text { flex: 1; }
.bk-date-text.empty { color: var(--c-text-mute); font-weight: 500; }
.bk-date-icon {
  margin-left: 10px;
  flex-shrink: 0;
  color: var(--c-terra);
  opacity: 0.85;
  transition: all 0.25s var(--ease-std);
}
.bk-date-btn:hover .bk-date-icon {
  opacity: 1;
  transform: scale(1.08);
}

/* ══════════════════════════════════════════
   STEPPER
   ══════════════════════════════════════════ */
.bk-field-small { min-width: 140px; }
.bk-stepper {
  display: flex;
  align-items: center;
  height: 56px;
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md);
  background: var(--c-cream);
  overflow: hidden;
  transition: border-color 0.2s var(--ease-std);
}
.bk-stepper:hover { border-color: var(--c-terra); background: #fff; }
.bk-stepper input {
  flex: 1;
  height: 100%;
  border: none;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  background: transparent;
  color: var(--c-navy);
  width: 50px;
  padding: 0;
}
.bk-stepper input:focus { outline: none; }
.bk-step-btn {
  width: 46px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--c-terra);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans);
}
.bk-step-btn:hover { background: var(--c-amber-soft); color: var(--c-terra-dark); }
.bk-step-btn:active { background: var(--c-amber-warm); }

/* ══════════════════════════════════════════
   NOTTI DISPLAY
   ══════════════════════════════════════════ */
.bk-field-notti { min-width: 100px; }
.bk-notti-display {
  height: 56px;
  line-height: 52px;
  padding: 0 18px;
  background: var(--c-navy);
  color: var(--c-peach);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  border-radius: var(--r-md);
  min-width: 92px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ══════════════════════════════════════════
   CTA PRIMARY — terracotta pill (stile btn-primary sito)
   ══════════════════════════════════════════ */
.bk-cta-primary {
  grid-column: 1 / -1;
  margin-top: 14px;
  height: 58px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--c-terra);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: var(--sh-terra);
  transition: all 0.3s var(--ease-std);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
}
.bk-cta-primary svg { stroke-width: 2.4; flex-shrink: 0; }
.bk-cta-primary:hover {
  background: var(--c-terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-terra-hover);
}
.bk-cta-primary:active { transform: translateY(0); }

.bk-hint {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--c-text-soft);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   CALENDAR POPUP
   ══════════════════════════════════════════ */
.bk-cal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: bkFadeIn 0.22s ease;
}
.bk-cal-overlay[hidden] { display: none !important; }
@keyframes bkFadeIn { from { opacity: 0; } to { opacity: 1; } }

.bk-cal-box {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--c-border-warm);
  animation: bkScaleIn 0.3s var(--ease-soft);
}
@keyframes bkScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bk-cal-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  text-transform: capitalize;
  letter-spacing: -0.015em;
}
.bk-cal-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--c-cream);
  border-radius: var(--r-pill);
  color: var(--c-terra);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.bk-cal-nav:hover { background: var(--c-amber-soft); transform: scale(1.08); color: var(--c-terra-dark); }
.bk-cal-nav:disabled { opacity: 0.25; cursor: not-allowed; }
.bk-cal-nav:disabled:hover { background: var(--c-cream); transform: none; }

.bk-cal-mode-hint {
  text-align: center;
  font-size: 12.5px;
  color: var(--c-text-soft);
  margin-bottom: 10px;
  padding: 10px 14px;
  background: var(--c-cream);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-terra);
  font-weight: 500;
}
.bk-cal-mode-hint strong { color: var(--c-navy); font-weight: 700; }

.bk-cal-toolbar { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.bk-cal-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--c-text-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
}
.bk-cal-reset:hover {
  background: #fee2e2;
  border-color: #f87171;
  color: #b91c1c;
  transform: translateY(-1px);
}

.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 8px;
}
.bk-cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-terra);
  text-transform: uppercase;
  padding: 6px 0;
  letter-spacing: 0.15em;
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.bk-cal-cell {
  aspect-ratio: 1;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.18s var(--ease);
  padding: 2px;
}
.bk-cal-cell.empty { visibility: hidden; cursor: default; }
.bk-cal-cell.past { color: var(--c-text-mute); cursor: not-allowed; }
.bk-cal-cell.past:hover { background: #fff; }
.bk-cal-cell.locked {
  cursor: not-allowed;
  background: repeating-linear-gradient(45deg, #fef2f2, #fef2f2 4px, #fff 4px, #fff 8px);
  opacity: 0.55;
}
.bk-cal-cell.locked:hover { background: repeating-linear-gradient(45deg, #fef2f2, #fef2f2 4px, #fff 4px, #fff 8px); transform: none; border-color: transparent; }
.bk-cal-cell.locked .bk-cal-cell-day { color: var(--c-text-mute); }
.bk-cal-cell.locked .bk-cal-cell-min { color: #cbd5e1; }
.bk-cal-cell:not(.past):not(.empty):hover {
  background: var(--c-amber-soft);
  border-color: var(--c-terra);
  transform: scale(1.08);
  z-index: 2;
}
.bk-cal-cell.sel-dal {
  background: linear-gradient(135deg, var(--c-green-accent), var(--c-green));
  color: #fff !important;
  border-color: #047857;
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.4);
}
.bk-cal-cell.sel-al {
  background: linear-gradient(135deg, var(--c-terra), var(--c-terra-dark));
  color: #fff !important;
  border-color: var(--c-terra-deep);
  box-shadow: 0 6px 14px rgba(199, 132, 68, 0.4);
}
.bk-cal-cell.in-range {
  background: var(--c-amber-soft);
  color: var(--c-amber-textHi);
}
.bk-cal-cell-day {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-navy);
  font-family: var(--font-sans);
}
.bk-cal-cell.past .bk-cal-cell-day { color: var(--c-text-mute); }
.bk-cal-cell.sel-dal .bk-cal-cell-day,
.bk-cal-cell.sel-al .bk-cal-cell-day,
.bk-cal-cell.in-range .bk-cal-cell-day { color: inherit; }
.bk-cal-cell-min {
  font-size: 9px;
  font-weight: 700;
  color: var(--c-text-soft);
  line-height: 1.1;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.bk-cal-cell-ico {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.bk-cal-cell-ico .bk-ico { display: inline-block; }
.bk-cal-cell .bk-ico-ci { color: var(--c-green); }
.bk-cal-cell .bk-ico-co { color: var(--c-terra); }
.bk-cal-cell.sel-dal .bk-ico-ci,
.bk-cal-cell.sel-dal .bk-ico-co,
.bk-cal-cell.sel-al  .bk-ico-ci,
.bk-cal-cell.sel-al  .bk-ico-co { color: #fff !important; }
.bk-cal-cell.in-range .bk-ico-ci { color: var(--c-green); }
.bk-cal-cell.in-range .bk-ico-co { color: var(--c-terra-dark); }

.bk-cal-cell.mode-locked {
  cursor: not-allowed;
  background: var(--c-amber-soft);
  border-color: var(--c-amber-warm);
}
.bk-cal-cell.mode-locked:hover {
  background: var(--c-amber-warm);
  transform: none;
  border-color: var(--c-amber-border);
}
.bk-cal-cell.mode-locked .bk-cal-cell-day { color: var(--c-amber-textHi); font-weight: 700; }
.bk-cal-cell.mode-locked .bk-cal-cell-min { color: var(--c-amber-text); }
.bk-cal-cell.mode-locked .bk-cal-cell-ico { opacity: 0.95; font-size: 15px; }

.bk-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  padding: 16px 8px 4px;
  margin-top: 16px;
  border-top: 1px dashed var(--c-border-warm);
  font-size: 13px;
  color: var(--c-text-body);
  font-weight: 600;
}
.bk-cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.bk-cal-legend-item svg { width: 18px !important; height: 18px !important; }
.bk-cal-legend-label {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--c-navy);
  text-transform: uppercase;
  margin-right: 2px;
}
.bk-cal-cell.sel-dal .bk-cal-cell-min,
.bk-cal-cell.sel-al .bk-cal-cell-min { color: rgba(255, 255, 255, 0.9); }
.bk-cal-cell.in-range .bk-cal-cell-min { color: var(--c-terra-dark); }

@media (max-width: 480px) {
  .bk-cal-box { padding: 18px; }
  .bk-cal-cell-day { font-size: 13px; }
  .bk-cal-cell-min { font-size: 8px; }
}

/* ══════════════════════════════════════════
   RESULTS HEAD
   ══════════════════════════════════════════ */
.bk-results { margin-top: 32px; animation: bkCardIn 0.5s var(--ease-soft); }

.bk-results-head {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-bottom: 22px;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.bk-results-head-title {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bk-results-head-meta {
  font-size: 13px;
  color: var(--c-text-soft);
  margin-top: 6px;
  font-weight: 500;
}
.bk-results-head-badge {
  background: var(--c-terra);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--sh-soft-terra);
  text-transform: uppercase;
}
.bk-results-head-badge.sold-out {
  background: #dc2626;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.bk-results-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ══════════════════════════════════════════
   TIPO BLOCK
   ══════════════════════════════════════════ */
.bk-tipo-block {
  background: linear-gradient(180deg, #fff 0%, var(--c-cream) 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  padding: 24px 28px 28px;
  border: 1px solid var(--c-border-warm);
}
.bk-tipo-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--c-border-warm);
  flex-wrap: wrap;
}
.bk-tipo-block .bk-tipo-nome {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0;
  letter-spacing: -0.02em;
}
.bk-tipo-block .bk-tipo-avail {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-terra);
}
.bk-tipo-empty {
  padding: 16px;
  text-align: center;
  color: var(--c-text-mute);
  font-size: 13px;
  font-style: italic;
  background: var(--c-cream);
  border-radius: var(--r-md);
  margin-top: 14px;
  border: 1px dashed var(--c-border-warm);
}
.bk-tipo-off {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-border-warm);
}
.bk-tipo-off summary {
  cursor: pointer;
  font-size: 11.5px;
  color: var(--c-text-soft);
  font-weight: 700;
  padding: 6px 0;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s var(--ease-std);
}
.bk-tipo-off summary::-webkit-details-marker { display: none; }
.bk-tipo-off summary:hover { color: var(--c-terra); }
.bk-tipo-off summary::before {
  content: "▸ ";
  display: inline-block;
  margin-right: 4px;
  transition: transform 0.2s var(--ease-std);
}
.bk-tipo-off[open] summary::before { transform: rotate(90deg); }
.bk-tipo-off[open] summary { margin-bottom: 10px; }

/* ══════════════════════════════════════════
   CARDS GRID (prenota.html, legacy)
   ══════════════════════════════════════════ */
.bk-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding: 18px 0 4px;
}

/* ══════════════════════════════════════════
   CARDS LIST (risultati.html) — impilate verticalmente,
   layout ORIZZONTALE: foto a sinistra, contenuto a destra
   ══════════════════════════════════════════ */
.bk-cards-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 10px 0 4px;
  max-width: 1280px; /* piu` larga: sfrutta tutto il main container */
  margin: 0 auto;
}
.bk-cards-list .bk-card {
  display: grid;
  grid-template-columns: minmax(300px, 36%) 1fr; /* foto piu` stretta, corpo piu` largo */
  align-items: stretch;
  overflow: hidden;
}
.bk-cards-list .bk-card-cover {
  /* Annulla il trick padding-top 75% (4:3): qui la foto riempie l'altezza card */
  padding-top: 0;
  height: 100%;
  min-height: 260px;
  border-radius: 0;
}
.bk-cards-list .bk-card-body {
  padding: 24px 30px 26px;
  gap: 12px;
}
.bk-cards-list .bk-card-title { font-size: 26px; }
.bk-cards-list .bk-card-desc {
  /* Descrizione piu` stretta verticalmente: meno righe, piu` spazio orizzontale */
  -webkit-line-clamp: 4;
  line-clamp: 4;
  font-size: 13.5px;
  line-height: 1.55;
}
.bk-cards-list .bk-card-cta {
  align-self: flex-end;
  width: auto;
  padding: 14px 28px;
  min-width: 240px;
  max-width: 100%;
}

/* Mobile: torna verticale sotto 720px (foto sopra, contenuto sotto) */
@media (max-width: 720px) {
  .bk-cards-list .bk-card {
    grid-template-columns: 1fr;
  }
  .bk-cards-list .bk-card-cover {
    padding-top: 60%; /* aspect ratio verticale su mobile */
    min-height: 0;
    height: auto;
  }
  .bk-cards-list .bk-card-body { padding: 20px 22px 24px; gap: 11px; }
  .bk-cards-list .bk-card-title { font-size: 22px; }
  .bk-cards-list .bk-card-cta { width: 100%; align-self: stretch; min-width: 0; }
}

/* Stagger animation per entrambi i container */
.bk-cards-list .bk-card:nth-child(2) { animation-delay: 0.05s; }
.bk-cards-list .bk-card:nth-child(3) { animation-delay: 0.1s; }
.bk-cards-list .bk-card:nth-child(4) { animation-delay: 0.15s; }
.bk-cards-list .bk-card:nth-child(5) { animation-delay: 0.2s; }
.bk-cards-list .bk-card:nth-child(n+6) { animation-delay: 0.25s; }

/* ══════════════════════════════════════════
   CARD IMMOBILE (match stile .prop-card del sito)
   ══════════════════════════════════════════ */
.bk-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  animation: bkCardIn 0.5s var(--ease-soft) backwards;
}
.bk-cards-grid .bk-card:nth-child(2) { animation-delay: 0.05s; }
.bk-cards-grid .bk-card:nth-child(3) { animation-delay: 0.1s; }
.bk-cards-grid .bk-card:nth-child(4) { animation-delay: 0.15s; }
.bk-cards-grid .bk-card:nth-child(5) { animation-delay: 0.2s; }
.bk-cards-grid .bk-card:nth-child(n+6) { animation-delay: 0.25s; }

.bk-card-disponibile:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-card-hover);
}
.bk-card-occupato,
.bk-card-restrizione {
  opacity: 0.78;
  filter: grayscale(0.35);
}
.bk-card-occupato:hover,
.bk-card-restrizione:hover {
  transform: none;
  box-shadow: var(--sh-card);
}

/* Cover: 4:3 come nel sito (.prop-img aspect-ratio:4/3) */
.bk-card-cover {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 */
  background: #e8e4de;
  overflow: hidden;
}
.bk-card-cover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.bk-card-disponibile:hover .bk-card-cover-img { transform: scale(1.08); }

.bk-card-cover.no-photo::after {
  content: '🏡';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: 0.35;
}

/* Badge stato — stile .prop-badge del sito ma colorato per stato */
.bk-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-navy);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
  text-transform: uppercase;
}
.bk-card-badge.ok   { background: rgba(5, 150, 105, 0.95); color: #fff; }
.bk-card-badge.ko   { background: rgba(220, 38, 38, 0.95); color: #fff; }
.bk-card-badge.warn { background: rgba(199, 132, 68, 0.95); color: #fff; }

/* ══════════════════════════════════════════
   CARD BODY (stile .prop-content)
   ══════════════════════════════════════════ */
.bk-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bk-card-tipo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-terra);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: -2px;
}

.bk-card-title {
  font-family: var(--font-serif);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Meta-row: ospiti / camere / bagni / mq */
.bk-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--c-border-warm);
}
.bk-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.bk-card-meta-ico { font-size: 15px; line-height: 1; }

.bk-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Chips caratteristiche — stile pill cream con accento terracotta */
.bk-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.bk-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--c-cream);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-navy);
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.bk-card-chip:hover {
  background: var(--c-amber-soft);
  border-color: var(--c-terra);
  color: var(--c-terra-dark);
  transform: translateY(-1px);
}
.bk-card-chip-ico { font-size: 13px; line-height: 1; }

/* Distanze — palette blu chiaro (distingue dall'offerta amber) */
.bk-card-dist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 11px 14px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: var(--r-md);
  font-size: 12px;
  color: #075985;
  font-weight: 500;
}
.bk-card-dist-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.bk-card-dist-item strong { color: #0c4a6e; font-weight: 800; }
.bk-card-dist-ico { font-size: 13px; line-height: 1; color: #0369a1; }
.bk-card-dist-lbl { color: #0369a1; font-weight: 500; opacity: 0.85; }

/* CTA card — terracotta pill (stessa logica CTA sito) */
.bk-card-cta {
  margin-top: auto;
  width: 100%;
  padding: 14px 18px;
  background: var(--c-terra);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--sh-soft-terra);
  transition: all 0.3s var(--ease-std);
  text-transform: uppercase;
}
.bk-card-cta:hover {
  background: var(--c-terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-terra);
}
.bk-card-cta:active { transform: translateY(0); }
.bk-card-cta-arrow {
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s var(--ease-std);
}
.bk-card-cta:hover .bk-card-cta-arrow { transform: translateX(4px); }

/* Offerta Prenota Presto — riquadro PROMINENTE navy+oro (in risalto) */
.bk-card-offer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  border: 1px solid var(--c-terra);
  border-left: 5px solid var(--c-terra);
  border-radius: var(--r-md);
  box-shadow:
    0 10px 24px rgba(26, 35, 50, 0.25),
    0 2px 6px rgba(199, 132, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #fff;
  overflow: hidden;
}
/* Bagliore angolo oro per richiamo visivo */
.bk-card-offer::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 195, 98, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
.bk-card-offer > * { position: relative; z-index: 1; }

.bk-card-offer-ico {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(199, 132, 68, 0.5));
}
.bk-card-offer-text { flex: 1; min-width: 0; }
.bk-card-offer-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--c-peach);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.bk-card-offer-price {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.3;
}
.bk-card-offer-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-amber-gold);
  letter-spacing: -0.02em;
  margin: 0 3px;
  text-shadow: 0 2px 6px rgba(255, 195, 98, 0.35);
}
.bk-card-offer-oldprice {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 217, 168, 0.55);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-right: 4px;
}
/* Pill "Risparmi € XX" — evidenzia il risparmio totale (locazione + servizi) */
.bk-card-offer-saved {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  background: var(--c-amber-gold);
  color: var(--c-navy-dark);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 195, 98, 0.4);
  vertical-align: middle;
  white-space: nowrap;
}
.bk-card-offer-price small {
  font-size: 11px;
  color: rgba(255, 217, 168, 0.8);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.bk-card-unavail {
  margin-top: auto;
  padding: 12px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  color: #991b1b;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
.bk-card-restrizione .bk-card-unavail {
  background: var(--c-amber-soft);
  border-color: var(--c-amber-border);
  color: var(--c-amber-text);
}

/* ══════════════════════════════════════════
   CAROSELLO FOTO
   ══════════════════════════════════════════ */
.bk-card-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bk-card-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bk-card-track::-webkit-scrollbar { display: none; }

.bk-card-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.bk-card-slide .bk-card-cover-img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-navy);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s var(--ease);
  z-index: 3;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-card-arrow:hover { background: #fff; opacity: 1; transform: translateY(-50%) scale(1.12); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2); color: var(--c-terra); }
.bk-card-arrow:active { transform: translateY(-50%) scale(0.96); }
.bk-card-arrow-prev { left: 12px; }
.bk-card-arrow-next { right: 12px; }
.bk-card-arrow.disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.bk-card-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.bk-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  pointer-events: auto;
}
.bk-card-dot:hover { background: rgba(255, 255, 255, 0.9); transform: scale(1.3); }
.bk-card-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

.bk-card-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 12px;
  background: rgba(26, 35, 50, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--r-pill);
  z-index: 2;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════
   RESTRIZIONI BANNER (stile bring-block sito)
   ══════════════════════════════════════════ */
.bk-restr-banner {
  grid-column: 1 / -1;
  background: var(--c-amber-soft);
  border: 1px solid var(--c-amber-border);
  border-left: 4px solid #d97706;
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.bk-restr-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--c-amber-textHi);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bk-restr-list {
  margin: 0 0 12px 20px;
  padding: 0;
  font-size: 13.5px;
  color: var(--c-amber-text);
  line-height: 1.6;
}
.bk-restr-list li { margin-bottom: 4px; }
.bk-restr-hint {
  font-size: 12px;
  color: var(--c-amber-textHi);
  font-style: italic;
  padding-top: 10px;
  border-top: 1px dashed var(--c-amber-border);
}

/* ══════════════════════════════════════════
   STATUS
   ══════════════════════════════════════════ */
.bk-status {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: var(--r-xl);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  animation: bkCardIn 0.4s var(--ease-soft);
  box-shadow: var(--sh-card);
}
.bk-status-loading {
  background: #fff;
  color: var(--c-navy);
  border: 1px solid var(--c-border-warm);
}
.bk-status-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.bk-status-empty {
  background: var(--c-amber-soft);
  color: var(--c-amber-text);
  border: 1px solid var(--c-amber-border);
}

.bk-back-btn {
  background: #fff;
  border: 1.5px solid var(--c-border-warm);
  color: var(--c-text-body);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.bk-back-btn:hover {
  background: var(--c-cream);
  border-color: var(--c-terra);
  color: var(--c-terra-dark);
  transform: translateX(-2px);
}

/* ══════════════════════════════════════════
   FOOTER (stile .footer sito)
   ══════════════════════════════════════════ */
.bk-footer {
  background: var(--c-navy-dark);
  color: var(--c-text-mute);
  padding: 50px 5% 30px;
  text-align: center;
  margin-top: 60px;
  font-size: 13.5px;
  position: relative;
}
.bk-footer-inner { max-width: 1200px; margin: 0 auto; }
.bk-footer p { margin: 6px 0; line-height: 1.65; }
.bk-footer strong {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.bk-footer strong::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-terra);
  margin: 8px auto 0;
  opacity: 0.7;
}
.bk-footer-small { font-size: 12px !important; opacity: 0.8; margin-top: 14px !important; }
.bk-footer a { color: var(--c-peach); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.bk-footer a:hover { color: var(--c-amber-gold); text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE (breakpoints del sito)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .bk-cards-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
}
@media (max-width: 720px) {
  .bk-main { margin: -56px auto 40px; }
  .bk-form { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bk-field-small,
  .bk-field-notti { grid-column: span 1; }
  .bk-guests-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bk-cta-primary { grid-column: 1 / -1; font-size: 14px; height: 56px; }
  .bk-tipo-block { padding: 20px 20px 22px; }
  .bk-results-head { padding: 20px 22px; }
}
@media (max-width: 560px) {
  .bk-cards-grid { grid-template-columns: 1fr; gap: 18px; padding: 14px 0 4px; }
  .bk-card-cover { padding-top: 66%; }
  .bk-card-body { padding: 20px 22px 24px; gap: 11px; }
  .bk-card-title { font-size: 22px; }
  .bk-card-arrow { opacity: 0.95; width: 36px; height: 36px; font-size: 20px; }
}
@media (max-width: 420px) {
  .bk-form { grid-template-columns: 1fr; }
  .bk-field-small,
  .bk-field-notti { grid-column: 1; }
  .bk-guests-row { grid-template-columns: 1fr; gap: 10px; }
  .bk-label-hint { display: block; }
}

/* ══════════════════════════════════════════
   PAGINA RISULTATI — header sticky + summary + titolo
   ══════════════════════════════════════════ */
.bk-risultati-header {
  background: var(--c-navy);
  color: #fff;
  padding: 14px 5%;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bk-risultati-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Back button (sx) */
.bk-risultati-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 9px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease-std);
  white-space: nowrap;
}
.bk-risultati-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-2px);
}
.bk-risultati-back svg { flex-shrink: 0; }

/* Brand bicolor (centro) — font un po` piu` grande per dare peso al brand
   nelle pagine successive alla home (risultati, dettaglio, checkout) */
.bk-risultati-brand {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-align: center;
}
.bk-risultati-brand span { color: var(--c-terra); }

/* Contenitore con 2 CTA (WhatsApp + Chiamaci) a destra del brand */
.bk-risultati-ctas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Pulsanti compatti — stessi colori della prima pagina:
   WhatsApp = terracotta (brand) / Chiamaci = glass bianco semi-trasparente */
.bk-risultati-wa,
.bk-risultati-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s var(--ease-std);
  white-space: nowrap;
  border: none;
}
.bk-risultati-wa {
  background: var(--c-terra);
  color: #fff;
  box-shadow: var(--sh-soft-terra);
}
.bk-risultati-wa:hover {
  background: var(--c-terra-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-terra);
}
.bk-risultati-call {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bk-risultati-call:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.bk-risultati-wa svg,
.bk-risultati-call svg { flex-shrink: 0; }

@media (max-width: 760px) {
  .bk-risultati-header { padding: 12px 4%; }
  .bk-risultati-brand { display: none; }
  /* WhatsApp label si puo` nascondere (icona riconoscibile),
     ma il NUMERO DI TELEFONO resta SEMPRE visibile (a prova di fesso). */
  .bk-risultati-wa-label { display: none; }
  .bk-risultati-call-label { font-size: 12px; font-weight: 800; letter-spacing: 0.2px; }
  .bk-risultati-wa { padding: 9px 11px; }
  .bk-risultati-call { padding: 9px 12px; }
}
@media (max-width: 420px) {
  .bk-risultati-call-label { font-size: 11px; }
}
@media (max-width: 420px) {
  .bk-risultati-ctas { gap: 6px; }
}

/* Riepilogo ricerca (fascia cream sotto l'header) */
.bk-summary {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border-warm);
  padding: 18px 5%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.bk-summary-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.bk-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border-warm);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--c-text-body);
  font-weight: 500;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}
.bk-summary-pill svg { color: var(--c-terra); flex-shrink: 0; }
.bk-summary-pill strong {
  color: var(--c-navy);
  font-weight: 700;
  margin-right: 3px;
}
.bk-summary-pill-notti strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--c-terra);
  line-height: 1;
  margin-right: 5px;
}
.bk-summary-arrow {
  color: var(--c-terra);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 560px) {
  .bk-summary { padding: 14px 4%; }
  .bk-summary-pill { font-size: 12.5px; padding: 8px 13px; }
  .bk-summary-arrow { display: none; }
}

/* Titolo risultati (sopra la grid) */
.bk-risultati-title {
  text-align: center;
  margin: clamp(30px, 4.5vw, 50px) auto clamp(20px, 3vw, 32px);
  max-width: 900px;
}
.bk-risultati-title:empty { display: none; }
.bk-risultati-title .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--c-terra);
}
.bk-risultati-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.bk-risultati-title h2 em { color: var(--c-terra); font-style: italic; font-weight: 500; }

/* Sulla pagina risultati lo status va piu` in alto, con margini chiari */
.bk-summary + .bk-main .bk-status { margin-top: clamp(40px, 5vw, 60px); }

/* ══════════════════════════════════════════
   PAGINA DETTAGLIO (dettaglio.html)
   ══════════════════════════════════════════ */

/* Hero: foto grande + info immobile */
.bk-det-hero {
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-warm);
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 1280px;
  animation: bkCardIn 0.6s var(--ease-soft);
}
.bk-det-hero:empty { display: none; }
.bk-det-cover {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  overflow: hidden;
}
.bk-det-cover.no-photo::after {
  content: '🏡';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  opacity: 0.35;
}
.bk-det-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bk-det-hero-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bk-det-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-terra);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.bk-det-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.bk-det-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--c-text-soft);
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border-warm);
}
.bk-det-meta-item { white-space: nowrap; }
.bk-det-hero-desc {
  font-size: 14.5px;
  color: var(--c-text-body);
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
}
@media (max-width: 760px) {
  .bk-det-hero { grid-template-columns: 1fr; }
  .bk-det-cover { min-height: 240px; aspect-ratio: 16/10; }
}

/* Griglia a 2 colonne: info COMPATTA a sx (max ~420px), form LARGA a dx */
.bk-det-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 720px);
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 1380px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .bk-det-grid { grid-template-columns: 1fr; }
}

.bk-det-col { display: flex; flex-direction: column; gap: clamp(10px, 1.5vw, 14px); }
/* Colonna SX info: card MOLTO compatte (padding minimi + font ridotto) */
.bk-det-col-info { max-width: 420px; }
.bk-det-col-info .bk-det-section-head { padding: 8px 14px; gap: 8px; }
.bk-det-col-info .bk-det-section-head h2 { font-size: 15px; letter-spacing: -0.01em; }
.bk-det-col-info .bk-det-section-head svg { width: 16px; height: 16px; }
.bk-det-col-info .bk-det-section-body { padding: 10px 14px; }
/* Politiche di Cancellazione: descrizione testo piu` piccola e padding ridotto */
.bk-det-col-info .bk-det-pol { padding: 8px 0; }
.bk-det-col-info .bk-det-pol-head { margin-bottom: 4px; gap: 6px; }
.bk-det-col-info .bk-det-pol-head h3 { font-size: 13px; }
.bk-det-col-info .bk-det-pol-pill { font-size: 10px; padding: 3px 9px; }
.bk-det-col-info .bk-det-pol p { font-size: 11.5px; line-height: 1.45; }
/* Servizi Inclusi & rate pagamento PIU` COMPATTI dentro col SX:
   font ridotto + padding/gap minimi per stringere verticalmente la card. */
.bk-det-col-info .bk-det-list-check { gap: 0; }
.bk-det-col-info .bk-det-list-check li {
  font-size: 12px;
  line-height: 1.35;
  padding: 4px 0;
  gap: 8px;
}
.bk-det-col-info .bk-det-list-check li svg { width: 14px; height: 14px; margin-top: 2px; }
.bk-det-col-info .bk-det-list-check li strong { font-weight: 600; }
.bk-det-col-info .bk-det-list-check li span { font-size: 11px; line-height: 1.35; }
.bk-det-col-info .bk-det-rate { padding: 6px 10px; gap: 8px; }
.bk-det-col-info .bk-det-rate-n { width: 24px; height: 24px; font-size: 12px; }
.bk-det-col-info .bk-det-rate-info { font-size: 12px; line-height: 1.35; }
.bk-det-col-info .bk-det-rate-perc { font-size: 14px; }
.bk-det-col-info .bk-det-rate-eur { font-size: 16px; }
.bk-det-col-info .bk-det-rate-data { font-size: 11px; }
.bk-det-col-info .bk-det-rate-data strong { font-size: 11px; }
.bk-det-col-info .bk-det-rate-mod { font-size: 11px; padding: 3px 8px; margin-top: 4px; }
.bk-det-col-info .bk-det-rate-list { gap: 4px; }
/* Stack colonna DX: totale + form impilati (NO sticky perche` sono lunghi) */
.bk-det-side-form { position: relative; }
.bk-det-side-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

/* Card sezione (servizi / modpag / politiche) */
.bk-det-section {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-warm);
  overflow: hidden;
  animation: bkCardIn 0.5s var(--ease-soft) backwards;
}
.bk-det-col .bk-det-section:nth-child(2) { animation-delay: 0.08s; }
.bk-det-col .bk-det-section:nth-child(3) { animation-delay: 0.16s; }

.bk-det-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--c-cream) 0%, #fff 100%);
  border-bottom: 1px solid var(--c-border-warm);
}
.bk-det-section-head svg {
  color: var(--c-terra);
  flex-shrink: 0;
}
.bk-det-section-head h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0;
  letter-spacing: -0.015em;
}
.bk-det-section-body { padding: 22px 26px; }
.bk-det-empty {
  color: var(--c-text-mute);
  font-size: 13.5px;
  font-style: italic;
  margin: 0;
  line-height: 1.55;
}

/* Lista servizi (check verde) */
.bk-det-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-det-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border-warm);
}
.bk-det-list-check li:last-child { border-bottom: none; }
.bk-det-list-check li svg {
  color: var(--c-green);
  flex-shrink: 0;
  margin-top: 3px;
}
.bk-det-list-check li strong { color: var(--c-navy); font-weight: 700; }
.bk-det-list-check li span {
  color: var(--c-text-soft);
  font-size: 13px;
  line-height: 1.5;
}
.bk-det-servizio-info { flex: 1; }
.bk-det-servizio-valore {
  display: inline-block;
  padding: 2px 9px;
  background: var(--c-cream);
  color: var(--c-navy);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.bk-det-servizio-valore small { font-size: 10px; font-weight: 500; }
/* Variante "gratis / incluso": oro amber per valorizzare */
.bk-det-servizio-valore.free {
  background: var(--c-amber-soft);
  color: var(--c-amber-textHi);
  border-color: var(--c-amber-border);
}

/* Modalità pagamento */
.bk-det-modpag-rule {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border-warm);
}
.bk-det-modpag-rule:last-child { border-bottom: none; padding-bottom: 0; }
.bk-det-modpag-rule:first-child { padding-top: 0; }
.bk-det-modpag-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bk-det-modpag-title span {
  font-weight: 500;
  text-transform: none;
  color: var(--c-text-soft);
  letter-spacing: 0;
}
.bk-det-rate-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-det-rate {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.bk-det-rate-n {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--c-terra);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.bk-det-rate-info {
  flex: 1;
  font-size: 13.5px;
  color: var(--c-text);
  line-height: 1.5;
}
.bk-det-rate-info strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--c-terra-dark);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.bk-det-rate-info span { color: var(--c-text-soft); }
/* Riga 1 — percentuale + importo + scadenza affiancati */
.bk-det-rate-row1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.bk-det-rate-perc {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-terra-dark);
  letter-spacing: -0.01em;
}
.bk-det-rate-eur {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: #000;            /* IMPORTO NERO come richiesto */
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.bk-det-rate-data {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
}
.bk-det-rate-data strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--c-text);
}
/* Modalita` di pagamento — pill prominente */
.bk-det-rate-mod {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  background: var(--c-amber-soft);
  color: var(--c-amber-textHi);
  border: 1.5px solid var(--c-amber-border);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bk-det-rate-mod-icon { font-size: 15px; line-height: 1; }
.bk-det-rate-info small {
  color: var(--c-text-mute);
  font-size: 11.5px;
  font-style: italic;
}

/* Politiche */
.bk-det-pol {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border-warm);
}
.bk-det-pol:last-child { border-bottom: none; padding-bottom: 0; }
.bk-det-pol:first-child { padding-top: 0; }
.bk-det-pol-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.bk-det-pol-head h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0;
  letter-spacing: -0.015em;
}
.bk-det-pol-pill {
  background: var(--c-amber-soft);
  color: var(--c-amber-text);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-amber-border);
  white-space: nowrap;
}
.bk-det-pol p,
.bk-det-pol-descr {
  margin: 0;
  color: var(--c-text-body);
  font-size: 13.5px;
  line-height: 1.65;
}
.bk-det-pol-descr > div {
  /* Ogni riga della descrizione e' un div separato. white-space:pre-wrap
     consente al testo lungo di andare a capo automaticamente, mentre il
     padding-left + text-indent (inline) gestisce l'hanging indent dei
     bullet (- * • etc.) cosi` il wrap si allinea sotto la prima lettera. */
  white-space: pre-wrap;
}

/* Colonna destra: totale sticky */
.bk-det-side { position: relative; }
.bk-det-side-sticky { position: sticky; top: 90px; }
.bk-det-total-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 28px 28px 26px;
  box-shadow:
    0 14px 40px rgba(26, 35, 50, 0.28),
    0 3px 10px rgba(199, 132, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-terra);
  position: relative;
  overflow: hidden;
  animation: bkCardIn 0.6s var(--ease-soft) 0.1s backwards;
}
.bk-det-total-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 195, 98, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.bk-det-total-card > * { position: relative; z-index: 1; }
.bk-det-total-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: var(--c-peach);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.bk-det-total-amount {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  color: var(--c-amber-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(255, 195, 98, 0.35);
  margin-bottom: 8px;
}
.bk-det-total-note {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255, 217, 168, 0.8);
  line-height: 1.45;
  margin-bottom: 22px;
}
.bk-det-total-note small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.85;
  font-style: italic;
}
.bk-det-total-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Variante: CONTINUA allineata al margine destro (non full-width) */
.bk-det-total-cta-right {
  flex-direction: row;
  justify-content: flex-end;
}
.bk-det-continua {
  padding: 13px 28px;
  white-space: nowrap;
  width: auto;
}
.bk-det-continua svg { transition: transform 0.25s var(--ease-std); }
.bk-det-continua:hover svg { transform: translateX(4px); }

/* Trust badge sotto il bottone PROCEDI AL PAGAMENTO (sicurezza Stripe) —
   versione PROMINENTE per rassicurare il cliente sui pagamenti online. */
.bk-det-trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
/* Headline con scudo verde + titolo grande */
.bk-det-trust-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 4px;
}
.bk-det-trust-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(22,163,74,0.45);
}
.bk-det-trust-title {
  color: #fff;
  font-family: var(--font-serif), Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
/* Card chiara su sfondo scuro per max risalto */
.bk-det-trust-card {
  background: rgba(255,255,255,0.97);
  border-radius: 10px;
  padding: 14px 16px;
  color: #1a2332;
}
.bk-det-trust-lead {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
}
.bk-det-trust-lead strong { color: #0c4a6e; font-weight: 700; }
/* Lista garanzie con check verdi */
.bk-det-trust-points {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bk-det-trust-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.35;
}
.bk-det-trust-points li svg {
  color: #16a34a;
  flex-shrink: 0;
}
.bk-det-trust-points li strong {
  color: #0c4a6e;
  font-weight: 700;
}
/* Metodi accettati */
.bk-det-trust-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}
.bk-det-trust-methods-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 600;
  margin-right: 4px;
}
.bk-det-trust-method {
  display: inline-block;
  padding: 3px 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: 0.3px;
}
/* Loghi metodi pagamento (SVG inline) */
.bk-det-trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  line-height: 0;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
}
.bk-det-trust-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 480px) {
  .bk-det-trust-logo { width: 40px; height: 26px; }
}

/* ══════════════════════════════════════════
   PAGINA CHECKOUT (checkout.html)
   ══════════════════════════════════════════ */

.bk-checkout-title {
  text-align: center;
  max-width: 760px;
  margin: clamp(20px, 3vw, 36px) auto clamp(24px, 3vw, 36px);
}
.bk-checkout-title .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--c-terra);
}
.bk-checkout-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.bk-checkout-title h2 em { color: var(--c-terra); font-style: italic; font-weight: 500; }
.bk-checkout-title p {
  font-size: 14.5px;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin: 0;
}

/* Form body (override section-body del dettaglio per spacing piu` respirato) */
.bk-checkout-form-body { padding: 22px 26px 12px; }
.bk-checkout-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.bk-checkout-field {
  flex: 1 1 calc(50% - 7px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
}
.bk-checkout-field label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-terra);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 7px;
}
.bk-checkout-field input,
.bk-checkout-field select,
#bk-checkout-form textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--c-navy);
  background: var(--c-cream);
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease-std);
  box-sizing: border-box;
}
#bk-checkout-form textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  line-height: 1.55;
  resize: vertical;
}
.bk-checkout-field input:focus,
.bk-checkout-field select:focus,
#bk-checkout-form textarea:focus {
  outline: none;
  border-color: var(--c-terra);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 132, 68, 0.15);
}

.bk-checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.5;
  cursor: pointer;
}
.bk-checkout-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--c-terra);
  cursor: pointer;
}
.bk-checkout-consent a {
  color: var(--c-terra);
  text-decoration: underline;
  font-weight: 600;
}

/* Recap card (colonna dx, sopra il totale) */
.bk-checkout-recap {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-warm);
  margin-bottom: 18px;
}
.bk-checkout-recap-cover {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  overflow: hidden;
}
.bk-checkout-recap-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bk-checkout-recap-body {
  padding: 18px 22px 20px;
}
.bk-checkout-recap-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  color: var(--c-terra);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.bk-checkout-recap-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.bk-checkout-recap-line {
  font-size: 13px;
  color: var(--c-text-body);
  padding: 4px 0;
  line-height: 1.45;
}
.bk-checkout-recap-line strong {
  color: var(--c-navy);
  font-weight: 700;
  margin-right: 4px;
}

/* ══════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════════════════════════
   FEATURES v2 (PACK A/B/C) — sticky filters, wishlist, lightbox,
   compare, quickview, skeleton, social proof, history, testimonials,
   newsletter, trust badges, WhatsApp floating, cheap months, etc.
   ════════════════════════════════════════════════════════════════ */

/* CRITICO: rispetta l'attributo HTML `hidden` su tutti gli elementi
   delle nuove feature. Senza questa regola le `display:flex` sui
   modali (.bk-lightbox, .bk-modal, .bk-compare-bar, #bk-wa-floating)
   sovrascrivono il display:none del browser e gli overlay vuoti
   coprono la pagina al caricamento. */
[hidden] { display: none !important; }

/* ── Filtri sticky bar ── */
.bk-filters-bar {
  position: sticky; top: 0; z-index: 80;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border-warm);
  padding: 10px 16px;
  margin: 0 -16px 12px;
  box-shadow: var(--sh-sm);
}
.bk-fb-inner {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.bk-fb-group { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.bk-fb-lbl {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--c-text-soft);
  margin-right: 4px;
}
.bk-chip {
  background: #fff; color: var(--c-navy);
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-pill);
  padding: 6px 12px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s var(--ease-std);
  font-family: inherit;
}
.bk-chip:hover { border-color: var(--c-terra); color: var(--c-terra-dark); }
.bk-chip.active {
  background: var(--c-terra); color: #fff;
  border-color: var(--c-terra);
  box-shadow: var(--sh-soft-terra);
}
.bk-sort-sel {
  background: #fff; border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md); padding: 6px 10px;
  font-family: inherit; font-size: 13px; color: var(--c-navy);
  cursor: pointer;
}
.bk-fb-reset {
  background: transparent; border: none; color: var(--c-text-soft);
  font-size: 12px; cursor: pointer; text-decoration: underline;
  font-family: inherit;
}
.bk-fb-reset:hover { color: var(--c-terra-dark); }
.bk-fb-sort { margin-left: auto; }
.bk-results-count {
  padding: 8px 4px; font-size: 13px; color: var(--c-text-soft);
  font-weight: 600;
}

/* ── Wishlist heart on card ── */
.bk-card-cover { position: relative; }
.bk-heart {
  position: absolute; top: 12px; right: 12px;
  z-index: 5;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border: none; border-radius: 50%;
  color: rgba(26,35,50,0.4);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s var(--ease), color 0.2s;
}
.bk-heart:hover { transform: scale(1.1); }
.bk-heart.active {
  color: #e11d48;
  animation: bk-heart-pop 0.3s var(--ease);
}
@keyframes bk-heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ── Wishlist pill in header ── */
.bk-wishlist-pill {
  background: #fff;
  border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--c-navy);
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.2s var(--ease-std);
}
.bk-wishlist-pill.active {
  background: #fef2f2; border-color: #fca5a5; color: #e11d48;
}

/* ── Mini-form sticky modify ── */
.bk-modify-btn {
  background: var(--c-terra); color: #fff;
  border: none; border-radius: var(--r-pill);
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  letter-spacing: 0.3px; text-transform: uppercase;
  box-shadow: var(--sh-soft-terra);
  transition: all 0.2s var(--ease-std);
}
.bk-modify-btn:hover { background: var(--c-terra-dark); }
body.bk-scrolled .bk-risultati-header {
  position: sticky; top: 0; z-index: 90;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ── Lightbox ── */
.bk-lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 25, 36, 0.94);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.bk-lb-stage {
  max-width: 92vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.bk-lb-stage img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bk-lb-close, .bk-lb-prev, .bk-lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 32px; line-height: 1; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.bk-lb-close:hover, .bk-lb-prev:hover, .bk-lb-next:hover { background: rgba(255,255,255,0.22); }
.bk-lb-close { top: 20px; right: 20px; }
.bk-lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.bk-lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.bk-lb-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.bk-lb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.2s;
}
.bk-lb-dot.active { background: #fff; }
.bk-lb-counter {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
}

/* ── Compare bar (sticky bottom) ── */
.bk-compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--c-navy); color: #fff;
  z-index: 95; padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.bk-cb-inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.bk-cb-label { font-weight: 700; flex: 1; }
.bk-cb-open {
  background: var(--c-terra); color: #fff; border: none;
  border-radius: var(--r-md); padding: 8px 18px;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.bk-cb-clear {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-md); padding: 8px 14px;
  cursor: pointer; font-family: inherit;
}
.bk-card-extra-actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin: 8px 0;
  padding: 8px 0;
  border-top: 1px dashed var(--c-border-warm);
}
.bk-compare-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--c-text-soft); cursor: pointer;
}
.bk-quickview-btn {
  background: #fff; color: var(--c-terra-dark);
  border: 1.5px solid var(--c-terra);
  border-radius: var(--r-pill); padding: 5px 12px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: inherit; letter-spacing: 0.3px;
  transition: all 0.2s var(--ease-std);
}
.bk-quickview-btn:hover { background: var(--c-terra); color: #fff; }

/* ── Modal generico (compare, quickview, modify) ── */
.bk-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.bk-modal-bg { position: absolute; inset: 0; background: rgba(15,25,36,0.6); }
.bk-modal-box {
  position: relative; background: #fff;
  border-radius: var(--r-lg);
  max-width: 880px; width: 100%;
  max-height: 86vh; overflow: auto;
  padding: 24px; box-shadow: var(--sh-card-hover);
  z-index: 1;
}
.bk-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: transparent; border: none;
  font-size: 28px; line-height: 1; cursor: pointer;
  color: var(--c-text-soft);
}
.bk-modal-close:hover { color: var(--c-navy); }
.bk-modal-box h3 {
  margin: 0 0 16px; font-family: var(--font-serif);
  color: var(--c-navy); font-size: 22px;
}
.bk-cmp-table-wrap { overflow-x: auto; }
.bk-cmp-table { width: 100%; border-collapse: collapse; }
.bk-cmp-table th, .bk-cmp-table td {
  padding: 10px; border-bottom: 1px solid var(--c-border-warm);
  font-size: 13px; vertical-align: top; text-align: left;
}
.bk-cmp-table th { background: var(--c-cream-soft); font-weight: 700; min-width: 110px; }
.bk-cmp-table img { width: 140px; height: 90px; object-fit: cover; border-radius: var(--r-sm); }

/* ── Quickview specifico ── */
.bk-qv-box { max-width: 720px; }
.bk-qv-cover img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--r-md); }
.bk-qv-body h3 { margin-top: 16px; }
.bk-qv-body p { color: var(--c-text-body); line-height: 1.6; margin: 8px 0 14px; }
.bk-qv-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bk-chip-static {
  background: var(--c-cream-warm); color: var(--c-navy);
  border-radius: var(--r-pill); padding: 4px 10px;
  font-size: 12px; font-weight: 600;
}
.bk-qv-body .bk-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-terra); color: #fff;
  border-radius: var(--r-md); padding: 10px 20px;
  text-decoration: none; font-weight: 700;
  box-shadow: var(--sh-soft-terra);
}

/* ── Modify modal form ── */
.bk-mod-form { display: grid; gap: 12px; }
.bk-mod-form label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 700; color: var(--c-text-soft); text-transform: uppercase; }
.bk-mod-form input {
  background: var(--c-cream-soft); border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md); padding: 10px 12px;
  font-family: inherit; font-size: 15px; color: var(--c-navy);
}
.bk-mod-form button[type=submit] {
  background: var(--c-terra); color: #fff; border: none;
  border-radius: var(--r-md); padding: 12px;
  font-weight: 700; font-family: inherit; cursor: pointer;
  box-shadow: var(--sh-soft-terra);
}

/* ── Skeleton ── */
.bk-skel-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--c-border-warm); overflow: hidden;
  margin-bottom: 16px; display: grid;
  grid-template-columns: 1fr 1.6fr; min-height: 220px;
}
.bk-skel-body { padding: 18px; }
.bk-skel { background: linear-gradient(90deg, #efeae0 25%, #f6f1e8 50%, #efeae0 75%); background-size: 200% 100%; animation: bk-skel-pulse 1.4s infinite; border-radius: 6px; }
.bk-skel-cover { width: 100%; height: 100%; min-height: 220px; }
.bk-skel-line { height: 14px; margin-bottom: 10px; }
.bk-skel-row { display: flex; gap: 8px; margin: 10px 0; }
.bk-skel-chip { width: 60px; height: 22px; border-radius: 11px; }
.w40 { width: 40%; } .w50 { width: 50%; } .w70 { width: 70%; } .w90 { width: 90%; }
@keyframes bk-skel-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (max-width: 600px){
  .bk-skel-card { grid-template-columns: 1fr; }
  .bk-skel-cover { min-height: 160px; }
}

/* ── Social proof ── */
.bk-social-proof {
  background: #fffbeb; color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  margin: 10px 0; max-width: fit-content;
}
.bk-sp-eye { font-size: 16px; }

/* ── Trust badges row ── */
.bk-trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  padding: 14px 18px; margin: 14px 0;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 600; color: var(--c-navy);
}
.bk-tb-item { display: inline-flex; align-items: center; gap: 4px; }

/* ── History strip ── */
.bk-history-strip { margin: 32px 0 16px; }
.bk-hs-title { font-family: var(--font-serif); font-size: 20px; color: var(--c-navy); margin-bottom: 12px; }
.bk-hs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.bk-hs-card {
  display: block; text-decoration: none; color: var(--c-navy);
  background: #fff; border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bk-hs-card:hover { transform: translateY(-2px); box-shadow: var(--sh-card); }
.bk-hs-cover { aspect-ratio: 16/10; background: var(--c-cream-warm); overflow: hidden; }
.bk-hs-cover img { width: 100%; height: 100%; object-fit: cover; }
.bk-hs-title-row { padding: 8px 10px; font-size: 13px; font-weight: 700; }

/* ── Testimonials ── */
.bk-testimonials { margin: 36px 0; }
.bk-test-title { font-family: var(--font-serif); font-size: 24px; color: var(--c-navy); text-align: center; margin-bottom: 18px; }
.bk-test-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.bk-test-item {
  background: #fff; border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md); padding: 18px;
  box-shadow: var(--sh-sm);
}
.bk-test-stars { font-size: 15px; margin-bottom: 8px; letter-spacing: 1px; }
.bk-test-text { font-style: italic; color: var(--c-text-body); line-height: 1.55; margin: 0 0 12px; font-size: 14px; }
.bk-test-meta { font-size: 12px; color: var(--c-text-soft); }

/* ── Newsletter ── */
.bk-newsletter {
  margin: 36px 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
  border-radius: var(--r-lg); padding: 28px;
}
.bk-nl-inner { display: grid; gap: 16px; grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
.bk-nl-text h3 { font-family: var(--font-serif); font-size: 22px; color: var(--c-navy); margin: 0 0 6px; }
.bk-nl-text p { color: var(--c-text-body); margin: 0; }
.bk-nl-form { display: grid; gap: 10px; grid-template-columns: 1fr auto; align-items: start; }
.bk-nl-form input[type=email] {
  grid-column: 1; background: #fff; border: 1.5px solid var(--c-border-warm);
  border-radius: var(--r-md); padding: 12px 14px; font-family: inherit; font-size: 14px;
}
.bk-nl-btn {
  grid-column: 2; background: var(--c-terra); color: #fff;
  border: none; border-radius: var(--r-md); padding: 12px 22px;
  font-weight: 700; font-family: inherit; cursor: pointer;
  box-shadow: var(--sh-soft-terra);
}
.bk-nl-priv { grid-column: 1 / -1; font-size: 12px; color: var(--c-text-soft); display: flex; gap: 6px; align-items: center; }
.bk-nl-msg { grid-column: 1 / -1; color: var(--c-green); font-weight: 700; }

/* ── WhatsApp floating ── */
#bk-wa-floating {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: bk-wa-pulse 2.4s infinite;
  transition: transform 0.2s var(--ease);
}
#bk-wa-floating:hover { transform: scale(1.08); }
@keyframes bk-wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}
@media (max-width: 640px){
  #bk-wa-floating { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .bk-compare-bar { bottom: 84px; } /* sopra il pulsante WA */
}

/* ── Cheap months banner ── */
.bk-cheap-months {
  margin: 22px auto; max-width: 900px;
  background: var(--c-cream-warm);
  border-left: 4px solid var(--c-terra);
  border-radius: var(--r-md);
  padding: 16px 20px;
}
.bk-cm-inner { display: flex; align-items: center; gap: 14px; }
.bk-cm-ico { font-size: 26px; }
.bk-cm-text { display: flex; flex-direction: column; gap: 4px; }
.bk-cm-text strong { color: var(--c-navy); font-family: var(--font-serif); font-size: 17px; }
.bk-cm-text span { color: var(--c-text-body); font-size: 13.5px; }

/* ── Live calendar (dettaglio) ── */
.bk-det-calendar {
  margin: 24px 0; padding: 20px;
  background: #fff; border: 1px solid var(--c-border-warm);
  border-radius: var(--r-md);
}
.bk-dc-title { font-family: var(--font-serif); font-size: 18px; color: var(--c-navy); margin-bottom: 14px; }
.bk-dc-months { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.bk-dc-month { background: var(--c-cream-soft); border-radius: var(--r-sm); padding: 12px; }
.bk-dc-mname { font-weight: 700; color: var(--c-navy); margin-bottom: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; }
.bk-dc-dow, .bk-dc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bk-dc-dow span { font-size: 10px; color: var(--c-text-soft); font-weight: 700; text-align: center; }
.bk-dc-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--c-text-body); border-radius: 4px;
}
.bk-dc-cell.bk-dc-empty { background: transparent; }
.bk-dc-cell.in-range { background: var(--c-amber-soft); color: var(--c-amber-textHi); font-weight: 600; }
.bk-dc-cell.start, .bk-dc-cell.end { background: var(--c-terra); color: #fff; font-weight: 800; }
.bk-dc-fb { margin-top: 14px; font-size: 12.5px; color: var(--c-text-soft); font-style: italic; }

/* ── Period compare (dettaglio) ── */
.bk-period-compare {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfccb 100%);
  border-left: 4px solid var(--c-green);
  border-radius: var(--r-md); padding: 14px 18px;
  margin: 16px 0;
}
.bk-pc-inner { display: flex; align-items: center; gap: 12px; }
.bk-pc-ico { font-size: 22px; }
.bk-pc-text { display: flex; flex-direction: column; gap: 2px; }
.bk-pc-text strong { color: var(--c-navy); font-size: 14px; }
.bk-pc-text span { color: var(--c-text-body); font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 768px){
  .bk-filters-bar { padding: 8px 12px; margin: 0 -12px 10px; }
  .bk-fb-inner { gap: 6px 10px; }
  .bk-fb-sort { margin-left: 0; width: 100%; }
  .bk-trust-badges { font-size: 12px; padding: 10px 12px; gap: 6px 12px; }
  .bk-nl-form { grid-template-columns: 1fr; }
  .bk-nl-btn { grid-column: 1; }
  .bk-modal-box { padding: 18px; max-height: 92vh; }
  .bk-cmp-table th { min-width: 90px; }
  .bk-cmp-table img { width: 110px; height: 72px; }
}
@media (max-width: 480px){
  .bk-chip { padding: 5px 10px; font-size: 12px; }
  .bk-heart { width: 34px; height: 34px; top: 10px; right: 10px; }
  .bk-heart svg { width: 18px; height: 18px; }
}
