/* === VARIABLES === */
:root {
  --red: #8B1A1A;
  --red-dark: #6a1212;
  --red-light: #f5eded;
  --yellow: #F5C800;
  --yellow-dark: #c8a200;
  --gold: #F2C230;
  --green: #3a8a2a;
  --white: #ffffff;
  --ink: #2B2320;
  --cream: #FBF8F3;
  --muted: #9A8F7D;
  --border: #E8E0D2;
  --card: #ffffff;
  --taupe: #9A8F7D;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(43,35,32,.06);
  --shadow-md: 0 4px 20px rgba(43,35,32,.08);

  --ease: 150ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
ol { list-style: none; }

/* === BASE === */
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.header {
  background: var(--red);
  padding: 24px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), 0 0 0 5px rgba(255,255,255,.07);
  object-fit: cover;
}

.header-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
}

.header-text h1 span { color: var(--cream); }

.header-text p {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

/* === STEPPER === */
.stepper {
  background: var(--cream);
  display: flex;
  padding: 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.stepper::-webkit-scrollbar { display: none; }

.step-btn {
  flex: 0 0 auto;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
  border: none;
  background: transparent;
  cursor: default;
  border-bottom: 2px solid transparent;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease);
}

.step-btn.active { color: var(--red); border-bottom-color: var(--red); }
.step-btn.done   { color: var(--muted); cursor: pointer; }

.step-num {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EDE6DA;
  color: var(--taupe);
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  margin-right: 6px;
  transition: background var(--ease), color var(--ease);
}

.step-btn.active .step-num { background: var(--red); color: #fff; }
.step-btn.done   .step-num { background: var(--green); color: #fff; }

/* === CONTENT === */
.content {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px 120px;
}

/* === STEP PAGES === */
.step-page        { display: none; }
.step-page.active { display: block; }

/* === CARDS === */
.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: .04em;
}

/* === BACK BUTTON === */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color var(--ease);
}

.back-btn:hover { color: var(--red); }

/* === BRANCH LIST === */
.branch-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branch-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--card);
  text-align: left;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  font-family: 'Jost', sans-serif;
}

.branch-btn:hover:not(:disabled) {
  border-color: var(--red);
  background: var(--red-light);
  box-shadow: 0 4px 16px rgba(139,26,26,.08);
}

.branch-btn:active:not(:disabled) { transform: scale(.99); }
.branch-btn:disabled { opacity: .5; cursor: not-allowed; }

.branch-btn.selected {
  border-color: var(--red);
  border-width: 1.5px;
  background: var(--red-light);
}

.branch-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #F0EBE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 20px;
  transition: background var(--ease), color var(--ease);
}

.branch-btn.selected .branch-icon-wrap {
  background: var(--red);
  color: #fff;
}

.branch-btn-info {
  flex: 1;
  min-width: 0;
}

.branch-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: .02em;
}

.branch-area {
  font-size: 12px;
  color: var(--taupe);
  margin-top: 2px;
  font-weight: 400;
}

.branch-chevron,
.branch-check {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--taupe);
  transition: color var(--ease);
}

.branch-check { display: none; color: var(--red); }

.branch-btn.selected .branch-chevron { display: none; }
.branch-btn.selected .branch-check   { display: block; }

/* === FORM FIELDS === */
.field { margin-bottom: 14px; }

label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

select,
input[type="date"],
input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

select:focus,
input[type="date"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,32,26,.1);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* === SCREEN HEADER (Step 2) === */
.screen-header {
  display: flex;
  align-items: center;
  background: var(--red);
  margin: -24px -16px 20px;
  padding: 14px 16px;
  position: relative;
}

.screen-header-back {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: background var(--ease);
}

.screen-header-back:hover { background: rgba(255,255,255,.25); }

.screen-header-center {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.screen-header-step {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.screen-header-branch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === WALK-IN STATUS PILL === */
.walkin-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  width: fit-content;
}

.walkin-status--reservable {
  background: #edfbee;
  color: #237a28;
  border: 1px solid #b6e9bc;
}

.walkin-status--walkin {
  background: #fff5f0;
  color: var(--red);
  border: 1px solid #f5c9c0;
}

/* === ROOM GRID === */
.room-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-card {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  background: var(--cream);
}

.room-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(139,26,26,.1);
  transform: translateY(-1px);
}

.room-card.selected {
  border-color: var(--red);
  border-width: 2px;
  background: var(--red-light);
  box-shadow: 0 0 0 1px var(--red);
  flex-direction: column;
  align-items: stretch;
}

.room-card-photo {
  position: relative;
  overflow: hidden;
  width: 90px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ede6da 0%, #d8cfca 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8a99a;
  font-size: 26px;
  transition: width .25s ease, height .25s ease;
}

.room-card.selected .room-card-photo {
  width: 100%;
  height: 180px;
}

.room-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === ROOM PHOTO CAROUSEL (expands on select) === */
.room-carousel {
  position: absolute;
  inset: 0;
  display: none;
}

.room-card.selected .room-carousel {
  display: block;
}

.room-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}

.room-carousel-slide.active { opacity: 1; }

.room-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43,35,32,.45);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  transition: background var(--ease);
}

.room-carousel-arrow:hover { background: rgba(43,35,32,.7); }
.room-carousel-arrow--prev { left: 8px; }
.room-carousel-arrow--next { right: 8px; }

.room-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}

.room-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}

.room-carousel-dot.active { background: #fff; }

.room-carousel-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(43,35,32,.55);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.room-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 12px;
}

.room-card-info { flex: 1; min-width: 0; }

.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .03em;
  line-height: 1.1;
}

.room-card-guests {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.room-card-price { text-align: right; flex-shrink: 0; }

.room-card-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.no-durations {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  padding: 6px 0;
}

/* === DURATION PILLS === */
.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
}

.pill:hover:not(.na):not(.selected) {
  border-color: var(--red);
  background: var(--red-light);
}

.pill:active:not(.na) { transform: scale(.95); }

.pill.selected {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pill.na {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pill-price {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
}

.pill.selected .pill-price { color: rgba(255,255,255,.75); }

/* === PRICE HIGHLIGHT === */
.price-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-top: 18px;
  min-height: 48px;
  letter-spacing: .02em;
}

.price-sub {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* === SECTION LABEL === */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  margin: 22px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-label-opt {
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* === SECTION CARD (Add-ons wrapper) === */
.section-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.optional {
  font-size: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

/* === ADD-ONS === */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: border-color var(--ease), background var(--ease);
  gap: 12px;
}

.addon-item:hover    { border-color: var(--red); }
.addon-item.selected { border-color: var(--red); background: var(--red-light); }

.addon-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.addon-icon { font-size: 22px; flex-shrink: 0; }
.addon-info { flex: 1; min-width: 0; }
.addon-name { font-weight: 600; font-size: 14px; }
.addon-desc { font-size: 11px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* === QTY CONTROLS === */
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  line-height: 1;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
  font-family: 'Jost', sans-serif;
}

.qty-btn:hover {
  border-color: var(--red);
  background: var(--red-light);
  color: var(--red);
}

.qty-btn:active { transform: scale(.88); }

.qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  transition: color var(--ease);
}

.qty-val.active { color: var(--red); }

/* === SUMMARY BOX === */
.summary-box {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 20px;
  color: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 16px;
}

.summary-row:last-of-type { border-bottom: none; }

.summary-row .lbl {
  color: rgba(255,255,255,.45);
  font-weight: 400;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.summary-row .val {
  font-weight: 600;
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,200,0,.25);
}

.summary-total .t-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}

.summary-total .t-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--yellow);
}

/* === TERMS BOX === */
.terms-box {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1.5px solid var(--border);
  margin-bottom: 16px;
}

.terms-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .04em;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  counter-reset: li;
}

.terms-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  counter-increment: li;
}

.terms-list li::before {
  content: counter(li);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.terms-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: border-color var(--ease), background var(--ease);
}

.terms-agree:hover { border-color: var(--red); }

.terms-agree.checked {
  border-color: var(--green);
  background: #f0faf0;
}

.terms-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
  margin-top: 1px;
}

.terms-agree.checked .terms-checkbox {
  background: var(--green);
  border-color: var(--green);
}

.terms-agree.checked .terms-checkbox::after {
  content: '✓';
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.terms-agree-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.terms-agree-text small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.terms-box--confirm { text-align: left; margin-top: 16px; }

/* === NOTICE === */
.notice {
  background: #fffbf0;
  border-left: 3px solid var(--yellow-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.7;
  color: #5a4800;
  font-weight: 500;
  margin-bottom: 16px;
}

/* === PAY PENDING === */
.pay-pending {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.pay-pending.show { display: block; }

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  margin: 0 auto 22px;
}

.pending-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
}

.pending-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
  font-weight: 400;
}

.pending-ref {
  display: inline-block;
  background: var(--yellow);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: .06em;
}

/* === CTA === */
.cta-wrap {
  padding: 14px 16px 28px;
  position: sticky;
  bottom: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  z-index: 50;
}

.cta-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 20px rgba(232,32,26,.3);
}

.cta-btn:hover:not(:disabled) {
  background: var(--red-dark);
  box-shadow: 0 6px 28px rgba(232,32,26,.4);
}

.cta-btn:active:not(:disabled) { transform: scale(.98); }

.cta-btn:disabled {
  background: #d8cfc8;
  color: #a09088;
  box-shadow: none;
  cursor: not-allowed;
}

/* === CONFIRM SCREEN === */
.confirm-screen {
  display: none;
  text-align: center;
  padding: 48px 20px 80px;
  max-width: 480px;
  margin: 0 auto;
}

.confirm-screen.show { display: block; }

.confirm-icon { font-size: 64px; margin-bottom: 16px; }

.confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
}

.confirm-id-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.confirm-id {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  margin: 12px 0;
}

.confirm-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
}

.confirm-details {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 20px 0;
  border: 1px solid var(--border);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.confirm-row:last-child { border-bottom: none; }

.confirm-row .cr-label { color: var(--muted); font-weight: 400; }

.confirm-row .cr-val {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  max-width: 60%;
}

.confirm-row .cr-val--amount {
  color: var(--red);
  font-size: 16px;
}

/* === SLOT MODAL === */
.slot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}

.slot-modal-overlay.show { display: flex; }

.slot-modal {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  position: relative;
  animation: popIn .25s cubic-bezier(.34,1.56,.64,1);
}

.slot-modal-x {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: #bbb;
  line-height: 1;
  transition: color var(--ease);
}

.slot-modal-x:hover { color: var(--ink); }

.slot-modal-icon {
  font-size: 52px;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1;
}

.slot-modal-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.slot-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: .02em;
}

.slot-modal-msg {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 14px;
}

.slot-modal-gift {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbf0;
  border: 1px solid #f5e7a0;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: left;
}

.slot-modal-gift-icon {
  font-size: 22px;
  color: #c8a200;
  flex-shrink: 0;
  margin-top: 1px;
}

.slot-modal-gift p {
  font-size: 13px;
  font-weight: 600;
  color: #5a4800;
  line-height: 1.6;
}

.slot-modal-close {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--ease);
  margin-bottom: 10px;
}

.slot-modal-close:hover { background: var(--red-dark); }

.slot-modal-alt {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.slot-modal-alt:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* === BRANCH LOADING / ERROR === */
.branch-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.branch-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}

.branch-error {
  grid-column: 1 / -1;
  padding: 16px 4px;
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  line-height: 1.5;
}

/* === DATE DISPLAY === */
.date-display {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 5px;
  min-height: 14px;
  letter-spacing: .02em;
}

/* === ROOM PLACEHOLDER === */
.room-placeholder {
  padding: 20px 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  width: 100%;
}

/* === UTILITIES === */
.u-hidden { display: none !important; }

/* === ANIMATIONS === */
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes popIn   { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
