@font-face {
  font-family: "URW Geometric Arabic";
  src: url("../fonts/URWGeometricArabic-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "URW Geometric Arabic";
  src: url("../fonts/URWGeometricArabic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "URW Geometric Arabic";
  src: url("../fonts/URWGeometricArabic-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "URW Geometric Arabic";
  src: url("../fonts/URWGeometricArabic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: hsl(230deg 47% 27%);
  --primary-dark: hsl(206deg 58% 17%);
  --secondary: hsl(358deg 85% 52%);
  --secondary-dark: hsl(358deg 85% 42%);
  --accent-blue: hsl(200deg 72% 56%);
  --accent-green: hsl(102deg 48% 51%);
  --accent-yellow: hsl(46deg 100% 52%);
  --accent-orange: hsl(26deg 91% 54%);
  --page-bg: hsl(207deg 43% 96%);
  --white: #fff;
  --black: #101722;
  --muted: #596273;
  --line: #dfe4ea;
  --danger: #bd2822;
  --success: #3e861c;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(27,36,44,.08);
  --shadow-lg: 0 16px 30px rgba(27,36,44,.14);
  --content: 1128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  min-height: 100vh;
  font-family: "URW Geometric Arabic", Tahoma, Arial, sans-serif;
  color: var(--primary-dark);
  background: var(--page-bg);
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }
.hidden { display: none !important; }
.muted { color: var(--muted); }
.text-small { font-size: .88rem; }
.material-symbols-outlined { font-family: "Material Symbols Outlined" !important; direction: ltr; }

.promo-bar {
  position: relative;
  width: 100%;
  height: 34px;
  min-height: 34px;
  overflow: hidden;
  background: #65c346;
  color: #21366d;
  direction: ltr;
}

.promo-moving {
  position: absolute;
  top: 50%;
  left: 0;

  display: flex;
  align-items: center;
  gap: 7px;

  width: max-content;
  white-space: nowrap;
  direction: rtl;

  font-size: 11px;
  font-weight: 600;

  transform: translate(-100%, -50%);
  animation: promoLeftToRight 11s linear infinite;
}

.promo-badge {
  background: #a9df92;
  border-radius: 14px;
  padding: 3px 12px;
  font-weight: 700;
}

.promo-spark {
  font-size: 19px;
  line-height: 1;
}

@keyframes promoLeftToRight {
  from {
    transform: translate(-100%, -50%);
  }

  to {
    transform: translate(100vw, -50%);
  }
}

.promo-bar:hover .promo-moving {
  animation-play-state: paused;
}
.promo-bar a { font-weight: 700; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-row {
  width: min(var(--content), calc(100% - 32px));
  min-height: 96px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}
.brand img { width: 175px; max-height: 70px; object-fit: contain; }
.brand-fallback { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 24px; flex: 1; }
.main-nav a { font-weight: 600; white-space: nowrap; }
.main-nav a:hover { color: var(--secondary); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--white); color: var(--primary); display: grid; place-items: center;
}
.book-btn, .primary-btn, .secondary-btn, .outline-btn, .danger-btn {
  border: 0;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.book-btn, .primary-btn { color: var(--white); background: var(--secondary); }
.book-btn:hover, .primary-btn:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.primary-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.secondary-btn { color: var(--white); background: var(--primary); }
.secondary-btn:hover { background: var(--primary-dark); }
.outline-btn { color: var(--primary); background: transparent; border: 2px solid var(--primary); }
.outline-btn:hover { background: rgba(40,49,102,.06); }
.danger-btn { color: var(--white); background: var(--danger); }

.mobile-menu-btn { display: none; }
.mobile-menu {
  display: none;
  padding: 14px 20px 22px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: grid; gap: 14px; }

.stepper-wrap { background: var(--primary); color: var(--white); }
.stepper {
  width: min(var(--content), calc(100% - 32px));
  min-height: 78px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 12px;
}
.step {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .55;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(255,255,255,.3);
  width: calc(100% - 44px);
  left: calc(-100% + 52px);
  top: 21px;
}
.step-number {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  display: grid; place-items: center; flex: 0 0 auto; font-weight: 700;
  background: var(--primary);
}
.step.active, .step.completed { opacity: 1; }
.step.active .step-number { background: var(--secondary); border-color: var(--secondary); }
.step.completed .step-number { background: var(--accent-green); border-color: var(--accent-green); }
.step-label { font-weight: 600; line-height: 1.3; }

.page-shell { width: min(var(--content), calc(100% - 32px)); margin: 44px auto 80px; }
.page-heading { margin-bottom: 28px; }
.page-heading h1 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 8px; color: var(--primary); }
.page-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}
.panel {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.panel-title { margin: 0 0 6px; font-size: 1.5rem; color: var(--primary); }
.panel-subtitle { margin: 0 0 22px; color: var(--muted); }
.section-block { margin-top: 32px; }
.section-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 16px; }
.section-head h2 { margin: 0; font-size: 1.45rem; color: var(--primary); }

.ticket-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.ticket-card {
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border .15s ease, transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 190px;
}
.ticket-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ticket-card.selected { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(238,27,40,.12), var(--shadow-sm); }
.ticket-visual { padding: 18px; display: grid; place-items: center; min-height: 100%; }
.ticket-visual img { width: 90px; height: 90px; object-fit: contain; }
.ticket-visual.accent-blue { background: #dceef9; }
.ticket-visual.accent-yellow { background: #fff4bd; }
.ticket-visual.accent-orange { background: #ffe0c9; }
.ticket-visual.accent-green { background: #e4f4d8; }
.ticket-body { padding: 18px 18px 18px 12px; display: flex; flex-direction: column; }
.ticket-body h3 { margin: 0 0 8px; font-size: 1.13rem; color: var(--primary-dark); }
.ticket-body p { margin: 0 0 14px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.ticket-price { margin-top: auto; display: flex; align-items: baseline; gap: 5px; color: var(--primary); }
.ticket-price strong { font-size: 1.55rem; }
.ticket-price span { font-size: .85rem; }

.guest-list { display: grid; gap: 12px; }
.guest-row {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.guest-copy h3 { margin: 0 0 4px; font-size: 1rem; }
.guest-copy p { margin: 0; color: var(--muted); font-size: .86rem; }
.guest-copy .unit-price { margin-top: 5px; color: var(--primary); font-weight: 700; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 38px; height: 38px; border: 1px solid var(--primary); border-radius: 50%;
  background: var(--white); color: var(--primary); font-size: 1.2rem; font-weight: 700;
}
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-value { min-width: 24px; text-align: center; font-weight: 700; font-size: 1.1rem; }

.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.calendar-toolbar button { border: 1px solid var(--line); background: var(--white); border-radius: 50%; width: 40px; height: 40px; }
.calendar-month { font-weight: 700; color: var(--primary); }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.calendar-weekdays div { text-align: center; color: var(--muted); font-size: .8rem; padding: 6px; }
.calendar-day {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 82px;
  background: var(--white);
  padding: 9px 7px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.calendar-day.blank { visibility: hidden; }
.calendar-day.available:hover { border-color: var(--accent-blue); box-shadow: var(--shadow-sm); }
.calendar-day.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }
.calendar-day.closed { color: #8b949e; background: #f1f3f5; cursor: not-allowed; }
.day-number { font-weight: 700; }
.day-label { font-size: .78rem; line-height: 1.25; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; color: var(--muted); font-size: .84rem; }
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-left: 5px; }

.summary-card { position: sticky; top: 230px; }
.summary-card h2 { margin: 0 0 18px; color: var(--primary); }
.summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-line:last-of-type { border-bottom: 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding-top: 18px; margin-top: 8px; border-top: 2px solid var(--primary); }
.summary-total strong { font-size: 1.6rem; color: var(--primary); }
.summary-actions { display: grid; gap: 10px; margin-top: 20px; }
.summary-empty { color: var(--muted); text-align: center; padding: 18px 0; }

.addon-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.addon-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.addon-top { min-height: 170px; padding: 20px; display: grid; place-items: center; background: #eceff2; }
.addon-top.gold { background: #fff2b6; }
.addon-top.photo { background: #ddecf9; }
.addon-top img { width: 120px; height: 120px; object-fit: contain; }
.addon-body { padding: 20px; }
.addon-body h3 { margin: 0 0 10px; color: var(--primary); }
.addon-features { margin: 12px 0 18px; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: .9rem; }
.addon-features li { display: flex; gap: 8px; align-items: flex-start; }
.addon-features li::before { content: "✓"; color: var(--success); font-weight: 700; }
.addon-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.addon-price { font-size: 1.35rem; font-weight: 700; color: var(--primary); }

.cart-list { display: grid; gap: 16px; }
.cart-group { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-group-header { background: var(--primary); color: var(--white); padding: 16px 20px; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.cart-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 16px; padding: 18px 20px; align-items: center; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item img { width: 74px; height: 74px; object-fit: contain; border-radius: 12px; background: #f4f6f8; padding: 8px; }
.cart-item h3 { margin: 0 0 5px; color: var(--primary); }
.cart-item p { margin: 3px 0; color: var(--muted); font-size: .88rem; }
.cart-item-price { font-weight: 700; color: var(--primary); white-space: nowrap; }
.cart-item-actions { display: flex; gap: 10px; margin-top: 9px; }
.text-btn { border: 0; background: none; color: var(--primary); font-weight: 700; padding: 0; }
.text-btn.danger { color: var(--danger); }

.checkout-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 28px; align-items: start; }
.checkout-sections { display: grid; gap: 18px; }
.checkout-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 24px; }
.checkout-card h2 { margin: 0 0 15px; color: var(--primary); }
.info-banner { background: #eaf6fd; border: 1px solid #b8dff6; border-radius: 12px; padding: 14px 16px; display: flex; gap: 10px; color: #135a83; }
.policy-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.policy-item { border: 1px solid var(--line); border-radius: 12px; padding: 13px; display: flex; gap: 10px; align-items: flex-start; }
.policy-item .material-symbols-outlined { color: var(--secondary); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; }
.field input, .field select {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bdc6d0;
  border-radius: 10px;
  background: var(--white);
}
.field input:focus, .field select:focus { outline: 2px solid rgba(47,170,225,.25); border-color: var(--accent-blue); }
.payment-option { border: 2px solid var(--line); border-radius: 12px; padding: 15px; display: flex; align-items: center; gap: 12px; }
.payment-option.selected { border-color: var(--secondary); background: #fff5f6; }
.checkbox-row { display: flex; gap: 9px; align-items: flex-start; margin-top: 14px; }
.checkbox-row input { margin-top: 4px; }

.status-page { min-height: calc(100vh - 190px); display: grid; place-items: center; padding: 40px 16px; }
.status-card { width: min(560px,100%); background: var(--white); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 36px; text-align: center; }
.status-icon { width: 82px; height: 82px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; color: var(--white); background: var(--success); }
.status-icon.error { background: var(--danger); }
.status-icon.empty { background: var(--primary); }
.status-card h1 { color: var(--primary); margin: 0 0 10px; }
.status-card p { color: var(--muted); line-height: 1.7; }
.loader { width: 56px; height: 56px; border: 5px solid #e5e8eb; border-top-color: var(--secondary); border-radius: 50%; margin: 0 auto 22px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.toast-host { position: fixed; top: 22px; left: 22px; z-index: 100; display: grid; gap: 8px; }
.toast { min-width: 260px; max-width: 360px; background: var(--primary-dark); color: var(--white); padding: 13px 16px; border-radius: 12px; box-shadow: var(--shadow-lg); animation: toast-in .22s ease; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes toast-in { from { transform: translateY(-12px); opacity: 0; } }

.site-footer { background: var(--primary-dark); color: var(--white); padding: 38px 16px; margin-top: 70px; }
.footer-inner { width: min(var(--content),100%); margin: auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; opacity: .9; }
.footer-note { opacity: .75; }

@media (max-width: 930px) {
  .main-nav, .header-actions .desktop-only { display: none; }
  .mobile-menu-btn { display: grid; }
  .header-row { min-height: 78px; }
  .brand img { width: 145px; }
  .layout-two, .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .ticket-grid, .addon-grid { grid-template-columns: 1fr; }
  .stepper { overflow-x: auto; grid-template-columns: repeat(4,minmax(175px,1fr)); padding: 14px 0; }
  .stepper-wrap { overflow: hidden; }
}
@media (max-width: 620px) {
  .page-shell { width: min(100% - 20px, var(--content)); margin-top: 28px; }
  .promo-bar { font-size: .82rem; }
  .header-row { width: calc(100% - 20px); gap: 10px; }
  .brand { min-width: 0; flex: 1; }
  .brand img { width: 132px; }
  .ticket-card { grid-template-columns: 90px 1fr; min-height: 165px; }
  .ticket-visual { padding: 10px; }
  .ticket-visual img { width: 70px; height: 70px; }
  .ticket-body { padding: 14px 12px; }
  .guest-row { align-items: flex-start; }
  .calendar-day { min-height: 70px; padding: 7px 3px; }
  .calendar-weekdays, .calendar-grid { gap: 4px; }
  .panel { padding: 17px; }
  .cart-item { grid-template-columns: 66px 1fr; }
  .cart-item-price { grid-column: 2; }
  .form-grid, .policy-grid { grid-template-columns: 1fr; }
}

/* ===== Pixel-matched ticket-selection rebuild ===== */
body.ticket-selection-page { background:#f4fafc; color:#0c2b43; }
body.ticket-selection-page .site-footer { display:none; }

.promo-bar {
  height:34px; min-height:34px; padding:0 8px; overflow:hidden;
  background:#65c346; color:#21366d; font-size:13px; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:7px; white-space:nowrap;
}
.promo-badge { background:#a9df92; border-radius:14px; padding:3px 12px; font-weight:700; }
.promo-spark { font-size:19px; line-height:1; }
.site-header { position:relative; top:auto; background:#27356f; box-shadow:none; }
.header-row { width:min(1128px, calc(100% - 34px)); min-height:96px; margin:auto; display:flex; align-items:center; gap:24px; }
.brand { min-width:120px; margin-inline-end:0; }
.brand img { width:104px; height:64px; object-fit:contain; }
.main-nav { color:#fff; }
.header-actions { margin-inline-start:auto; display:flex; align-items:center; gap:18px; }
.book-btn { min-height:50px; padding:11px 24px; color:#fff; background:#d0d1d3; font-size:16px; border-radius:999px; }
.book-btn:hover { background:#c5c6c8; transform:none; box-shadow:none; }
.mobile-menu-btn { width:35px; height:32px; padding:0; border:0; background:transparent; display:none; flex-direction:column; justify-content:center; gap:5px; }
.mobile-menu-btn span { display:block; width:32px; height:4px; border-radius:1px; background:#fff; }
.mobile-menu { background:#27356f; color:#fff; border-top:1px solid rgba(255,255,255,.2); }

.stepper-wrap { background:#fff; color:#25346f; border-bottom:1px solid #d9e0e4; }
.stepper { width:min(1128px, calc(100% - 34px)); min-height:62px; margin:auto; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; padding:14px 0 7px; direction:rtl; }
.step { display:block; opacity:1; min-width:0; }
.step::after { display:none !important; }
.step-line { height:3px; border-radius:5px; background:#aaa3a3; margin-bottom:7px; }
.step-caption { font-size:13px; font-weight:600; color:#999; white-space:nowrap; text-align:center; }
.step.active .step-line { background:#26346e; }
.step.active .step-caption { color:#10263d; text-align:right; font-weight:700; }
.step.completed .step-line { background:#65c346; }

.tickets-page-shell { width:min(100%, 1128px); margin:0 auto; padding:36px 18px 48px; }
.tickets-intro { margin-bottom:30px; }
.tickets-intro h1 { margin:0 0 9px; color:#26346e; font-size:31px; line-height:1.2; font-weight:500; }
.tickets-intro p { margin:0 0 28px; font-size:18px; color:#102d45; }
.ticket-filters { display:flex; flex-wrap:wrap; gap:8px; }
.filter-chip { border:0; background:#e2edf5; color:#24346e; min-height:34px; padding:6px 11px; border-radius:6px; font-size:13px; font-weight:600; }
.filter-chip.active { background:#26346e; color:#fff; }
.filter-chip b { font-weight:700; }
.ticket-category-section { margin-bottom:34px; }
.category-title { margin:0 0 14px; font-size:13px; color:#09283e; font-weight:700; }
.reference-ticket-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.reference-ticket-card { background:#fff; border:2px solid transparent; border-radius:25px; padding:24px 25px 23px; min-height:260px; display:flex; flex-direction:column; transition:border-color .15s ease; }
.reference-ticket-card.selected { border-color:#ee2433; }
.ticket-card-top { display:flex; align-items:flex-start; gap:22px; }
.ticket-icon { width:65px; height:65px; object-fit:cover; border-radius:7px; flex:0 0 auto; }
.ticket-title-wrap { flex:1; min-width:0; }
.ticket-badge { display:inline-block; background:#e6e8f0; color:#29376f; border-radius:4px; padding:4px 8px; font-size:11px; font-weight:700; line-height:1; margin-bottom:10px; }
.ticket-title-wrap h3 { margin:0; color:#092a44; font-size:25px; line-height:1.28; font-weight:600; }
.ticket-description { margin:21px 0 14px; color:#092a44; font-size:15px; line-height:1.75; }
.ticket-details { align-self:flex-start; color:#ef2633; font-size:13px; text-decoration:underline; margin-top:auto; }
.ticket-card-bottom { display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-top:20px; }
.ticket-start-price { display:grid; gap:6px; color:#092a44; }
.ticket-start-price span { font-size:13px; }
.ticket-start-price strong { font-family:Arial, sans-serif; font-size:20px; direction:ltr; font-weight:700; }
.ticket-start-price small, .unit-price small, .booking-summary-strip small { font-family:Arial,sans-serif; font-size:.8em; }
.ticket-select-btn { min-width:80px; min-height:49px; padding:10px 18px; border:1.5px solid #f3212f; border-radius:999px; color:#f3212f; background:#fff; font-size:15px; }
.ticket-select-btn:hover { background:#fff6f7; }

.booking-stage { border-top:1px solid #ced7dd; padding:18px 0 24px; margin-top:24px; }
.stage-heading h2 { margin:0 0 12px; font-size:29px; font-weight:500; color:#25346f; }
.stage-heading p { margin:0 0 20px; font-size:17px; color:#5d6b76; }
.disabled-stage .stage-heading h2, .disabled-stage .stage-heading p { color:#c6c6c6; }
.disabled-stage #guest-list, .disabled-stage #calendar { display:none; }
.guest-list { display:grid; gap:12px; }
.guest-row { background:#fff; border:0; border-radius:16px; padding:17px 18px; }
.guest-copy h3 { color:#102d45; font-size:17px; }
.guest-copy p { color:#66737d; }
.unit-price { font-family:Arial,sans-serif; }
.qty-btn { border-color:#f3212f; color:#f3212f; }
.calendar-card { background:#fff; border-radius:20px; padding:16px; }
.calendar-day { border-radius:9px; }
.calendar-day.selected { background:#26346e; border-color:#26346e; }
.booking-summary-strip { background:#fff; border-radius:18px; padding:15px 18px; margin-top:15px; }
.booking-summary-strip > div { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.booking-summary-strip > div > div { display:grid; gap:3px; }
.booking-summary-strip span { font-size:12px; color:#6c7780; }
.booking-summary-strip strong { color:#102d45; }
.continue-bar { border-top:1px solid #ced7dd; padding-top:23px; margin-top:12px; }
.continue-booking-btn { width:100%; min-height:50px; border:0; border-radius:999px; background:#26346e; color:#fff; font-size:16px; font-weight:700; }
.continue-booking-btn:disabled { background:#bdbdbd; color:#fff; cursor:not-allowed; }
.load-error { padding:20px; background:#fff; border-radius:16px; }

@media (max-width:930px) {
  .main-nav { display:none; }
  .mobile-menu-btn { display:flex; }
  .header-row { min-height:96px; }
  .reference-ticket-list { grid-template-columns:1fr; }
}

@media (max-width:620px) {
  .promo-bar { justify-content:flex-start; transform:none; }
  .promo-copy { margin-inline-start:-10px; }
  .header-row { width:calc(100% - 34px); min-height:96px; gap:12px; }
  .brand { min-width:0; flex:0 0 auto; }
  .brand img { width:92px; height:62px; }
  .header-actions { margin-inline-start:auto; gap:13px; flex-direction:row-reverse; }
  .book-btn { min-height:50px; padding:10px 21px; font-size:16px; }
  .mobile-menu-btn { flex:0 0 35px; }
  .stepper { width:calc(100% - 38px); grid-template-columns:7fr 1fr 1fr 1fr; gap:17px; min-height:61px; padding-top:15px; }
  .step-line { height:3px; }
  .step-caption { font-size:12px; }
  .tickets-page-shell { padding:39px 10px 48px; }
  .tickets-intro { padding:0 6px; }
  .tickets-intro h1 { font-size:29px; }
  .tickets-intro p { font-size:17px; margin-bottom:28px; }
  .ticket-filters { gap:8px; }
  .filter-chip { font-size:12px; padding:6px 9px; }
  .category-title { padding:0 6px; }
  .reference-ticket-list { gap:16px; }
  .reference-ticket-card { padding:24px 25px 23px; border-radius:25px; min-height:260px; }
  .ticket-card-top { gap:20px; }
  .ticket-icon { width:64px; height:64px; }
  .ticket-title-wrap h3 { font-size:25px; }
  .ticket-description { font-size:14.5px; line-height:1.8; }
  .ticket-card-bottom { margin-top:18px; }
  .ticket-start-price strong { font-size:19px; }
  .ticket-select-btn { min-width:80px; padding-inline:16px; }
  .booking-stage { margin-inline:6px; }
  .stage-heading h2 { font-size:28px; }
  .stage-heading p { font-size:16px; }
  .continue-bar { margin-inline:6px; }
}


.field-error {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    color: #bd3129;
    font-size: 12px;
    font-weight: 600;
}

.field input.input-error {
    border-color: #bd3129 !important;
    outline-color: #bd3129 !important;
}

.field input:focus {
    outline: 2px solid rgba(41, 58, 115, 0.18);
    outline-offset: 1px;
}