/**
 * FluidBook Booking Widget — Styles
 *
 * Matches Fluid Adventures brand: Deep Navy #003457, Orange #FE6B00,
 * Playfair Display headings, Outfit body, 100px border-radius buttons.
 * Mobile-first, all tap targets >= 44px.
 */

/* ── Reset (scoped) ───────────────────────────────────────────────────── */
.fb-widget *,
.fb-widget *::before,
.fb-widget *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fb-widget {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a2a34;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Typography ───────────────────────────────────────────────────────── */
.fb-widget h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #003457;
  margin-bottom: 8px;
}

.fb-widget h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #003457;
  margin-bottom: 4px;
}

.fb-widget p {
  margin-bottom: 8px;
}

/* ── Sections ─────────────────────────────────────────────────────────── */
.fb-section {
  padding: 20px 0;
  border-bottom: 1px solid #e8e4df;
}

.fb-section:last-child {
  border-bottom: none;
}

.fb-section--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.fb-section__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a6e78;
  margin-bottom: 12px;
}

/* ── Craft Picker ─────────────────────────────────────────────────────── */
.fb-craft-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fb-craft-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #f5f2ed;
  border-radius: 12px;
  min-height: 48px;
}

.fb-craft-info {
  flex: 1;
}

.fb-craft-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.fb-craft-capacity {
  font-size: 0.8rem;
  color: #5a6e78;
}

.fb-qty-picker {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #003457;
  background: #fff;
  color: #003457;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.fb-qty-btn:hover {
  background: #003457;
  color: #fff;
}

.fb-qty-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.fb-qty-btn:disabled:hover {
  background: #fff;
  color: #003457;
}

.fb-qty-value {
  width: 36px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003457;
}

/* ── Duration Cards ───────────────────────────────────────────────────── */
.fb-duration-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fb-duration-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.fb-duration-card:hover {
  border-color: #003457;
}

.fb-duration-card--selected {
  border-color: #FE6B00;
  background: #FFF8F0;
}

.fb-duration-card__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #003457;
}

.fb-duration-card__price {
  font-size: 0.85rem;
  color: #FE6B00;
  font-weight: 600;
  margin-top: 2px;
}

.fb-duration-card__breakdown {
  font-size: 0.7rem;
  color: #5a6e78;
  margin-top: 4px;
  line-height: 1.3;
}

.fb-duration-card--deal {
  border-color: #28a745;
  background: #f0fdf4;
}

.fb-duration-card--upsell {
  border-color: #FE6B00;
  border-style: dashed;
}

.fb-duration-card__deal-badge,
.fb-duration-card__upsell-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1px 6px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
}

.fb-duration-card__deal-badge {
  background: #28a745;
  color: #fff;
}

.fb-duration-card__upsell-badge {
  background: #FE6B00;
  color: #fff;
}

/* ── Calendar Dropdown ────────────────────────────────────────────────── */
.fb-calendar-dropdown {
  position: relative;
}

.fb-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2a34;
  transition: border-color 0.15s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.fb-date-trigger:hover {
  border-color: #003457;
}

.fb-date-trigger--active {
  border-color: #003457;
}

.fb-date-trigger--has-value {
  color: #FE6B00;
}

.fb-date-trigger__arrow {
  font-size: 0.8rem;
  color: #5a6e78;
  transition: transform 0.2s;
}

.fb-date-trigger--active .fb-date-trigger__arrow {
  transform: rotate(180deg);
}

.fb-calendar-popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.fb-calendar {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 12px;
  overflow: hidden;
}

.fb-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #003457;
  color: #fff;
}

.fb-calendar__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}

.fb-calendar__nav {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.fb-calendar__nav:hover {
  background: rgba(255,255,255,0.3);
}

.fb-calendar__nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.fb-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px;
  gap: 4px;
}

.fb-calendar__day-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #5a6e78;
  padding: 4px 0;
  text-transform: uppercase;
}

.fb-calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  background: none;
  color: #1a2a34;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.fb-calendar__day:hover {
  background: #f5f2ed;
}

.fb-calendar__day--empty {
  cursor: default;
}

.fb-calendar__day--unavailable {
  color: #ccc;
  cursor: default;
  text-decoration: line-through;
}

.fb-calendar__day--unavailable:hover {
  background: none;
}

.fb-calendar__day--selected {
  background: #FE6B00;
  color: #fff;
  font-weight: 700;
}

.fb-calendar__day--selected:hover {
  background: #e05e00;
}

.fb-calendar__day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #003457;
}

.fb-calendar__day--has-session {
  position: relative;
  font-weight: 600;
}
.fb-calendar__day--has-session::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FE6B00;
}
.fb-calendar__day--has-session.fb-calendar__day--selected::after {
  background: #fff;
}

.fb-session-day-header {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #003457;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f5f2ed;
}

.fb-next-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 2px solid #FE6B00;
  border-radius: 100px;
  background: none;
  color: #FE6B00;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.fb-next-available:hover {
  background: #FE6B00;
  color: #fff;
}

/* ── Time Slots ───────────────────────────────────────────────────────── */
.fb-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}

.fb-time-slot {
  padding: 10px 12px;
  border: 2px solid #e8e4df;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.15s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.fb-time-slot:hover {
  border-color: #003457;
}

.fb-time-slot--selected {
  border-color: #FE6B00;
  background: #FFF8F0;
  color: #FE6B00;
}

.fb-time-slot__end {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #5a6e78;
  margin-top: 2px;
}

.fb-time-slot--selected .fb-time-slot__end {
  color: #c55400;
}

.fb-time-slot__avail {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 2px;
}

.fb-time-slot__avail--plenty {
  color: #5a6e78;
}

.fb-time-slot__avail--low {
  color: #FE6B00;
}

.fb-time-slot__avail--last {
  color: #dc2626;
}

.fb-time-slot--deal-ok {
  border-color: #059669;
  background: #f0fdf4;
}

.fb-time-slot--deal-no {
  opacity: 0.5;
}

.fb-time-slot__deal-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* ── Inline Time Message ─────────────────────────────────────────────── */
.fb-inline-msg {
  padding: 10px 14px;
  background: #eff6ff;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1d4ed8;
  margin-top: 8px;
}

/* ── Price Summary ────────────────────────────────────────────────────── */
.fb-price-summary {
  background: #f5f2ed;
  border-radius: 12px;
  padding: 20px;
}

.fb-price-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.fb-price-line--discount {
  color: #059669;
}

.fb-price-line--total {
  border-top: 2px solid #003457;
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #003457;
}

.fb-price-line--total .fb-price-amount {
  color: #FE6B00;
}

.fb-price-amount {
  font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  text-decoration: none;
}

.fb-btn--primary {
  background: #FE6B00;
  color: #fff;
  width: 100%;
}

.fb-btn--primary:hover {
  background: #e05e00;
}

.fb-btn--primary:disabled {
  background: #ccc;
  cursor: default;
}

.fb-btn--secondary {
  background: transparent;
  color: #003457;
  border: 2px solid #003457;
  width: 100%;
}

.fb-btn--secondary:hover {
  background: #003457;
  color: #fff;
}

.fb-btn--ghost {
  background: none;
  border: none;
  color: #FE6B00;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.9rem;
}

.fb-btn--ghost:hover {
  text-decoration: underline;
}

.fb-btn--back {
  background: none;
  border: none;
  color: #5a6e78;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fb-btn--back:hover {
  color: #003457;
}

/* ── Form Inputs ──────────────────────────────────────────────────────── */
.fb-field {
  margin-bottom: 16px;
}

.fb-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #003457;
  margin-bottom: 6px;
}

.fb-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e8e4df;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #1a2a34;
  background: #fff;
  transition: border-color 0.15s;
  min-height: 44px;
}

.fb-input:focus {
  outline: none;
  border-color: #003457;
}

.fb-input--error {
  border-color: #dc2626;
}

.fb-textarea {
  resize: vertical;
  min-height: 80px;
}

.fb-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
}

.fb-field-hint {
  font-size: 0.8rem;
  color: #5a6e78;
  margin-top: 4px;
}

/* ── Checkbox ─────────────────────────────────────────────────────────── */
.fb-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  min-height: 44px;
  padding: 4px 0;
}

.fb-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #FE6B00;
  cursor: pointer;
}

.fb-check__box {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  position: relative;
}
.fb-check__box--checked {
  background: #FE6B00;
  border-color: #FE6B00;
}
.fb-check__box--checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fb-check__text {
  font-size: 0.9rem;
  line-height: 1.5;
}
.fb-check__text a {
  pointer-events: auto;
}

/* ── Modal ─────────────────────────────────────────────────────────── */
.fb-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fb-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.fb-modal__close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 4px;
}
.fb-modal__close:hover { color: #333; }
.fb-modal__title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  color: #1a2b3c;
}
.fb-modal__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3a4a5a;
}
.fb-modal__body p { margin: 0 0 12px; }
.fb-modal__body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.fb-modal__body li { margin-bottom: 4px; }

/* ── Discount Code ────────────────────────────────────────────────────── */
.fb-discount-row {
  display: flex;
  gap: 8px;
}

.fb-discount-row .fb-input {
  flex: 1;
}

.fb-discount-row .fb-btn {
  flex-shrink: 0;
  width: auto;
  padding: 12px 20px;
}

.fb-discount-success {
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.fb-discount-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ── Weather Flex Upsell ──────────────────────────────────────────────── */
.fb-wf-card {
  border: 2px solid #e8e4df;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  transition: border-color 0.15s;
}

.fb-wf-card--selected {
  border-color: #059669;
  background: #f0fdf4;
}

.fb-wf-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fb-wf-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: #003457;
}

.fb-wf-card__price {
  font-weight: 700;
  color: #FE6B00;
}

.fb-wf-card__desc {
  font-size: 0.85rem;
  color: #5a6e78;
  margin-bottom: 12px;
}

/* ── Discount Toggle ─────────────────────────────────────────────────── */
.fb-discount-toggle {
  background: none;
  border: none;
  color: #FE6B00;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  -webkit-tap-highlight-color: transparent;
}

.fb-discount-toggle:hover {
  text-decoration: underline;
}

.fb-discount-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fb-deal-bounceback {
  margin-top: 10px;
  padding: 12px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1e40af;
}

.fb-deal-bounceback p {
  margin: 0 0 8px 0;
}

.fb-field-warning {
  color: #d97706;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ── Waiver ───────────────────────────────────────────────────────────── */
.fb-waiver-text {
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
  background: #f5f2ed;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Signature Tabs ──────────────────────────────────────────────────── */
.fb-sig-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}

.fb-sig-tab {
  flex: 1;
  padding: 8px 16px;
  border: 2px solid #e8e4df;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a6e78;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.fb-sig-tab:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.fb-sig-tab:last-child {
  border-radius: 0 8px 8px 0;
}

.fb-sig-tab--active {
  background: #003457;
  border-color: #003457;
  color: #fff;
}

.fb-typed-sig {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #003457;
}

.fb-signature-canvas {
  width: 100%;
  height: 120px;
  border: 2px solid #e8e4df;
  border-radius: 8px;
  cursor: crosshair;
  touch-action: none;
  background: #fff;
}

.fb-signature-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* ── Stripe Elements ──────────────────────────────────────────────────── */
.fb-stripe-element {
  padding: 14px;
  border: 2px solid #e8e4df;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.15s;
  min-height: 44px;
}

.fb-stripe-element--focus {
  border-color: #003457;
}

/* ── Payment Options ──────────────────────────────────────────────────── */
.fb-payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.fb-payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 52px;
}

.fb-payment-option:hover {
  border-color: #003457;
}

.fb-payment-option--selected {
  border-color: #FE6B00;
  background: #FFF8F0;
}

.fb-payment-option input[type="radio"] {
  accent-color: #FE6B00;
  width: 18px;
  height: 18px;
}

.fb-payment-option__label {
  font-weight: 600;
  font-size: 0.95rem;
}

.fb-payment-option__sub {
  font-size: 0.8rem;
  color: #5a6e78;
}

/* ── Loading / Spinner ────────────────────────────────────────────────── */
.fb-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #5a6e78;
  font-size: 0.9rem;
}

.fb-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #e8e4df;
  border-top-color: #FE6B00;
  border-radius: 50%;
  animation: fb-spin 0.6s linear infinite;
  margin-right: 8px;
}

@keyframes fb-spin {
  to { transform: rotate(360deg); }
}

/* ── Alert / Message ──────────────────────────────────────────────────── */
.fb-alert {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.fb-alert--error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.fb-alert--info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.fb-alert--success {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #bbf7d0;
}

/* ── Confirmation Screen ──────────────────────────────────────────────── */
.fb-confirmation {
  text-align: center;
  padding: 32px 0;
}

.fb-confirmation__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.fb-confirmation__ref {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FE6B00;
  letter-spacing: 2px;
  margin: 16px 0;
}

.fb-confirmation__details {
  background: #f5f2ed;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin: 24px 0;
}

.fb-confirmation__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.fb-confirmation__row strong {
  color: #003457;
}

.fb-confirmation__email-note {
  font-size: 0.85rem;
  color: #5a6e78;
  margin-top: 16px;
}

.fb-confirmation__contact {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #5a6e78;
}

/* ── Booking Summary (Screen 2 header) ───────────────────────────────── */
.fb-booking-summary {
  background: #f5f2ed;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.fb-booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.88rem;
}

.fb-booking-summary__label {
  color: #5a6e78;
  font-weight: 400;
}

.fb-booking-summary__row > span:last-child {
  font-weight: 600;
  color: #003457;
  text-align: right;
}

/* ── Party Size Info ──────────────────────────────────────────────────── */
.fb-party-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #eff6ff;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1d4ed8;
}

/* ── Full Day Info ────────────────────────────────────────────────────── */
.fb-full-day-info {
  padding: 14px 16px;
  background: #FFF8F0;
  border: 2px solid #FE6B00;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #003457;
  text-align: center;
}

/* ── No Availability Message ──────────────────────────────────────────── */
.fb-no-times {
  text-align: center;
  padding: 20px;
  color: #5a6e78;
  font-size: 0.9rem;
}

/* ── Session Cards (Activity Mode) ────────────────────────────────────── */
.fb-session-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fb-session-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}

.fb-session-card:hover {
  border-color: #003457;
}

.fb-session-card--selected {
  border-color: #FE6B00;
  background: #FFF8F0;
}

.fb-session-card--unavailable {
  opacity: 0.5;
  cursor: default;
  background: #f5f2ed;
}

.fb-session-card--unavailable:hover {
  border-color: #e8e4df;
}

.fb-session-card__date {
  font-weight: 600;
  font-size: 0.95rem;
  color: #003457;
}

.fb-session-card__time {
  font-size: 0.85rem;
  color: #5a6e78;
  margin-left: 8px;
}

.fb-session-card__avail {
  font-size: 0.8rem;
  color: #5a6e78;
  font-weight: 500;
  text-align: right;
  flex-shrink: 0;
  margin-left: 12px;
}

.fb-session-card__avail--low {
  color: #FE6B00;
  font-weight: 600;
}

.fb-session-card__avail--full {
  color: #dc2626;
  font-weight: 600;
}

/* ── Ticket Options (Activity Mode) ──────────────────────────────────── */
.fb-ticket-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e8e4df;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: 8px;
  min-height: 52px;
}

.fb-ticket-option:hover {
  border-color: #003457;
}

.fb-ticket-option--selected {
  border-color: #FE6B00;
  background: #FFF8F0;
}

.fb-ticket-option--unavailable {
  opacity: 0.4;
  cursor: default;
}

.fb-ticket-option--unavailable:hover {
  border-color: #e8e4df;
}

.fb-ticket-option input[type="radio"] {
  accent-color: #FE6B00;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fb-ticket-option__info {
  flex: 1;
}

.fb-ticket-option__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #003457;
}

.fb-ticket-option__desc {
  font-size: 0.8rem;
  color: #5a6e78;
  margin-top: 2px;
}

.fb-ticket-option__price {
  font-weight: 700;
  color: #FE6B00;
  font-size: 1rem;
  flex-shrink: 0;
}

.fb-ticket-option__private {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 400;
}

/* ── Field Row (side-by-side fields) ─────────────────────────────────── */
.fb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Guardian Section ────────────────────────────────────────────────── */
.fb-guardian-section {
  margin-top: 16px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
}

/* ── Waiver Link ─────────────────────────────────────────────────────── */
.fb-waiver-link {
  margin-top: 8px;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .fb-widget {
    padding: 0 4px;
  }

  .fb-duration-list {
    flex-wrap: wrap;
  }

  .fb-duration-card {
    flex: 1 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
  }

  .fb-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fb-craft-row {
    padding: 6px 10px;
  }

  .fb-calendar__grid {
    padding: 4px;
    gap: 2px;
  }

  .fb-calendar__day {
    height: 40px;
    font-size: 0.8rem;
  }

  .fb-discount-row {
    flex-direction: column;
  }

  .fb-discount-row .fb-btn {
    width: 100%;
  }

  .fb-field-row {
    grid-template-columns: 1fr;
  }

  .fb-session-card {
    flex-wrap: wrap;
    gap: 4px;
  }
}
