/* === PALETTE: Tropical (default for daily villas) === */
[data-palette="tropical"] {
  --wbv-bg: #FBFAF6;
  --wbv-surface: #FFFFFF;
  --wbv-text: #2D3530;
  --wbv-text-soft: #6E7872;
  --wbv-text-muted: #9CA39C;
  --wbv-cta: #5C8A6B;
  --wbv-cta-hover: #4D7359;
  --wbv-cta-grad:       linear-gradient(180deg, color-mix(in srgb, var(--wbv-cta) 100%, white 12%) 0%, var(--wbv-cta) 100%);
  --wbv-cta-grad-hover: linear-gradient(180deg, var(--wbv-cta) 0%, color-mix(in srgb, var(--wbv-cta) 100%, black 12%) 100%);
  --wbv-accent: #C8A96A;
  --wbv-pill-mint: #D8E5DA;
  --wbv-pill-peach: #F2E5C7;
  --wbv-pill-sky: #E5EBDF;
  --wbv-divider: #DDE4DC;
  --wbv-shadow-sm: 0 2px 8px rgba(45,53,48,.06);
  --wbv-shadow-md: 0 4px 16px rgba(45,53,48,.10);
}

/* === FONTS: Hybrid Light (DM Serif H1 only @ 44px, Plus Jakarta everywhere else) === */
[data-font="hybrid-light"] { --wbv-font-display: 'Plus Jakarta Sans', sans-serif; --wbv-font-body: 'Plus Jakarta Sans', sans-serif; --wbv-h1-weight: 400; --wbv-h2-weight: 600; }
[data-font="hybrid-light"] .wbv-ddt-h1 { font-family: 'DM Serif Display', serif !important; font-weight: 400 !important; font-size: 44px !important; letter-spacing: -.01em; }

/* === BASE === */
body.wbv-ddt-body { background: var(--wbv-bg); color: var(--wbv-text); font-family: var(--wbv-font-body); font-size: 16px; line-height: 1.6; }
body.wbv-ddt-body img { max-width: 100%; height: auto; display: block; }
body.wbv-ddt-body a { color: var(--wbv-cta); text-decoration: none; }
body.wbv-ddt-body a:hover { color: var(--wbv-cta-hover); }
body.wbv-ddt-body button { font-family: inherit; cursor: pointer; }
body.wbv-ddt-body h1, body.wbv-ddt-body h2, body.wbv-ddt-body h3 { font-family: var(--wbv-font-display); margin: 0; }

.wbv-ddt-wrap-narrow { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.wbv-ddt-breadcrumb { padding: 16px 0 8px; font-size: 13px; }
.wbv-ddt-breadcrumb a { color: var(--wbv-text-soft); }

/* Overlay variant — sits absolute on top-left of the hero gallery */
.wbv-ddt-breadcrumb--overlay {
  position: absolute;
  top: 16px;
  left: 40px;
  z-index: 5;
  padding: 0;
}
.wbv-ddt-breadcrumb--overlay a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--wbv-text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--wbv-shadow-sm);
  text-decoration: none;
  transition: background .15s ease;
}
.wbv-ddt-breadcrumb--overlay a:hover {
  background: rgba(255, 255, 255, 0.75);
}
@media (max-width: 700px) {
  .wbv-ddt-breadcrumb--overlay { top: 10px; left: 16px; }
  .wbv-ddt-breadcrumb--overlay a { padding: 6px 12px; font-size: 12px; }
}

/* HERO */
.wbv-ddt-hero { position: relative; margin: 16px 0 32px; padding: 0 24px; }
@media (min-width: 901px) { .wbv-ddt-hero { margin-bottom: 60px; } }
.wbv-ddt-hero-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 450px; border-radius: 16px; overflow: hidden; max-width: 1600px; margin: 0 auto; }
.wbv-ddt-hero-grid > a { display: block; overflow: hidden; position: relative; min-height: 0; min-width: 0; }
.wbv-ddt-hero-grid > a:first-child { grid-row: 1 / 3; grid-column: 1; }
.wbv-ddt-hero-grid a > img,
body.wbv-ddt-body .wbv-ddt-hero-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wbv-ddt-hero-grid > a:hover img { transform: scale(1.03); }
.wbv-ddt-photos-btn { position: absolute; right: 36px; bottom: 20px; background: white; border: 1px solid var(--wbv-divider); padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--wbv-text); box-shadow: var(--wbv-shadow-sm); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

/* SUB-NAV (sits inside .wbv-ddt-content, sticky at top of viewport) */
.wbv-ddt-subnav { position: sticky; top: 0; z-index: 50; background: var(--wbv-bg); border-bottom: 1px solid var(--wbv-divider); margin: 0 -24px 16px; padding: 0 24px; }
.wbv-ddt-subnav-inner { display: flex; gap: 28px; padding: 12px 0; overflow-x: auto; }
.wbv-ddt-subnav a { color: var(--wbv-text-soft); font-size: 13px; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .15s; }
.wbv-ddt-subnav a:hover { color: var(--wbv-text); }
.wbv-ddt-subnav a.active { color: var(--wbv-text); border-bottom-color: var(--wbv-cta); }

/* COLS */
.wbv-ddt-cols { display: grid; grid-template-columns: 1fr 33%; gap: 50px; align-items: start; padding-bottom: 80px; }
.wbv-ddt-content { min-width: 0; }
.wbv-ddt-sidebar { position: sticky; top: 112px; z-index: 800; }
/* z-index 800 wins over Leaflet's max pane z-index (700) so the picker shell
   inside this sidebar is never covered by the map below. */

/* TITLE BLOCK */
.wbv-ddt-title-block { padding-bottom: 28px; margin-bottom: 20px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; }
.wbv-ddt-title-main { min-width: 0; }
.wbv-ddt-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: .14em; color: var(--wbv-text-muted); text-transform: uppercase; margin: 0 0 12px; }
.wbv-ddt-eyebrow svg { width: 12px; height: 12px; }
.wbv-ddt-h1 { font-size: 44px; font-weight: var(--wbv-h1-weight); line-height: 1.1; color: var(--wbv-text); margin: 0 0 8px; }
.wbv-ddt-caption { font-size: 16px; color: var(--wbv-text-soft); line-height: 1.5; margin: 10px 0 20px 5px; max-width: 640px; }
.wbv-ddt-specs { list-style: none; padding: 0; margin: 0; display: flex; column-gap: 28px; row-gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--wbv-text-soft); }
.wbv-ddt-specs li { display: inline-flex; align-items: center; gap: 8px; }
.wbv-ddt-specs svg { width: 18px; height: 18px; color: var(--wbv-text-muted); flex-shrink: 0; opacity: .85; }
.wbv-ddt-title-actions { display: flex; align-items: center; gap: 8px; padding-top: 8px; }
.wbv-ddt-title-rating { display: inline-flex; align-items: center; gap: 6px; font-family: var(--wbv-font-body); font-size: 14px; font-weight: 600; color: var(--wbv-text); }
.wbv-ddt-title-rating .star { color: var(--wbv-accent); }
.wbv-ddt-title-rating .count { color: var(--wbv-text-soft); font-weight: 400; text-decoration: underline; text-decoration-color: var(--wbv-divider); text-underline-offset: 3px; }
.wbv-ddt-share-icon { background: transparent; border: 0; padding: 8px; border-radius: 50%; color: var(--wbv-text-soft); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s, color .15s; }
.wbv-ddt-share-icon:hover { background: var(--wbv-pill-mint); color: var(--wbv-text); }
.wbv-ddt-share-icon svg { width: 18px; height: 18px; }

/* SECTIONS */
.wbv-ddt-section { padding: 28px 0; border-bottom: 1px solid var(--wbv-divider); scroll-margin-top: 80px; }
/* Visual styles for ALL h2s inside sections (including nested: summary, loc-head, cal-head) */
.wbv-ddt-section h2 { font-size: 22px; font-weight: var(--wbv-h2-weight); color: var(--wbv-text); margin: 0; }
/* Bottom margin only for direct-child h2s. Nested cases keep margin: 0 (via the rule above) and
   set their own spacing through dedicated rules (e.g. summary[open], loc-head). */
.wbv-ddt-section > h2 { margin: 0 0 20px !important; }
.wbv-ddt-description { font-size: 15px; line-height: 1.7; color: var(--wbv-text-soft); margin-bottom: 10px; }
.wbv-ddt-description p { margin: 0 0 14px; }
.wbv-ddt-description.is-collapsed { max-height: 220px; overflow: hidden; position: relative; }
.wbv-ddt-description.is-collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(transparent, var(--wbv-bg)); }
.wbv-ddt-readmore { background: none; border: none; color: var(--wbv-cta); padding: 10px 0; text-decoration: underline; font-size: 14px; font-weight: 500; }

.wbv-ddt-amenities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; font-size: 14px; color: var(--wbv-text-soft); }
.wbv-ddt-amenities li { display: flex; align-items: center; gap: 10px; }
.wbv-ddt-amenities svg { width: 18px; height: 18px; color: var(--wbv-text-muted); flex-shrink: 0; }

/* CALENDAR */
.wbv-ddt-cal-head { display: block; margin-bottom: 8px; }
.wbv-ddt-cal-head h2 { margin: 0 0 8px; }
.wbv-ddt-cal-head-right { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; padding-bottom: 8px; }
.wbv-ddt-cal-dates { font-size: 14px; color: var(--wbv-text); font-weight: 500; }
.wbv-ddt-cal-dates.is-empty { color: var(--wbv-text-muted); font-weight: 400; }
.wbv-ddt-cal-dates.is-empty::before { content: '—'; }
.wbv-ddt-cal-clear { background: transparent; border: 0; color: var(--wbv-text-soft); font-size: 13px; padding: 6px 10px; border-radius: 6px; cursor: pointer; text-decoration: underline; }
.wbv-ddt-cal-clear:hover { color: var(--wbv-cta); }
.wbv-ddt-cal-clear:disabled { color: var(--wbv-text-muted); text-decoration: none; cursor: default; opacity: .5; }
.wbv-ddt-cal-card { background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; padding: 24px; box-shadow: var(--wbv-shadow-sm); margin-top: 8px; }
.wbv-ddt-cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.wbv-ddt-cal-month-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 0 0 16px; }
.wbv-ddt-cal-month-head h3 { flex: 1; margin: 0 !important; }
.wbv-ddt-cal-nav { background: transparent; border: 0; padding: 4px 8px; font-size: 22px; line-height: 1; color: var(--wbv-text); cursor: pointer; border-radius: 6px; transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; }
.wbv-ddt-cal-nav:hover:not(:disabled) { background: color-mix(in srgb, var(--wbv-cta) 12%, transparent); }
.wbv-ddt-cal-nav:disabled { color: var(--wbv-text-muted); cursor: default; opacity: .5; }
/* Desktop: prev only on left month, next only on right month */
.wbv-ddt-cal-month.is-first .wbv-ddt-cal-next,
.wbv-ddt-cal-month.is-last  .wbv-ddt-cal-prev { visibility: hidden; }
.wbv-ddt-cal-month h3 { font-family: var(--wbv-font-body); font-size: 15px; font-weight: 600; text-align: center; margin: 0 0 16px !important; color: var(--wbv-text); }
.wbv-ddt-cal-month table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.wbv-ddt-cal-month th { font-size: 11px; font-weight: 500; color: var(--wbv-text-muted); padding: 0 0 12px; text-transform: uppercase; letter-spacing: .06em; }
.wbv-ddt-cal-month td { padding: 2px; vertical-align: top; }
.wbv-ddt-cal-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; transition: background .15s; }
.wbv-ddt-cal-day:hover:not(.is-blocked):not(.is-empty) { background: var(--wbv-pill-mint); }
.wbv-ddt-cal-day .d { font-size: 14px; font-weight: 500; color: var(--wbv-text); line-height: 1; }
.wbv-ddt-cal-day .p { font-size: 10px; color: var(--wbv-text-soft); margin-top: 3px; line-height: 1; }
.wbv-ddt-cal-day.is-blocked { cursor: not-allowed; }
.wbv-ddt-cal-day.is-blocked .d { text-decoration: line-through; color: var(--wbv-text-muted); }
.wbv-ddt-cal-day.is-blocked .p { display: none; }
.wbv-ddt-cal-day.is-empty { cursor: default; }
.wbv-ddt-cal-day.is-selected { background: var(--wbv-cta); }
.wbv-ddt-cal-day.is-selected .d, .wbv-ddt-cal-day.is-selected .p { color: white; }
.wbv-ddt-cal-day.is-in-range { background: rgba(92,138,107,.18); border-radius: 0; }

/* REVIEWS */
.wbv-ddt-reviews-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; padding: 20px 24px; background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; }
.wbv-ddt-reviews-rating { font-family: var(--wbv-font-display); font-size: 36px; font-weight: var(--wbv-h2-weight); color: var(--wbv-text); line-height: 1; }
.wbv-ddt-reviews-rating .stars { font-size: 16px; color: var(--wbv-accent); margin-top: 4px; letter-spacing: 2px; }
.wbv-ddt-reviews-meta { font-size: 14px; color: var(--wbv-text-soft); }
.wbv-ddt-reviews-meta strong { color: var(--wbv-text); display: block; font-size: 16px; margin-bottom: 2px; }
.wbv-ddt-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wbv-ddt-review { padding: 18px; background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; }
.wbv-ddt-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.wbv-ddt-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wbv-pill-mint); color: var(--wbv-cta); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; }
.wbv-ddt-review-name { font-weight: 600; font-size: 14px; color: var(--wbv-text); margin: 0 0 2px; }
.wbv-ddt-review-date { font-size: 12px; color: var(--wbv-text-muted); margin: 0; }
.wbv-ddt-review-stars { color: var(--wbv-accent); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 8px; }
.wbv-ddt-review-text { font-size: 14px; color: var(--wbv-text-soft); line-height: 1.6; margin: 0; }
.wbv-ddt-reviews-cta { margin: 20px 0 0; font-size: 14px; }
.wbv-ddt-reviews-cta a { color: var(--wbv-cta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.wbv-ddt-reviews-cta a:hover { color: var(--wbv-text); }

/* "New listing" badge — shown in title actions when no rating + no reviews yet */
.wbv-ddt-new-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--wbv-pill-mint);
  color: var(--wbv-cta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* LOCATION */
.wbv-ddt-loc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.wbv-ddt-loc-head h2 { margin: 0; }
.wbv-ddt-loc-desc { color: var(--wbv-text-soft); font-size: 15px; line-height: 1.6; margin-top: 16px; }
.wbv-ddt-loc-desc p { margin: 0 0 12px; }
.wbv-ddt-loc-desc p:last-child { margin-bottom: 0; }
.wbv-ddt-direction { font-size: 14px; font-weight: 500; white-space: nowrap; padding-right: 10px; }
/* Sub-heading inside the Overview block (e.g. "Other things to note") — matches body
   color/size, uppercase + tracked for label feel, breathing room above and below. */
.wbv-ddt-description .wbv-ddt-desc-label {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wbv-text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin: 28px 0 10px;
}
.wbv-ddt-distances { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.wbv-ddt-dist-pill { background: var(--wbv-pill-mint); color: var(--wbv-text); padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.wbv-ddt-dist-pill svg { width: 12px; height: 12px; opacity: .7; }

/* HOUSE RULES — structured cards + remaining text */
.wbv-ddt-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 24px; }
.wbv-ddt-rule-card { background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; padding: 20px; }
.wbv-ddt-rule-card .icon { width: 36px; height: 36px; border-radius: 50%; background: var(--wbv-pill-mint); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.wbv-ddt-rule-card .icon svg { width: 20px; height: 20px; color: var(--wbv-cta); }
.wbv-ddt-rule-card h3 { font-size: 12px; margin: 0 0 4px; color: var(--wbv-text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-family: var(--wbv-font-body); }
.wbv-ddt-rule-card .time { font-size: 22px; font-weight: 600; color: var(--wbv-text); margin-bottom: 8px; font-family: var(--wbv-font-display); }
.wbv-ddt-rule-card p { font-size: 13px; color: var(--wbv-text-soft); margin: 0; line-height: 1.5; }
.wbv-ddt-other-rules { font-size: 14px; color: var(--wbv-text-soft); line-height: 1.7; margin-top: 8px; }
.wbv-ddt-other-rules p { margin: 0 0 10px; }

/* AMENITIES OVERLAY */
.wbv-ddt-amen-link { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--wbv-cta); text-decoration: underline; cursor: pointer; background: transparent; border: 0; padding: 0; font-family: inherit; font-weight: 500; }
.wbv-ddt-amen-link:hover { color: var(--wbv-cta-hover); }
.wbv-ddt-amen-modal { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 24px; }
.wbv-ddt-amen-modal[hidden] { display: none; }
.wbv-ddt-amen-modal-inner { background: var(--wbv-surface); border-radius: 16px; max-width: 720px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 32px; position: relative; }
.wbv-ddt-amen-modal-inner h3 { font-family: var(--wbv-font-display); font-size: 24px; font-weight: var(--wbv-h2-weight); margin: 0 0 20px; color: var(--wbv-text); }
.wbv-ddt-amen-modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; color: var(--wbv-text-soft); cursor: pointer; }
.wbv-ddt-amen-modal-close:hover { background: var(--wbv-pill-mint); color: var(--wbv-text); }
.wbv-ddt-amen-modal-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; font-size: 14px; color: var(--wbv-text-soft); }
.wbv-ddt-amen-modal-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--wbv-divider); }
.wbv-ddt-amen-modal-list svg { width: 16px; height: 16px; color: var(--wbv-text-muted); flex-shrink: 0; }

/* DETAILS FOLD */
details.wbv-ddt-fold > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 0; margin: 0; gap: 16px; }
details.wbv-ddt-fold > summary::-webkit-details-marker { display: none; }
details.wbv-ddt-fold > summary .wbv-ddt-fold-icon { width: 32px; height: 32px; position: relative; flex-shrink: 0; transition: transform .25s; }
details.wbv-ddt-fold > summary .wbv-ddt-fold-icon::before { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-right: 1.5px solid var(--wbv-text-soft); border-bottom: 1.5px solid var(--wbv-text-soft); transform: translate(-50%, -65%) rotate(45deg); }
details.wbv-ddt-fold[open] > summary .wbv-ddt-fold-icon { transform: rotate(180deg); }
details.wbv-ddt-fold > summary h2 { margin-bottom: 0; }
details.wbv-ddt-fold[open] > summary h2 { margin-bottom: 16px; }
details.wbv-ddt-fold > .wbv-ddt-fold-body { padding-top: 8px; font-size: 14px; color: var(--wbv-text-soft); line-height: 1.6; }

/* INFO CTA */
.wbv-ddt-info-cta { background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 16px; padding: 32px; text-align: center; }
.wbv-ddt-info-cta h3 { font-family: var(--wbv-font-display); font-size: 22px; font-weight: var(--wbv-h2-weight); margin: 0 0 8px; color: var(--wbv-text); }
.wbv-ddt-info-cta p { color: var(--wbv-text-soft); font-size: 14px; margin: 0 0 20px; }
.wbv-ddt-info-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--wbv-cta); color: white !important; border-radius: 8px; font-size: 14px; font-weight: 500; }
.wbv-ddt-info-cta-btn:hover { background: var(--wbv-cta-hover); }

/* PRICE CARD (sidebar) */
.wbv-ddt-card { background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; padding: 24px; box-shadow: var(--wbv-shadow-md); }
.wbv-ddt-card-label { font-size: 12px; color: var(--wbv-text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 6px; }
.wbv-ddt-card-amount { font-family: var(--wbv-font-display); font-size: 28px; font-weight: var(--wbv-h2-weight); line-height: 1.2; color: var(--wbv-text); margin-bottom: 4px; }
.wbv-ddt-card-suffix { font-family: var(--wbv-font-body); font-size: 14px; color: var(--wbv-text-soft); font-weight: normal; }
.wbv-ddt-card-meta { font-size: 14px; color: var(--wbv-text-soft); margin: 0 0 18px; min-height: 18px; }
/* Airbnb-style bordered booking fields */
.wbv-ddt-card-fields { margin-bottom: 16px; position: relative; }
.wbv-ddt-fields-box { border: 1px solid var(--wbv-divider); border-radius: 8px; overflow: hidden; }
/* Date row punches through the picker overlay — only the two date cells, not the whole box.
   Carries its own border so the visible card outline survives when picker is open. */
.wbv-ddt-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1010;
  background: #fff;
  border: 1px solid var(--wbv-divider);
  border-radius: 8px 8px 0 0;
  margin: -1px -1px 0;  /* overlap the fields-box border so closed state is unchanged */
}
.wbv-ddt-fields-row .wbv-ddt-field-cell + .wbv-ddt-field-cell { border-left: 1px solid var(--wbv-divider); }
.wbv-ddt-field-cell { display: block; padding: 10px 14px; cursor: pointer; transition: background .15s, box-shadow .15s; border-radius: 7px; }
.wbv-ddt-field-cell:hover { background: var(--wbv-bg); }
/* Active field — 2px outline in CTA color shows which field is being edited */
.wbv-ddt-field-cell.is-active { box-shadow: 0 0 0 2px var(--wbv-cta); position: relative; z-index: 2; background: #fff; }
.wbv-ddt-field-cell.is-active input { caret-color: var(--wbv-cta); }
.wbv-ddt-field-cell span { display: block; font-size: 11px; color: var(--wbv-text); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 2px; }
.wbv-ddt-field-cell input { width: 100%; padding: 0; border: 0; background: transparent; font-size: 14px; font-family: inherit; color: var(--wbv-text); outline: none; cursor: pointer; }
.wbv-ddt-field-cell input::placeholder { color: var(--wbv-text-muted); }
.wbv-ddt-field-row { border-top: 1px solid var(--wbv-divider); }
.wbv-ddt-book-btn { width: 100%; padding: 14px; background: var(--wbv-cta-grad); color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.wbv-ddt-book-btn:hover { background: var(--wbv-cta-grad-hover); }
.wbv-ddt-book-btn:disabled { opacity: .5; cursor: not-allowed; }
.wbv-ddt-card-note { font-size: 12px; color: var(--wbv-text-muted); text-align: center; margin: 12px 0 0; }
.wbv-ddt-card-error { font-size: 13px; color: #b42; margin: 8px 0; padding: 8px 10px; background: #fff5f5; border-radius: 6px; }

/* NEARBY */
.wbv-ddt-nearby-section { padding-top: 32px; }
.wbv-ddt-nearby { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.wbv-ddt-nearby-card { background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; overflow: hidden; transition: transform .2s, box-shadow .2s; color: var(--wbv-text); }
.wbv-ddt-nearby-card:hover { transform: translateY(-2px); box-shadow: var(--wbv-shadow-md); color: var(--wbv-text); }
.wbv-ddt-nearby-card .img { aspect-ratio: 4/3; background: var(--wbv-divider) center/cover; }
.wbv-ddt-nearby-card .body { padding: 14px; }
.wbv-ddt-nearby-card .city { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--wbv-text-muted); margin-bottom: 4px; }
.wbv-ddt-nearby-card h4 { margin: 0 0 6px; font-family: var(--wbv-font-display); font-size: 18px; font-weight: var(--wbv-h2-weight); color: var(--wbv-text); }
.wbv-ddt-nearby-card .meta { font-size: 13px; color: var(--wbv-text-soft); }
.wbv-ddt-nearby-card .price { font-size: 13px; color: var(--wbv-text); margin-top: 8px; }

/* MODAL — removed; we now use the sitewide #wbv-lightbox from "WBV - 00 ADMIN - Gallery System (Authoritative)" */

/* WHATSAPP FLOATER */
.wbv-ddt-wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 100; width: 56px; height: 56px; border-radius: 50%; background: var(--wbv-cta); color: white !important; display: flex; align-items: center; justify-content: center; box-shadow: var(--wbv-shadow-md); transition: transform .15s, background .15s; }
.wbv-ddt-wa-float:hover { transform: scale(1.06); background: var(--wbv-cta-hover); color: white !important; }
.wbv-ddt-wa-float svg { width: 30px; height: 30px; }

/* MOBILE BAR — bestay-style: 3 fields row + price/BOOK row */
.wbv-ddt-mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; background: var(--wbv-surface); border-top: 1px solid var(--wbv-divider); box-shadow: 0 -4px 16px rgba(0,0,0,.06); flex-direction: column; }
.wbv-ddt-mbar-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--wbv-divider); }
.wbv-ddt-mbar-field { display: flex; align-items: center; justify-content: center; gap: 8px; background: transparent; border: 0; padding: 14px 8px; font-size: 14px; color: var(--wbv-text); cursor: pointer; font-family: inherit; min-width: 0; transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1); }
.wbv-ddt-mbar-field + .wbv-ddt-mbar-field { border-left: 1px solid var(--wbv-divider); }
.wbv-ddt-mbar-field:hover, .wbv-ddt-mbar-field:active { background: color-mix(in srgb, var(--wbv-cta) 8%, transparent); }
.wbv-ddt-mbar-field svg { flex-shrink: 0; color: var(--wbv-cta); }
.wbv-ddt-mbar-field span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wbv-ddt-mbar-cta { display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.wbv-ddt-mbar-price { flex: 1; min-width: 0; }
.wbv-ddt-mbar-price .from { font-size: 11px; color: var(--wbv-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.wbv-ddt-mbar-price .amt { font-family: var(--wbv-font-display); font-size: 18px; font-weight: var(--wbv-h2-weight); color: var(--wbv-text); line-height: 1.2; }
.wbv-ddt-mbar-price .amt span { font-family: var(--wbv-font-body); font-size: 12px; color: var(--wbv-text-soft); font-weight: 400; }
.wbv-ddt-mbar-book { padding: 12px 20px; background: var(--wbv-cta-grad); color: white; border: 0; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; flex-shrink: 0; transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; }
.wbv-ddt-mbar-book:hover { background: var(--wbv-cta-grad-hover); }

/* GUESTS OVERLAY — popover above the mobile bar */
.wbv-ddt-guests-overlay { display: none; position: fixed; left: 16px; right: 16px; bottom: 132px; z-index: 1101; background: var(--wbv-surface); border: 1px solid var(--wbv-divider); border-radius: 12px; padding: 18px 20px; box-shadow: var(--wbv-shadow-md); }
@media (max-width: 900px) {
  .wbv-ddt-guests-overlay:not([hidden]) { display: block; }
}
.wbv-ddt-guests-overlay .row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--wbv-divider); margin-bottom: 12px; }
.wbv-ddt-guests-overlay .label { font-size: 18px; font-weight: 600; color: var(--wbv-text); }
.wbv-ddt-guests-overlay .stepper { display: flex; align-items: center; gap: 16px; }
.wbv-ddt-guests-overlay .stepper .step { width: 36px; height: 36px; border-radius: 50%; background: transparent; border: 1.5px solid var(--wbv-cta); color: var(--wbv-cta); font-size: 20px; line-height: 1; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; padding: 0; transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1); }
.wbv-ddt-guests-overlay .stepper .step:hover:not(:disabled) { background: var(--wbv-cta); color: white; }
.wbv-ddt-guests-overlay .stepper .step:disabled { opacity: .35; cursor: default; }
.wbv-ddt-guests-overlay .stepper .count { min-width: 24px; text-align: center; font-size: 18px; font-weight: 600; color: var(--wbv-text); }
.wbv-ddt-guests-overlay .help { margin: 0; font-size: 13px; color: var(--wbv-text-soft); display: flex; align-items: center; gap: 6px; }
.wbv-ddt-guests-overlay .help .dot { color: var(--wbv-text-muted); font-size: 14px; }

/* Picker (.wbv-picker-* and .litepicker .*) styles moved to wbv-picker.css.
   Loaded automatically by wbv_date_picker_inline_script(). */

/* RESPONSIVE — inline price calendar switches to single month at TRUE mobile (<=700px)
   so tablets keep the 2-month view */
@media (max-width: 700px) {
  .wbv-ddt-cal-wrap { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
  .wbv-ddt-cal-month.is-last { display: none; }
  .wbv-ddt-cal-month.is-first .wbv-ddt-cal-next { visibility: visible; }
  .wbv-ddt-cal-month { max-width: 360px; width: 100%; }
}

@media (max-width: 900px) {
  .wbv-ddt-cols { grid-template-columns: 1fr; gap: 24px; padding-bottom: 20px; }
  .wbv-ddt-cal-nav { font-size: 25px; padding: 6px 12px; }
  /* Sidebar dissolves on mobile — its children become direct grid items.
     Booking card is moved off-screen (not display:none) so its descendants
     including the picker shell stay rendered. The shell's own position:fixed
     (rule below) escapes the off-screen parent and renders fullscreen. */
  .wbv-ddt-sidebar { display: contents; }
  .wbv-ddt-sidebar > .wbv-ddt-card {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .wbv-ddt-content { order: 1; }
  .wbv-ddt-hero { padding: 0 5px; }
  .wbv-ddt-hero-grid { display: flex; flex-direction: row; height: 280px; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; border-radius: 12px; scrollbar-width: none; }
  .wbv-ddt-hero-grid::-webkit-scrollbar { display: none; }
  .wbv-ddt-hero-grid > a { flex: 0 0 100%; scroll-snap-align: center; grid-row: auto !important; grid-column: auto !important; }
  .wbv-ddt-photos-btn { right: 16px; bottom: 12px; }
  .wbv-ddt-title-block { grid-template-columns: 1fr; position: relative; padding-right: 48px; }
  .wbv-ddt-title-actions { position: absolute; top: 0; right: 0; flex-direction: column; align-items: flex-end; gap: 6px; padding-top: 0; }
  .wbv-ddt-h1 { font-size: 32px; }
  [data-font="hybrid-light"] .wbv-ddt-h1 { font-size: 32px !important; }
  .wbv-ddt-amenities { grid-template-columns: 1fr; }
  .wbv-ddt-cal-card { padding: 16px; }
  .wbv-ddt-reviews-grid { grid-template-columns: 1fr; }
  .wbv-ddt-nearby { grid-template-columns: 1fr; }
  .wbv-ddt-mobile-bar { display: flex; }
  .wbv-ddt-wa-float { bottom: 120px; width: 55px; height: 55px; right: 16px; }
  .wbv-ddt-wa-float svg { width: 26px; height: 26px; }
  body.wbv-ddt-body { padding-bottom: 132px; }
}

/* (Picker modal styles moved to wbv-picker.css — auto-loaded by the picker snippet.) */

/* (Lightbox styles, including mobile overrides, live in wbv_added_styles.min.css —
   sitewide.) */