/* ──────────────────────────────────────────────────────────────────────────
   KL Brady Booking — Front-end styles
   Matches brady-youth-booking.html prototype exactly.
   Only booking-page styles — no header/nav/footer.
   ────────────────────────────────────────────────────────────────────────── */

:root {
  --navy:    #0E3957;
  --mint:    #89C9B2;
  --orange:  #EE7203;
  --yellow:  #FCEE21;
  --white:   #FFFFFF;
  --offwhite: #F8F7F4;
  --text-dark: #1A2E3B;
  --text-mid:  #4A6070;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(14,57,87,0.10);
  --shadow-lg: 0 8px 40px rgba(14,57,87,0.15);
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-serif: 'DM Serif Text', Georgia, serif;
}

/* ── GRADIENT LINE ── */
.gradient-line { height: 4px; background: linear-gradient(90deg, #EE7203 0%, #FCEE21 50%, #89C9B2 100%); }

/* ── BOOKING TABS (combined-mode tab buttons, shown above layout) ── */
.brady-booking--has-tabs .booking-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hide when not in has-tabs mode */
.brady-booking:not(.brady-booking--has-tabs) .booking-tabs {
  display: none;
}

.booking-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}

.booking-tab-btn--active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.booking-tab-btn--active:hover {
  background: #d4650a;
  border-color: #d4650a;
  color: var(--white);
}

.booking-tab-btn--inactive {
  background: transparent;
  color: var(--navy);
  border-color: #D0DCE5;
}

.booking-tab-btn--inactive:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--offwhite);
}

/* ── BOOKING LAYOUT ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.booking-steps { min-width: 0; }

/* ── TAB CONTENT TOGGLE ── */
.tab-content { display: none; }
.tab-content.is-active { display: block; }

/* ── STEP CARD ── */
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.step-card--mint {
  border-left: 4px solid var(--mint);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.step-sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ── FORM FIELDS ── */
.brady-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brady-field {
  flex: 1 1 100%;
}

.brady-field--half {
  flex: 1 1 calc(50% - 8px);
  min-width: 180px;
}

.brady-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.brady-field .req { color: var(--orange); }

.brady-field input[type="text"],
.brady-field input[type="tel"],
.brady-field input[type="email"],
.brady-field input[type="date"],
.brady-field select,
.brady-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #D0DCE5;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.brady-field input:focus,
.brady-field select:focus,
.brady-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,57,87,0.12);
}

.brady-field input.is-invalid,
.brady-field select.is-invalid,
.brady-field textarea.is-invalid {
  border-color: #dc2626;
}

.brady-field textarea { resize: vertical; min-height: 90px; }

/* Register note */
.register-note { font-size: 0.85rem; color: var(--text-mid); margin-top: 16px; }
.register-note a { color: var(--orange); font-weight: 600; }
.register-note a:hover { text-decoration: underline; }

/* ── CLUB + DATES COMBINED BLOCK ── */
.club-date-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.club-date-block {
  border: 2px solid #E0E8EE;
  border-radius: var(--radius);
  transition: border-color 0.15s;
  overflow: hidden;
}

.club-date-block:hover { border-color: #B0BEC8; }
.club-date-block.is-selected { border-color: var(--navy); background: #F4F7FA; }
/* has-dates: block is closed but has checked dates — keep mint border so user can see it's booked */
.club-date-block.has-dates { border-color: var(--mint); }
.club-date-block.has-dates.is-selected { border-color: var(--navy); }

.club-date-block__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
}

/* Dates panel — hidden until block selected */
.club-dates-panel {
  display: none;
  padding: 14px 20px 20px 54px;
  border-top: 1px solid #E0E8EE;
  cursor: default;
}

.club-date-block.is-selected .club-dates-panel { display: block; }
.club-dates-panel .days-pricing-note { margin-bottom: 12px; }
.club-dates-panel .select-all-link { display: inline-block; margin-top: 4px; }

/* Radio circle */
.club-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #B0BEC8;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.club-date-block.is-selected .club-option__radio {
  border-color: var(--navy);
  background: var(--navy);
}

.club-date-block.is-selected .club-option__radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.club-option__body { flex: 1; }
.club-option__name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 5px; }
.club-option__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.club-option__meta span { display: flex; align-items: center; gap: 5px; }

.avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.avail-dot--green { background: #2DB67D; }
.avail-dot--amber { background: #F59E0B; }
.avail-label { font-size: 0.82rem; font-weight: 600; }
.avail-label--green { color: #1A8A5E; }
.avail-label--amber { color: #92600A; }

/* ── DAY CHECKBOXES ── */
.day-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.days-pricing-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}
.days-pricing-note strong { color: var(--navy); }

/* Full/waiting row */
.day-check-item--full {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid #E0E8EE;
  border-radius: var(--radius);
  background: #F9FAFB;
  cursor: default;
}

.day-check-item--full .day-check-item__label {
  color: var(--text-mid);
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.day-check-item--full .day-check-item__price {
  color: #9CA3AF;
  font-size: 0.875rem;
}

.day-check-item__full-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.waiting-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1.5px solid #C0392B;
  color: #C0392B;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.waiting-list-btn:hover { background: #FEF2F2; }

/* Available date row with extras */
.day-check-item--has-extras {
  display: block;
  padding: 0;
  cursor: default;
  border: 1.5px solid #E0E8EE;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.day-check-item--has-extras:hover { border-color: #B0BEC8; }

.day-check-item__main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
}

.day-check-item__main input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.day-check-item__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-check-item__price {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* Extras row — ALWAYS VISIBLE (not hidden behind :has()) */
.day-check-item__extras {
  display: flex;
  border-top: 1px solid #EEF2F6;
  background: #F8FAFB;
}

.day-extra-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  flex: 1;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-mid);
  border-right: 1px solid #EEF2F6;
}
.day-extra-opt:last-child { border-right: none; }

.day-extra-opt input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.day-extra-opt__text { flex: 1; line-height: 1.3; }
.day-extra-opt__time { display: block; font-size: 0.75rem; color: #9CA3AF; }
.day-extra-price { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }

/* Waiting badge */
.waiting-badge {
  font-size: 0.75rem;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 20px;
  font-style: normal;
  font-weight: 600;
}

/* Select all link */
.select-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
}
.select-all-link:hover { text-decoration: underline; }

/* ── ADD / SECOND CHILD BOOKING ── */
.add-child-booking { margin-bottom: 20px; }

.add-child-booking-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 24px !important;
  border-radius: 50px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border: 2px dashed #B0BEC8 !important;
  color: var(--text-mid) !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: border-color 0.2s, color 0.2s !important;
  width: 100% !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}
.add-child-booking-btn:hover,
.add-child-booking-btn:focus {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.step-card--second-child { border-left: 4px solid var(--mint); }

.second-child-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.second-child-badge {
  background: var(--mint);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.second-child-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.remove-child-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 4px;
  margin-left: auto;
  transition: color 0.15s;
}
.remove-child-btn:hover { color: #C0392B; }

.second-child-section { margin-bottom: 10px; }

.second-child-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.second-child-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0E8EE;
}

/* ── NOTES ── */
.notes-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: block;
}

.notes-textarea {
  width: 100%;
  margin-top: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid #D0DCE5;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  box-sizing: border-box;
}
.notes-textarea:focus { outline: none; border-color: var(--navy); }

/* ── DONATION STEP ── */
.donation-q {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.donation-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #D0DCE5;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  transition: all 0.15s;
}
.donation-btn:hover { border-color: var(--navy); color: var(--navy) !important; }
.donation-btn.is-selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.donation-btn.is-selected:hover { background: var(--navy); color: var(--white) !important; border-color: var(--navy); }

.donation-other {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.donation-other input {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid #D0DCE5;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 120px;
  color: var(--text-dark);
}
.donation-other input:focus { outline: none; border-color: var(--navy); }

.donation-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 10px;
  font-style: italic;
}

/* ── CAMP CARDS (holiday form) ── */
.camp-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.camp-card {
  border: 2px solid #E0E8EE;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: stretch;
}
.camp-card:hover { border-color: var(--navy); }
.camp-card.is-selected { border-color: var(--navy); }

.camp-card__img-ph {
  width: 120px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7abfa5, #0E3957);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camp-card__img {
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  min-height: 120px;
}

.camp-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.camp-card__body { padding: 18px 20px; flex: 1; }
.camp-card__name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.camp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.camp-card__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

/* Camp extras */
.camp-extra { margin-bottom: 14px; }
.camp-extra label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  display: block;
  margin-bottom: 6px;
}
.camp-extra select {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid #D0DCE5;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

/* ── BOOKING SIDEBAR ── */
.booking-sidebar {
  position: sticky;
  top: 96px;
}

.summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 26px;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E0E8EE;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.summary-row__label { color: var(--text-mid); font-weight: 500; }
.summary-row__value { color: var(--navy); font-weight: 700; text-align: right; max-width: 55%; }

.summary-divider {
  border: none;
  border-top: 1px solid #E0E8EE;
  margin: 18px 0;
}

.summary-totals { margin-bottom: 22px; }

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.summary-total-row__val { font-weight: 600; color: var(--navy); }

.summary-grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 2px solid var(--navy);
  margin-top: 8px;
}
.summary-grand__label { font-weight: 800; font-size: 1rem; color: var(--navy); }
.summary-grand__amount { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); }

.confirm-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  border-radius: 50px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-family: var(--font-sans) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  text-decoration: none !important;
  margin-bottom: 14px !important;
  line-height: 1.2 !important;
}
.confirm-btn:hover {
  background: #d4650a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(238,114,3,0.35) !important;
  color: var(--white) !important;
  border: none !important;
}
.confirm-btn:focus {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  outline: none !important;
}
.confirm-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.summary-confirm-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}

.summary-help {
  text-align: center;
  font-size: 0.85rem;
}
.summary-help a { color: var(--orange); font-weight: 600; }
.summary-help a:hover { text-decoration: underline; }

/* ── UNIFIED SIDEBAR — section heading & empty state ── */
.summary-section-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-mid);
  margin: 16px 0 10px;
}
.summary-section-heading:first-child { margin-top: 0; }

#sidebarSectionCamps .summary-section-heading { color: var(--navy); }

/* Sub-total row inside a section (indented lighter) */
.summary-total-row--sub {
  font-size: 0.82rem;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #E0E8EE;
  color: var(--navy);
}
.summary-total-row--sub .summary-total-row__val { font-weight: 700; }

/* Divider between sections in the unified card */
#sidebarSectionCamps { padding-top: 14px; border-top: 1px solid #E0E8EE; margin-top: 6px; }
#sidebarSectionWeekly + #sidebarSectionCamps { margin-top: 14px; }

/* Empty state placeholder */
.summary-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0 10px;
  color: var(--text-mid);
}
.summary-empty-state p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ── POLICY NOTE ── */
.brady-policy-note {
  background: var(--offwhite);
  border-left: 3px solid var(--mint);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin-top: 16px;
}
.brady-policy-note p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0 0 6px;
}
.brady-policy-note p:last-child { margin-bottom: 0; }
.brady-policy-note a { color: var(--navy); text-decoration: underline; }

/* ── MESSAGES ── */
.brady-no-sessions,
.brady-no-dates,
.brady-select-camp-prompt {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-style: italic;
  padding: 12px 0;
  margin: 0;
}

.brady-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.brady-warning-msg {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.9375rem;
}

.brady-success-msg {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.9375rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .step-card {
    padding: 20px;
  }
  .summary-card {
    padding: 20px;
  }
  .brady-field--half {
    flex: 1 1 100%;
  }
  .camp-card__img {
    display: none;
  }
  .club-dates-panel {
    padding-left: 20px;
  }
}

/* ── TERM SELECTOR ── */
.term-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.term-selector label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  flex-shrink: 0;
}
.term-selector select {
  padding: 8px 14px;
  border-radius: 8px;
  max-width: 220px;
  width: auto;
  border: 1.5px solid #D0DCE5;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
}

/* ── POLICY BOX ── */
.brady-policy-box {
  margin-top: 16px;
  padding: 16px 18px;
  background: #F4F7FA;
  border-radius: 10px;
  border-left: 3px solid var(--mint);
}
.brady-policy-box p {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 10px;
}
.brady-policy-box p:last-child {
  margin-bottom: 0;
}
.brady-policy-box a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.brady-policy-box a:hover {
  text-decoration: underline;
}
