:root {
  --bg: #fbfaf7;
  --fg: #23201b;
  --muted: #8a8378;
  --accent: #3f6b4c;
  --card: #ffffff;
  --line: #e7e2d8;
}
* { box-sizing: border-box; }
body { margin: 0; font: 16px/1.55 system-ui, sans-serif; background: var(--bg); color: var(--fg); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 880px; margin: 0 auto; padding: 24px 20px 64px; }
.site-header, .site-footer { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.site-footer { border: 0; border-top: 1px solid var(--line); color: var(--muted); }
.brand { font-weight: 700; font-size: 20px; color: var(--fg); }
h1 { font-size: 28px; margin: 0 0 20px; }
.muted { color: var(--muted); }

.offer-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.offer-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.offer-card a { display: block; padding: 16px; color: var(--fg); }
.offer-card h2 { font-size: 18px; margin: 0 0 8px; }
.price { font-weight: 600; margin: 4px 0; }
.price .unit { color: var(--muted); font-weight: 400; font-size: 13px; }
.tag { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--accent); }

.offer .back { display: inline-block; margin-bottom: 12px; font-size: 14px; }
.gallery { display: flex; gap: 8px; overflow-x: auto; margin: 16px 0; }
.gallery img { height: 200px; border-radius: 10px; }
.description { margin: 16px 0; }
.booking, .inquiry { background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; margin-top: 24px; }
.booking h2, .inquiry h2 { margin-top: 0; font-size: 20px; }
label { display: block; margin: 10px 0; font-size: 14px; }
input, textarea { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; }
input[type=date], input[type=tel] { width: auto; min-width: 200px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.btn { margin-top: 12px; padding: 10px 18px; border: 0; border-radius: 8px; background: var(--accent);
  color: #fff; font: inherit; cursor: pointer; }
.btn:hover { opacity: .92; }
.booking-result, .inquiry-result { margin: 12px 0 0; min-height: 1.2em; color: var(--accent); }

/* --- Booking widget ---------------------------------------------------------
   The widget's own stylesheet (loaded from the cloud) is self-contained and driven by
   --bw-* tokens, each of which falls back to a Bootstrap variable:
   `--bw-accent: var(--bs-primary, #0d6efd)`. So the way to restyle it is to DEFINE
   those Bootstrap variables — not to re-declare --bw-* here, which lands at the same
   specificity and loses, because booking.css is emitted inside the page and therefore
   loads after this file. Without this the widget renders Bootstrap blue on a green site. */
:root {
  --bs-primary: var(--accent);
  --bs-primary-rgb: 63, 107, 76;
  --bs-body-bg: var(--card);
  --bs-body-color: var(--fg);
  --bs-emphasis-color: var(--fg);
  --bs-secondary-color: var(--muted);
  --bs-tertiary-bg: var(--bg);
  --bs-secondary-bg: #eeece5;
  --bs-border-color: var(--line);
  --bs-border-color-translucent: var(--line);
}
/* Spacing lives under `.bw-cols` on purpose — one class deeper than booking.css's own
   `.booking-widget .bw-*` rules. Upstream the markup sits in a Bootstrap grid and gets
   its rhythm from utility classes (`mb-4`, `mt-3`), which a thin client does not ship;
   upstream `.bw-lead` is even `margin: .75rem auto 0`, i.e. NO bottom margin, so at equal
   specificity every hint would sit flush against the next heading — booking.css is
   emitted inside the page and therefore always loads after this file. */
.booking-widget .bw-cols { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .booking-widget .bw-cols { grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); align-items: start; }
  /* The extras sit at the foot of the left column — keep the live total in view. */
  .booking-widget .bw-cols .bw-side { position: sticky; top: 1.5rem; }
}
.booking-widget .bw-cols .bw-lead { margin: 0 0 24px; max-width: none; font-size: 13px; }
.booking-widget .bw-cols .bw-rooms, .booking-widget .bw-cols .bw-dates,
.booking-widget .bw-cols .bw-slots, .booking-widget .bw-cols .bw-summary,
.booking-widget .bw-cols .bw-input { margin-bottom: 16px; }
.booking-widget .bw-cols .bw-time-head { display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px; }
.booking-widget .bw-cols .bw-centered { text-align: center; }
.booking-widget .bw-cols .bw-addons { margin-top: 28px; }
.booking-widget .bw-cols .bw-submit { width: 100%; margin-top: 0; }
/* The widget's own number inputs must not inherit the theme's full-width form rule. */
.booking-widget .bw-cols input.bw-addon-qty, .booking-widget .bw-cols input.bw-guests { width: auto; }
