/* ── Botanix Booking Flow ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=IM+Fell+English:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --sage: #cae6d5;
  --green: #013927;
  --light-green: #025f45;
  --cream: #fffef8;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.booking-body {
  background: var(--green);
  color: var(--sage);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* ── Top bar ── */
.bf-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: var(--green);
  z-index: 100;
  border-bottom: 1px solid rgba(202,230,213,0.08);
}
.bf-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--sage);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.bf-exit {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--sage);
  text-decoration: none; font-size: 16px;
  transition: background 0.2s;
}
.bf-exit:hover { background: rgba(202,230,213,0.08); }

/* ── Progress ── */
.bf-progress {
  position: fixed; top: 56px; left: 0; right: 0;
  height: 3px; background: rgba(202,230,213,0.08); z-index: 100;
}
.bf-progress__bar {
  height: 100%; background: var(--sage);
  width: 12.5%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bf-progress__label {
  position: absolute;
  right: 16px; top: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.4;
}

/* ── Layout ── */
.bf-layout {
  display: flex;
  margin-top: 59px;
  min-height: calc(100vh - 59px - 64px);
}
.bf-steps {
  flex: 1; position: relative; overflow: hidden;
}

/* ── Steps ── */
.bf-step {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bf-step.active {
  opacity: 1; transform: translateY(0); pointer-events: all;
}

.bf-step__scroll {
  position: absolute; inset: 0;
  overflow-y: auto;
  display: flex; justify-content: center;
  padding: 40px 0;
  -webkit-overflow-scrolling: touch;
}

.bf-step__content {
  max-width: 520px; width: 100%; padding: 40px 32px;
}
.bf-step__content--wide {
  max-width: 780px;
}
.bf-step__content--datetime {
  max-width: 740px;
}

.bf-step__number {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--sage); opacity: 0.25;
  margin-bottom: 6px; letter-spacing: 0.1em;
}
.bf-step__title {
  font-family: 'IM Fell English', serif;
  font-size: 30px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; line-height: 1.25;
}
.bf-step__sub {
  font-size: 14px; color: var(--sage); opacity: 0.55;
  margin-bottom: 28px; line-height: 1.5;
}
.bf-step__selected {
  margin-top: 14px; padding: 12px 16px;
  background: var(--sage); border-radius: 10px;
  font-size: 13px; color: var(--green); font-weight: 500;
  display: none;
  max-width: 400px;
}
.bf-step__selected.visible { display: block; }

/* ── Cards ── */
.bf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bf-cards--wide { grid-template-columns: 1fr; max-width: 440px; }
.bf-cards--small { grid-template-columns: repeat(3, 1fr); max-width: 340px; }

.bf-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 10px;
  background: rgba(202,230,213,0.04);
  border: 1.5px solid rgba(202,230,213,0.1);
  border-radius: 12px; cursor: pointer;
  transition: all 0.2s ease;
  color: var(--sage);
}
.bf-card__emoji { font-size: 22px; line-height: 1; }
.bf-card span { font-size: 12px; font-weight: 500; text-align: center; }
.bf-card small { font-size: 11px; opacity: 0.45; font-weight: 300; text-align: center; }

.bf-card:hover {
  border-color: rgba(202,230,213,0.3);
  background: rgba(202,230,213,0.08);
  transform: translateY(-2px);
}
.bf-card.selected {
  border-color: var(--sage);
  background: rgba(202,230,213,0.1);
}

.bf-card--wide {
  flex-direction: row; gap: 14px;
  padding: 16px 18px; text-align: left;
}
.bf-card--wide div { display: flex; flex-direction: column; gap: 2px; }
.bf-card--wide span { font-size: 14px; text-align: left; }
.bf-card--wide small { text-align: left; }
.bf-card--small { padding: 14px 10px; }

/* ── Guest picker ── */
.bf-guest-picker {
  display: flex; align-items: center; gap: 28px;
  justify-content: center; margin-bottom: 28px;
}
.bf-guest-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(202,230,213,0.2);
  background: rgba(202,230,213,0.04);
  color: var(--sage); font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.bf-guest-btn:hover { border-color: var(--sage); background: rgba(202,230,213,0.1); }
.bf-guest-display { text-align: center; }
.bf-guest-count {
  display: block; font-family: 'IM Fell English', serif;
  font-size: 60px; color: var(--cream); line-height: 1;
}
.bf-guest-label {
  font-size: 11px; color: var(--sage); opacity: 0.4;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.bf-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 3px; background: rgba(202,230,213,0.12);
  border-radius: 2px; outline: none; margin-bottom: 6px;
}
.bf-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--sage); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.bf-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage); cursor: pointer; border: none;
}
.bf-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--sage); opacity: 0.25; margin-bottom: 14px;
}
.bf-hint {
  margin-top: 16px; padding: 14px 18px; background: rgba(202,230,213,0.08);
  border: 1px solid rgba(202,230,213,0.12);
  border-radius: 10px; font-size: 13px; color: var(--sage);
}

/* ── Drink Format Cards ── */
.bf-format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bf-format-card {
  cursor: pointer;
}
.bf-format-card input { display: none; }
.bf-format-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(202,230,213,0.05);
  border: 2px solid rgba(202,230,213,0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.2s;
}
.bf-format-card input:checked + .bf-format-card__inner {
  border-color: var(--sage);
  background: rgba(202,230,213,0.12);
}
.bf-format-card__emoji { font-size: 28px; }
.bf-format-card__name { font-size: 15px; font-weight: 500; }
.bf-format-card__inner small { font-size: 11px; opacity: 0.5; }

/* ── Flavor Chips ── */
.bf-flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bf-flavor-chip {
  cursor: pointer;
}
.bf-flavor-chip input { display: none; }
.bf-flavor-chip span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid rgba(202,230,213,0.15);
  background: rgba(202,230,213,0.04);
  transition: all 0.2s;
}
.bf-flavor-chip input:checked + span {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--green);
  font-weight: 500;
}

/* ── Alcohol Guide Cards ── */
.bf-alcohol-card {
  background: rgba(202,230,213,0.06);
  border: 1px solid rgba(202,230,213,0.12);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}
.bf-alcohol-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 18px;
}
.bf-alcohol-card__header h4 {
  font-size: 16px;
  font-weight: 500;
}
.bf-alcohol-card__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.bf-alcohol-card__number {
  font-size: 36px;
  font-weight: 600;
  color: var(--sage);
}
.bf-alcohol-card__label {
  font-size: 14px;
  opacity: 0.6;
}
.bf-alcohol-card__note {
  font-size: 12px;
  opacity: 0.4;
  line-height: 1.5;
}
.bf-bottle-sizes {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.bf-bottle-pill {
  padding: 6px 16px;
  background: rgba(202,230,213,0.06);
  border: 1px solid rgba(202,230,213,0.1);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--sage);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s;
}
.bf-bottle-pill:hover {
  opacity: 0.8;
  border-color: rgba(202,230,213,0.25);
}
.bf-bottle-pill.active {
  background: var(--sage);
  color: var(--green);
  border-color: var(--sage);
  opacity: 1;
  font-weight: 600;
}

/* ── Build Sections ── */
.bf-build-section {
  margin-bottom: 32px;
}
.bf-build-section .bf-label {
  margin-bottom: 16px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

/* ── Step Footnote ── */
.bf-step__footnote {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.4;
}
.bf-step__footnote a {
  color: var(--sage);
  text-decoration: underline;
}

/* ── Package Recommendation ── */
/* ── Custom path layout ── */
.bf-custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.bf-custom-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Recommendation card (matches package card style) ── */
.bf-custom-rec {
  background: rgba(202,230,213,0.04);
  border: 1px solid rgba(202,230,213,0.15);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeUp 0.4s ease both;
}
.bf-recommendation__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--sage);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bf-recommendation__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.bf-recommendation__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 20px;
}
.bf-recommendation__breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.bf-recommendation__line {
  font-size: 13px;
  color: var(--sage);
  opacity: 0.55;
  padding: 5px 0;
  border-bottom: 1px solid rgba(202,230,213,0.04);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .bf-custom-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Other Event Input ── */
.bf-other-input {
  margin-top: 20px;
}

/* ── Packages ── */
/* ── Package Accordion ── */
.bf-pkg-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bf-pkg-row {
  background: rgba(202,230,213,0.04);
  border: 1px solid rgba(202,230,213,0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
.bf-pkg-row:hover {
  border-color: rgba(202,230,213,0.2);
  background: rgba(202,230,213,0.06);
}
.bf-pkg-row.open {
  border-color: rgba(202,230,213,0.25);
  background: rgba(202,230,213,0.06);
}
.bf-pkg-row.selected {
  border-color: var(--sage);
  background: rgba(202,230,213,0.1);
}
.bf-pkg-row--featured {
  border-color: rgba(202,230,213,0.15);
  background: rgba(202,230,213,0.06);
}
.bf-pkg-row--custom {
  border-style: dashed;
  border-color: rgba(202,230,213,0.12);
}

/* Header row — always visible */
.bf-pkg-row__header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  gap: 16px;
}
.bf-pkg-row__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.bf-pkg-row__badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--sage);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.bf-pkg-row__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
}
.bf-pkg-row__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bf-pkg-row__guests {
  font-size: 12px;
  color: var(--sage);
  opacity: 0.5;
  white-space: nowrap;
}
.bf-pkg-row__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--sage);
  white-space: nowrap;
}
.bf-pkg-row__arrow {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.bf-pkg-row__arrow::before {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--sage);
  opacity: 0.3;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.bf-pkg-row.open .bf-pkg-row__arrow::before {
  content: '\2212';
  opacity: 0.6;
}

/* Details — hidden by default */
.bf-pkg-row__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.bf-pkg-row.open .bf-pkg-row__details {
  max-height: 300px;
  padding: 0 24px 20px;
}
.bf-pkg-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 16px;
}
.bf-pkg-row__grid span {
  font-size: 12px;
  color: var(--sage);
  opacity: 0.55;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.bf-pkg-row__grid span::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.3;
}
.bf-pkg-row__cta {
  display: inline-block;
  padding: 10px 28px;
  background: var(--sage);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.bf-pkg-row__cta:hover, .bf-pkg-row__confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Guest input inside accordion */
.bf-pkg-row__guest-input {
  margin: 12px 0;
  padding: 14px 16px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
}
.bf-pkg-row__guest-input .bf-label {
  margin-bottom: 8px;
}
.bf-pkg-row__guest-input .bf-input {
  width: 100%;
  max-width: 200px;
}
.bf-pkg-row__overage-hint {
  font-size: 12px;
  color: var(--sage);
  opacity: 0.6;
  margin-top: 8px;
  line-height: 1.5;
}
.bf-pkg-row__overage-hint--upgrade {
  color: #F59E0B;
  opacity: 0.9;
}
.bf-pkg-row__confirm {
  display: inline-block;
  padding: 10px 28px;
  background: var(--sage);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 8px;
}
.bf-package--custom .bf-package__includes {
  padding-bottom: 18px;
}

.bf-deposit-note {
  margin-top: 18px; text-align: center;
  font-size: 12px; color: var(--sage); opacity: 0.35;
  font-style: italic;
}

/* ── Add-ons ── */
.bf-addon-group { margin-bottom: 20px; }
.bf-addon-group__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--sage); opacity: 0.6;
  margin-bottom: 10px;
}

.bf-addon {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: rgba(202,230,213,0.03);
  border: 1.5px solid rgba(202,230,213,0.06);
  border-radius: 10px; cursor: pointer;
  transition: all 0.15s; margin-bottom: 6px;
}
.bf-addon:hover {
  border-color: rgba(202,230,213,0.2);
  background: rgba(202,230,213,0.06);
}
.bf-addon input { display: none; }

.bf-addon__check {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid rgba(202,230,213,0.2);
  flex-shrink: 0; position: relative;
  transition: all 0.15s; margin-top: 1px;
}
.bf-addon input:checked ~ .bf-addon__check {
  background: var(--sage); border-color: var(--sage);
}
.bf-addon input:checked ~ .bf-addon__check::after {
  content: '\2713'; color: var(--green);
  font-size: 11px; font-weight: 700;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.bf-addon__body { flex: 1; }
.bf-addon__row {
  display: flex; justify-content: space-between; align-items: center;
}
.bf-addon__name {
  font-size: 13px; color: var(--sage); font-weight: 400;
}
.bf-addon__price {
  font-size: 12px; color: var(--sage); opacity: 0.45; white-space: nowrap;
}
.bf-addon__price em {
  font-style: normal; font-size: 10px; opacity: 0.7;
}
.bf-addon__detail {
  font-size: 11px; color: var(--sage); opacity: 0.35;
  margin-top: 4px; line-height: 1.5;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Expand detail on hover or when checked */
.bf-addon:hover .bf-addon__detail,
.bf-addon input:checked ~ .bf-addon__body .bf-addon__detail {
  max-height: 60px; opacity: 0.35; margin-top: 4px;
}

.bf-addon input:checked ~ .bf-addon__body .bf-addon__name {
  font-weight: 500;
}

/* ── Inputs ── */
.bf-field-group { margin-bottom: 18px; }
.bf-label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--sage); margin-bottom: 6px;
}
.bf-label em { font-style: normal; opacity: 0.4; font-weight: 300; }

.bf-input, .bf-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(202,230,213,0.12);
  border-radius: 10px;
  background: rgba(202,230,213,0.04);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--cream);
  outline: none; transition: border-color 0.2s;
  font-weight: 300;
}
.bf-input::placeholder, .bf-textarea::placeholder {
  color: var(--sage); opacity: 0.3;
}
.bf-input:focus, .bf-textarea:focus {
  border-color: rgba(202,230,213,0.35);
}
.bf-input--error {
  border-color: #e74c3c !important;
  animation: shake 0.4s ease;
}
.bf-input--error::placeholder {
  color: #e74c3c;
  opacity: 0.7;
}
.bf-textarea { resize: vertical; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ── Sidebar ── */
.bf-sidebar {
  width: 300px; flex-shrink: 0;
  border-left: 1px solid rgba(202,230,213,0.06);
  background: #012119;
  position: relative;
}
/* Extend sidebar color to bottom of page regardless of content height */
body.booking-body::after {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: #012119;
  z-index: 0;
  border-left: 1px solid rgba(202,230,213,0.06);
}
.bf-sidebar {
  position: relative;
  z-index: 1;
}
.bf-sidebar__inner {
  position: sticky; top: 80px; padding: 28px 24px;
}
.bf-sidebar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: 20px;
}
.bf-sidebar__section {
  display: flex; flex-direction: column; gap: 8px;
}
.bf-sidebar__row {
  display: flex; justify-content: space-between; align-items: center;
}
.bf-sidebar__label {
  font-size: 12px; color: var(--sage); opacity: 0.4;
}
.bf-sidebar__value {
  font-size: 12px; color: var(--sage); font-weight: 400;
  text-align: right;
}
.bf-sidebar__value--price {
  font-weight: 500;
}
.bf-sidebar__divider {
  height: 1px; background: rgba(202,230,213,0.06); margin: 14px 0;
}
.bf-sidebar__total {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--sage); font-weight: 500; font-size: 13px;
}
.bf-sidebar__total-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 500; color: var(--cream);
}
.bf-sidebar__deposit {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(202,230,213,0.08);
}
.bf-sidebar__note {
  font-size: 10px; color: var(--sage); opacity: 0.25;
  margin-top: 10px; line-height: 1.6;
}
.bf-sidebar__addon-row {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--sage); opacity: 0.55;
  padding: 2px 0;
}

/* ── Bottom nav ── */
.bf-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: var(--green);
  border-top: 1px solid rgba(202,230,213,0.06);
  z-index: 100;
}
.bf-nav__btn {
  padding: 10px 24px; border-radius: 999px;
  border: none; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.bf-nav__btn--back {
  background: transparent; color: var(--sage); opacity: 0.4;
}
.bf-nav__btn--back:hover { opacity: 0.8; }
.bf-nav__btn--next {
  background: var(--sage); color: var(--green);
}
.bf-nav__btn--next:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.bf-nav__btn--submit {
  background: var(--sage); color: var(--green);
  padding: 10px 32px; font-weight: 600;
}

.bf-nav__dots {
  display: flex; gap: 6px;
}
.bf-nav__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(202,230,213,0.15);
  transition: all 0.3s;
}
.bf-nav__dot.active { background: var(--sage); width: 18px; border-radius: 3px; }
.bf-nav__dot.done { background: rgba(202,230,213,0.35); }

/* ── Calendar Widget ── */
.cal-widget {
  background: rgba(202,230,213,0.05);
  border: 1px solid rgba(202,230,213,0.1);
  border-radius: 20px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
}

/* Toggle: Single / Multi */
.cal-toggle {
  display: flex;
  background: rgba(202,230,213,0.06);
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 18px;
  gap: 2px;
}
.cal-toggle__btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--sage);
  opacity: 0.4;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-toggle__btn:hover {
  opacity: 0.7;
}
.cal-toggle__btn.active {
  background: rgba(202,230,213,0.12);
  opacity: 1;
  font-weight: 500;
}

.cal-widget__nav {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-widget__nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(202,230,213,0.12);
  background: rgba(202,230,213,0.06);
  color: var(--sage);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cal-widget__nav-btn:hover {
  background: rgba(202,230,213,0.12);
  border-color: rgba(202,230,213,0.25);
}

.cal-widget__month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream);
}

.cal-widget__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-bottom: 4px;
}

.cal-widget__weekday {
  text-align: center; font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); opacity: 0.3;
  padding: 4px 0 6px;
}

.cal-widget__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
}

.cal-widget__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 14px; font-weight: 400;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--sage);
  transition: all 0.15s;
  position: relative;
}

.cal-widget__day:hover:not(.booked):not(.past):not(.empty) {
  background: rgba(202,230,213,0.1);
  border-color: rgba(202,230,213,0.2);
}

.cal-widget__day.selected {
  background: var(--sage);
  color: var(--green);
  font-weight: 700;
  border-color: var(--sage);
  box-shadow: 0 0 12px rgba(202,230,213,0.25);
}

.cal-widget__day.booked {
  background: rgba(202,230,213,0.03);
  color: rgba(202,230,213,0.15);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-widget__day.past {
  opacity: 0.1;
  cursor: not-allowed;
}

.cal-widget__day.today {
  border-color: var(--sage);
  font-weight: 600;
}

.cal-widget__day.empty { cursor: default; }

.cal-widget__legend {
  display: flex; gap: 14px;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(202,230,213,0.06);
  font-size: 10px; color: var(--sage); opacity: 0.4;
  flex-wrap: wrap;
}
.cal-widget__legend span { display: flex; align-items: center; gap: 5px; }

.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
}
.dot--selected { background: var(--sage); }
.dot--booked   { background: rgba(202,230,213,0.15); }
.dot--today    { border: 2px solid var(--sage); background: transparent; }

.cal-widget__selected {
  margin-top: 14px; padding: 12px 16px;
  background: rgba(202,230,213,0.08);
  border-radius: 10px; font-size: 13px;
  color: var(--sage); font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  max-width: 460px;
  word-break: break-word;
}

/* ── Mobile ── */
.bf-mobile-price {
  display: none; position: fixed;
  bottom: 64px; left: 0; right: 0;
  padding: 8px 24px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(202,230,213,0.06);
  z-index: 99; text-align: center;
}
.bf-mobile-price__val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--cream);
}
.bf-mobile-price__label {
  font-size: 9px; color: var(--sage); opacity: 0.35;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block;
}

/* ── Date + Time Layout ── */
.bf-date-time-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.bf-date-col {
  flex: 1;
  min-width: 0;
}
.bf-time-col {
  width: 220px;
  flex-shrink: 0;
  padding-top: 8px;
}
.bf-time-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.bf-time-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bf-time-field__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.bf-select {
  background: rgba(202,230,213,0.06);
  border: 1px solid rgba(202,230,213,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--sage);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cae6d5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
  width: 100%;
}
.bf-select:focus {
  outline: none;
  border-color: var(--sage);
}
.bf-select option {
  background: var(--green);
  color: var(--sage);
}

@media (max-width: 900px) {
  .bf-sidebar { display: none; }
  body.booking-body::after { display: none; }
  .bf-mobile-price { display: block; }
  .bf-layout { min-height: calc(100vh - 59px - 64px - 44px); }
  .bf-custom-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bf-step__title { font-size: 24px; }
  .bf-step__content { padding: 28px 16px; }
  .bf-step__content--wide { max-width: 100%; }
  .bf-cards { grid-template-columns: repeat(2, 1fr); }
  .bf-cards--small { grid-template-columns: repeat(3, 1fr); }
  .bf-guest-count { font-size: 48px; }
  .bf-topbar, .bf-nav { padding: 0 16px; }
  .bf-date-time-layout {
    flex-direction: column;
    gap: 24px;
  }
  .bf-time-col {
    width: 100%;
    padding-top: 0;
    border-top: 1px solid rgba(202,230,213,0.1);
    padding-top: 20px;
  }
  .bf-time-stack { flex-direction: row; gap: 12px; }
  .bf-time-field { flex: 1; }

  /* Accordion responsive */
  .bf-pkg-row__header {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 8px;
  }
  .bf-pkg-row__left { gap: 8px; }
  .bf-pkg-row__right { gap: 10px; }
  .bf-pkg-row__name { font-size: 20px; }
  .bf-pkg-row__price { font-size: 22px; }
  .bf-pkg-row__guests { font-size: 11px; }
  .bf-pkg-row__grid { grid-template-columns: 1fr; }
  .bf-pkg-row__details { padding: 0 16px; }
  .bf-pkg-row.open .bf-pkg-row__details { padding: 0 16px 16px; }

  /* Add-ons responsive */
  .bf-addons { gap: 20px; }
  .bf-addon__row { flex-wrap: wrap; gap: 4px; }
  .bf-addon__price { font-size: 12px; }

  /* Format cards responsive */
  .bf-format-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-flavor-grid { grid-template-columns: repeat(4, 1fr); }

  /* Custom layout responsive */
  .bf-custom-layout { grid-template-columns: 1fr; gap: 20px; }
  .bf-custom-rec { padding: 20px 16px; }
  .bf-recommendation__name { font-size: 24px; }

  /* Progress label */
  .bf-progress__label { right: 12px; font-size: 9px; }
}
