.bsb-booking-shell,
.bsb-confirmation,
.bsb-compact {
  --bsb-brown: #402722;
  --bsb-cream: #FEEAC9;
  --bsb-surface: #FFFDF8;
  --bsb-ink: #2d1d19;
  --bsb-muted: #806e62;
  --bsb-line: #dfcdb6;
  --bsb-soft: #f7f0e5;
  font-family: "Roboto Condensed", Arial, sans-serif;
  color: var(--bsb-ink);
  box-sizing: border-box;
}
.bsb-booking-shell *, .bsb-confirmation *, .bsb-compact * { box-sizing: border-box; }
.bsb-booking-shell { max-width: 1040px; margin: 0 auto; background: var(--bsb-surface); border: 1px solid var(--bsb-line); box-shadow: 0 18px 54px rgba(64,39,34,.10); }
.bsb-booking-header { background: var(--bsb-brown); color: var(--bsb-cream); padding: 42px clamp(24px,5vw,64px); }
.bsb-kicker { margin: 0 0 12px; font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.bsb-booking-header h2, .bsb-confirmation h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; margin: 0; line-height: 1.05; }
.bsb-booking-header h2 { color: var(--bsb-cream); font-size: clamp(38px,6vw,64px); }
.bsb-booking-header > p:last-child { max-width: 650px; margin: 14px 0 0; font-size: 18px; line-height: 1.5; color: #fff6e8; }
.bsb-booking-form { padding: clamp(24px,5vw,56px); }
.bsb-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.bsb-field--wide { grid-column: 1 / -1; }
.bsb-field label { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 19px; margin-bottom: 8px; color: var(--bsb-brown); }
.bsb-field label span { color: #a34a34; }
.bsb-field input[type="text"], .bsb-field input[type="email"], .bsb-field input[type="tel"], .bsb-field input[type="number"], .bsb-field textarea { width: 100%; min-height: 50px; border: 1px solid #cdb9a2; background: #fff; color: var(--bsb-ink); border-radius: 0; padding: 12px 14px; font: inherit; font-size: 16px; outline: none; transition: border-color .18s, box-shadow .18s; }
.bsb-field textarea { min-height: 120px; resize: vertical; }
.bsb-field input:focus, .bsb-field textarea:focus { border-color: var(--bsb-brown); box-shadow: 0 0 0 3px rgba(64,39,34,.10); }
.bsb-field small { display: block; color: var(--bsb-muted); margin-top: 7px; line-height: 1.4; }
.bsb-calendar { border: 1px solid var(--bsb-line); background: #fff; padding: 18px; }
.bsb-calendar-nav { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; margin-bottom: 16px; }
.bsb-calendar-nav strong { text-align: center; font-family: Georgia,serif; font-size: 22px; font-weight: 400; color: var(--bsb-brown); }
.bsb-cal-arrow { width: 42px; height: 42px; border: 1px solid var(--bsb-line); background: var(--bsb-soft); color: var(--bsb-brown); cursor: pointer; font-size: 20px; }
.bsb-cal-arrow:disabled { opacity: .35; cursor: default; }
.bsb-calendar-month { display: none; }
.bsb-calendar-month.is-active { display: block; }
.bsb-calendar-weekdays, .bsb-calendar-days { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 6px; }
.bsb-calendar-weekdays { margin-bottom: 7px; color: var(--bsb-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; text-align: center; }
.bsb-cal-day { aspect-ratio: 1/1; min-height: 42px; border: 1px solid #eadfce; background: #fffdf8; color: var(--bsb-brown); cursor: pointer; font-family: Georgia,serif; font-size: 16px; transition: background .15s,color .15s,border-color .15s,transform .15s; }
.bsb-cal-day:hover:not(:disabled) { border-color: var(--bsb-brown); transform: translateY(-1px); }
.bsb-cal-day.is-selected { background: var(--bsb-brown); color: var(--bsb-cream); border-color: var(--bsb-brown); }
.bsb-cal-day.is-disabled { opacity: .28; filter: grayscale(1) blur(.15px); cursor: not-allowed; background: #eee9e3; }
.bsb-time-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 10px; }
.bsb-time { border: 1px solid var(--bsb-line); background: #fff; color: var(--bsb-brown); min-height: 84px; padding: 14px 10px; cursor: pointer; text-align: center; transition: .16s ease; }
.bsb-time strong { display: block; font-family: Georgia,serif; font-size: 19px; font-weight: 400; }
.bsb-time span { display: block; margin-top: 7px; font-size: 12px; color: var(--bsb-muted); }
.bsb-time:not(:disabled):hover { border-color: var(--bsb-brown); transform: translateY(-1px); }
.bsb-time.is-selected { background: var(--bsb-brown); color: var(--bsb-cream); border-color: var(--bsb-brown); }
.bsb-time.is-selected span { color: #fff1db; }
.bsb-time:disabled { opacity: .48; cursor: not-allowed; background: #f0ece7; }
.bsb-time.is-full { text-decoration: line-through; }
.bsb-form-summary { margin: 28px 0 18px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--bsb-line); border-bottom: 1px solid var(--bsb-line); }
.bsb-form-summary > div { padding: 16px 18px; border-right: 1px solid var(--bsb-line); }
.bsb-form-summary > div:last-child { border-right: 0; }
.bsb-form-summary span { display: block; font-size: 12px; color: var(--bsb-muted); text-transform: uppercase; letter-spacing: .08em; }
.bsb-form-summary strong { display: block; margin-top: 5px; font-family: Georgia,serif; font-weight: 400; font-size: 18px; color: var(--bsb-brown); }
.bsb-form-error { background: #fff0eb; border: 1px solid #d89c88; color: #7d2e1d; padding: 13px 15px; margin: 0 0 16px; }
.bsb-submit { width: 100%; border: 0; background: var(--bsb-brown); color: var(--bsb-cream); padding: 17px 24px; font-family: "Roboto Condensed",Arial,sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; transition: transform .15s,opacity .15s; }
.bsb-submit:hover { transform: translateY(-1px); }
.bsb-submit:disabled { opacity: .6; cursor: wait; }
.bsb-form-footnote { margin: 10px 0 0; text-align: center; color: var(--bsb-muted); font-size: 13px; }

.bsb-confirmation { max-width: 900px; margin: 40px auto; padding: clamp(28px,5vw,64px); background: #f7f0e5; border-top: 8px solid var(--bsb-brown); }
.bsb-confirmation .bsb-kicker { color: var(--bsb-brown); }
.bsb-confirmation h1 { font-size: clamp(40px,6vw,66px); color: var(--bsb-brown); }
.bsb-confirmation-lead { font-size: 18px; max-width: 660px; color: var(--bsb-muted); line-height: 1.55; }
.bsb-confirmation-card { margin-top: 28px; background: #fffdf8; border: 1px solid var(--bsb-line); }
.bsb-confirmation-ref { background: var(--bsb-brown); color: var(--bsb-cream); padding: 12px 18px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.bsb-confirmation-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.bsb-confirmation-grid > div { padding: 18px; border-bottom: 1px solid var(--bsb-line); border-right: 1px solid var(--bsb-line); }
.bsb-confirmation-grid > div:nth-child(2n) { border-right: 0; }
.bsb-confirmation-grid span, .bsb-confirmation-notes span { display: block; color: var(--bsb-muted); text-transform: uppercase; font-size: 11px; letter-spacing: .08em; }
.bsb-confirmation-grid strong { display: block; margin-top: 5px; font-family: Georgia,serif; color: var(--bsb-brown); font-size: 18px; font-weight: 400; }
.bsb-confirmation-notes { padding: 18px; }
.bsb-confirmation-notes p { margin: 7px 0 0; }
.bsb-confirmation-help { margin: 18px 0 0; color: var(--bsb-muted); }

@media (max-width: 760px) {
  .bsb-form-grid { grid-template-columns: 1fr; }
  .bsb-field--wide { grid-column: auto; }
  .bsb-time-grid { grid-template-columns: repeat(2,1fr); }
  .bsb-calendar { padding: 12px 8px; }
  .bsb-calendar-weekdays, .bsb-calendar-days { gap: 3px; }
  .bsb-cal-day { min-height: 38px; }
  .bsb-form-summary { grid-template-columns: 1fr; }
  .bsb-form-summary > div { border-right: 0; border-bottom: 1px solid var(--bsb-line); }
  .bsb-form-summary > div:last-child { border-bottom: 0; }
  .bsb-confirmation-grid { grid-template-columns: 1fr; }
  .bsb-confirmation-grid > div { border-right: 0; }
}
.bsb-hp { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

/* Compact booking widget */
.bsb-compact {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(150px,1.15fr) repeat(3,minmax(120px,1fr)) auto;
  align-items: stretch;
  border: 1px solid var(--bsb-line);
  background: var(--bsb-surface);
  box-shadow: 0 12px 34px rgba(64,39,34,.10);
}
.bsb-compact-title {
  padding: 15px 18px;
  background: var(--bsb-brown);
  color: var(--bsb-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.bsb-compact-title .bsb-kicker { margin: 0 0 5px; font-size: 9px; color: #fff1dc; }
.bsb-compact-title strong { font: 400 22px/1.05 Georgia,"Times New Roman",serif; }
.bsb-compact-field { padding: 11px 14px; border-right: 1px solid var(--bsb-line); display:flex; flex-direction:column; justify-content:center; min-width:0; }
.bsb-compact-field label { display:block; margin:0 0 3px; color:var(--bsb-muted); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.bsb-compact-field input, .bsb-compact-field select { width:100%; min-width:0; min-height:38px; padding:4px 0; border:0; border-bottom:1px solid #d7c2a9; border-radius:0; background:transparent; box-shadow:none; color:var(--bsb-brown); font:400 16px/1.2 Georgia,"Times New Roman",serif; outline:none; }
.bsb-compact-field input:focus, .bsb-compact-field select:focus { border-bottom-color:var(--bsb-brown); }
.bsb-compact-button { align-self:stretch; min-width:145px; padding:12px 20px; border:0; border-radius:0; background:var(--bsb-brown); color:var(--bsb-cream); font:700 13px/1 "Roboto Condensed",Arial,sans-serif; letter-spacing:.07em; text-transform:uppercase; cursor:pointer; }
.bsb-compact-button:hover { filter:brightness(.94); }
.bsb-compact-error { grid-column:1/-1; margin:0; padding:9px 14px; background:#fff0eb; border-top:1px solid #d89c88; color:#7d2e1d; font-size:12px; }

/* Compact widget full-form modal */
html.bsb-modal-open, html.bsb-modal-open body { overflow:hidden !important; }
.bsb-booking-modal[hidden] { display:none !important; }
.bsb-booking-modal { position:fixed; inset:0; z-index:999999; display:flex; justify-content:center; align-items:flex-start; overflow:auto; padding:28px 18px; }
.bsb-booking-modal-backdrop { position:fixed; inset:0; background:rgba(35,21,17,.74); backdrop-filter:blur(3px); }
.bsb-booking-modal-panel { position:relative; z-index:1; width:min(1060px,100%); margin:auto; }
.bsb-booking-modal-panel .bsb-booking-shell { width:100%; }
.bsb-booking-modal-close { position:absolute; z-index:3; top:12px; right:12px; width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid rgba(254,234,201,.55); background:#402722; color:#FEEAC9; font:400 30px/1 Georgia,serif; cursor:pointer; }

@media (max-width: 900px) {
  .bsb-compact { grid-template-columns:1fr 1fr; }
  .bsb-compact-title { grid-column:1/-1; }
  .bsb-compact-field { border-bottom:1px solid var(--bsb-line); }
  .bsb-compact-field:nth-of-type(4) { grid-column:1/-1; }
  .bsb-compact-button { grid-column:1/-1; min-height:48px; }
}
@media (max-width: 560px) {
  .bsb-compact { grid-template-columns:1fr; }
  .bsb-compact-title, .bsb-compact-field, .bsb-compact-field:nth-of-type(4), .bsb-compact-button { grid-column:1; }
  .bsb-compact-field { border-right:0; padding:10px 14px; }
  .bsb-booking-modal { padding:0; }
  .bsb-booking-modal-panel { width:100%; min-height:100vh; margin:0; background:var(--bsb-surface,#FFFDF8); }
  .bsb-booking-modal-panel .bsb-booking-shell { min-height:100vh; border:0; }
  .bsb-booking-modal-close { position:fixed; top:10px; right:10px; }
}
