/* ============================================================
   VELVET STAGE — SoldOut design direction 05
   Premium dark theatre. Ink navy + champagne gold + ivory serif.
   Fonts: Golos Text (UI) / Cormorant Garamond (display)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #0c0d12;
  --surface: #13151d;
  --raised: #1a1d27;
  --overlay: #222633;
  --ink: #f2eee6;
  --dim: #a6a29a;
  --faint: #716e68;
  --gold: #d9b45c;
  --gold-2: #e7c979;
  --gold-deep: #a8873b;
  --line: rgba(242, 238, 230, 0.10);
  --line-strong: rgba(242, 238, 230, 0.22);
  --danger: #e26d5c;
  --ok: #63c08b;
  --grad-gold: linear-gradient(115deg, #ecd28a, #d9b45c 48%, #c09943);
  --font-ui: 'Golos Text', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 10px;
  --sh-1: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 28px rgba(0, 0, 0, 0.35);
  --sh-2: 0 2px 8px rgba(0, 0, 0, 0.45), 0 22px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 6px 30px rgba(217, 180, 92, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --pad-x: 64px;
  --header-h: 78px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.55 var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: rgba(217, 180, 92, 0.35); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 var(--pad-x); }

/* type helpers */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: 0.01em; }
.kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.muted { color: var(--dim); }
.small { font-size: 13.5px; }

/* reveal motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 12px;
  font-weight: 700; font-size: 14.5px; letter-spacing: 0.04em;
  white-space: nowrap; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-gold { background: var(--grad-gold); color: #16130a; box-shadow: var(--glow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(217, 180, 92, 0.4); }
.btn-gold:active { transform: translateY(0); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }

/* icon button */
.ibtn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); color: var(--ink);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ibtn:hover { border-color: var(--gold); color: var(--gold-2); }

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid var(--line-strong); color: var(--dim);
  background: rgba(19, 21, 29, 0.6);
}
.chip-gold { border-color: rgba(217, 180, 92, 0.5); color: var(--gold-2); background: rgba(217, 180, 92, 0.09); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 36px;
  height: var(--header-h); padding: 0 var(--pad-x);
  background: rgba(12, 13, 18, 0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled { background: rgba(12, 13, 18, 0.88); border-bottom-color: var(--line); }
.brand { flex-shrink: 0; display: flex; align-items: center; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { position: relative; font-size: 14.5px; font-weight: 600; color: var(--dim); padding: 6px 0; transition: color 0.2s; }
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad-gold); border-radius: 2px;
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-actions .cell { font-size: 13.5px; font-weight: 600; color: var(--dim); cursor: pointer; transition: color 0.2s; }
.header-actions .cell:hover { color: var(--ink); }
.login-btn {
  padding: 10px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1px solid rgba(217, 180, 92, 0.55); color: var(--gold-2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.login-btn:hover { background: rgba(217, 180, 92, 0.12); box-shadow: var(--glow); }
.burger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.burger:hover { color: var(--gold-2); }

/* mobile nav */
body.nav-open { overflow: hidden; }
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0; z-index: 49;
  background: rgba(12, 13, 18, 0.97); backdrop-filter: blur(10px);
  padding: 26px var(--pad-x) 40px; flex-direction: column; gap: 4px;
}
body.nav-open .mobile-nav { display: flex; }
.mobile-nav a { padding: 15px 0; font-size: 19px; font-weight: 600; color: var(--dim); border-bottom: 1px solid var(--line); }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--gold-2); }
.mobile-nav .mn-meta { margin-top: 22px; display: flex; gap: 22px; color: var(--faint); font-size: 14px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; height: 700px; margin-top: calc(-1 * var(--header-h)); overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); pointer-events: none; }
.slide.on { opacity: 1; pointer-events: auto; }
.slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s linear; }
.slide.on > img { transform: scale(1); }
.slide .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 13, 18, 0.62), rgba(12, 13, 18, 0.18) 42%, rgba(12, 13, 18, 0.96)); }
.slide .vignette { position: absolute; inset: 0; background: radial-gradient(75% 60% at 30% 78%, rgba(12, 13, 18, 0.55), transparent 65%); }
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 0 var(--pad-x) 84px; max-width: 900px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.hero-content .meta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-title { margin: 0; font-size: clamp(52px, 6.5vw, 104px); color: var(--ink); text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6); }
.hero-sub { margin: 0; max-width: 560px; font-size: 17px; color: var(--dim); }
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.hero-price { font-size: 15px; font-weight: 600; color: var(--dim); white-space: nowrap; }
.hero-price b { color: var(--gold-2); font-weight: 800; }

.hero-nav {
  position: absolute; right: var(--pad-x); bottom: 84px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.hero-dots { display: flex; gap: 8px; margin-right: 6px; }
.hero-dots button { width: 30px; height: 4px; border-radius: 2px; background: rgba(242, 238, 230, 0.22); transition: background 0.3s; }
.hero-dots button.on { background: var(--grad-gold); }
.hero-count { position: absolute; left: var(--pad-x); top: calc(var(--header-h) + 40px); z-index: 2; font-family: var(--font-display); font-size: 20px; color: rgba(242, 238, 230, 0.5); font-style: italic; }

/* ============================================================
   SECTIONS / CARDS
   ============================================================ */
.section { padding: 84px 0 10px; }
.sec-head { display: flex; align-items: flex-end; gap: 26px; margin-bottom: 34px; }
.sec-title { margin: 0; font-size: clamp(34px, 3.4vw, 52px); }
.sec-kicker { display: block; margin-bottom: 10px; }
.sec-link {
  margin-left: auto; flex-shrink: 0; font-size: 13.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim); display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s; white-space: nowrap; padding-bottom: 6px;
}
.sec-link:hover { color: var(--gold-2); }
.sec-link svg { transition: transform 0.25s var(--ease); }
.sec-link:hover svg { transform: translateX(4px); }

.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(217, 180, 92, 0.45); box-shadow: var(--sh-2); }
.card-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 13, 18, 0.55)); }
.card-date {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 7px 13px; border-radius: 10px;
  background: rgba(12, 13, 18, 0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
}
.card-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 13, 18, 0.6); color: var(--dim); opacity: 0; transition: opacity 0.25s, color 0.2s;
}
.card:hover .card-fav { opacity: 1; }
.card-fav:hover { color: var(--gold-2); }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.3; }
.card-venue { font-size: 13.5px; color: var(--dim); }
.card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.card-price { font-size: 14.5px; font-weight: 800; color: var(--gold-2); }
.card-go { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); transition: color 0.2s; }
.card:hover .card-go { color: var(--ink); }

/* horizontal snap strip */
.strip-wrap { position: relative; }
.strip {
  display: flex; gap: 22px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip > * { scroll-snap-align: start; flex: 0 0 300px; }

/* promo band */
.promo {
  margin: 90px 0 0; border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: var(--grad-gold); color: #17130a;
  padding: 52px 60px; display: flex; align-items: center; gap: 40px;
}
.promo h3 { margin: 0 0 8px; font-size: clamp(30px, 3vw, 44px); font-family: var(--font-display); font-weight: 700; line-height: 1.05; }
.promo p { margin: 0; font-size: 15.5px; font-weight: 500; max-width: 520px; opacity: 0.85; }
.promo .btn { margin-left: auto; background: #17130a; color: var(--gold-2); flex-shrink: 0; }
.promo .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35); }
.promo .orn { position: absolute; right: -40px; top: -60px; font-family: var(--font-display); font-size: 280px; line-height: 1; opacity: 0.12; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { margin-top: 110px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 64px var(--pad-x) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand p { margin: 16px 0 22px; font-size: 14px; color: var(--dim); max-width: 300px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--dim); transition: color 0.2s, border-color 0.2s; }
.socials a:hover { color: var(--gold-2); border-color: var(--gold); }
.footer-col h4 { margin: 0 0 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.footer-col a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; align-items: center; gap: 26px; padding-top: 26px; font-size: 13px; color: var(--faint); flex-wrap: wrap; }
.pay-badges { margin-left: auto; display: flex; gap: 10px; }
.pay-badges span { padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--dim); }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.cat-mast { padding: 64px 0 0; }
.cat-mast h1 { margin: 10px 0 12px; font-size: clamp(44px, 5vw, 76px); }
.cat-mast .lead { margin: 0; color: var(--dim); font-size: 16.5px; max-width: 560px; }
.filter-bar {
  margin-top: 36px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fpill {
  padding: 10px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--line-strong); color: var(--dim);
  transition: color 0.2s, border-color 0.2s, background 0.2s; cursor: pointer;
}
.fpill:hover { color: var(--ink); border-color: var(--line-strong); }
.fpill.on { background: var(--grad-gold); color: #17130a; border-color: transparent; font-weight: 700; }
.sort-cell { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--faint); }
.sort-cell select {
  background: var(--raised); color: var(--ink); border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 10px 14px; font: 600 13.5px var(--font-ui); cursor: pointer;
}
.load-more { display: flex; justify-content: center; margin-top: 48px; }

/* ============================================================
   SHOW PAGE
   ============================================================ */
.crumbs { padding: 26px 0 0; display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--faint); flex-wrap: wrap; }
.crumbs a { color: var(--dim); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs .sep { opacity: 0.5; }

.show-hero {
  margin-top: 30px; display: grid; grid-template-columns: 460px 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.show-hero-media { position: relative; min-height: 520px; }
.show-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(19, 21, 29, 0.9)); }
.show-hero-body { padding: 52px 56px; display: flex; flex-direction: column; gap: 20px; }
.show-hero-body h1 { margin: 0; font-size: clamp(40px, 4vw, 68px); }
.show-hero-body .lead { margin: 0; color: var(--dim); font-size: 16.5px; max-width: 560px; }
.show-cta { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.fact-row { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.fact { display: flex; flex-direction: column; gap: 3px; }
.fact b { font-size: 15.5px; font-weight: 700; }
.fact span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }

.prose { max-width: 760px; color: var(--dim); font-size: 16px; }
.prose p { margin: 0 0 16px; }
.prose b { color: var(--ink); }

/* dates table */
.dates { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.dates-head, .date-row { display: grid; grid-template-columns: 190px 1fr 170px 170px; align-items: center; gap: 20px; padding: 0 30px; }
.dates-head { height: 52px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); border-bottom: 1px solid var(--line); }
.date-row { min-height: 86px; padding-top: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); transition: background 0.2s; }
.date-row:last-child { border-bottom: 0; }
.date-row:hover { background: rgba(217, 180, 92, 0.04); }
.date-cell b { display: block; font-size: 17px; font-weight: 700; }
.date-cell span { font-size: 13px; color: var(--dim); }
.venue-cell b { display: block; font-size: 15.5px; font-weight: 600; }
.venue-cell span { font-size: 13px; color: var(--dim); }
.price-cell { font-weight: 800; color: var(--gold-2); font-size: 15px; }
.cta-cell { text-align: right; }
.date-row.soon { opacity: 0.55; }
.soon-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 30px 32px; position: relative; }
.step-card .n { font-family: var(--font-display); font-size: 58px; line-height: 1; color: rgba(217, 180, 92, 0.5); font-style: italic; }
.step-card h3 { margin: 14px 0 8px; font-size: 18px; }
.step-card p { margin: 0; font-size: 14.5px; color: var(--dim); }

/* FAQ (native details) */
.faq { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 24px 30px; font-size: 16.5px; font-weight: 600; transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; margin-left: auto; font-family: var(--font-display); font-size: 30px; line-height: 1;
  color: var(--gold); transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--gold-2); }
.faq .a { padding: 0 30px 26px; color: var(--dim); font-size: 15px; max-width: 720px; }

/* ============================================================
   EVENT PAGE
   ============================================================ */
.event-hero { position: relative; height: 560px; margin-top: calc(-1 * var(--header-h)); overflow: hidden; }
.event-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-hero .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 13, 18, 0.6), rgba(12, 13, 18, 0.1) 45%, var(--bg)); }
.back-fab {
  position: absolute; left: var(--pad-x); top: calc(var(--header-h) + 26px); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 13, 18, 0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); color: var(--ink); transition: border-color 0.2s, color 0.2s;
}
.back-fab:hover { border-color: var(--gold); color: var(--gold-2); }

.event-head { position: relative; z-index: 2; margin-top: -150px; padding-bottom: 8px; }
.event-head .meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.event-head h1 { margin: 0; font-size: clamp(52px, 6vw, 96px); text-shadow: 0 4px 50px rgba(0, 0, 0, 0.7); }
.event-head .tagline { margin: 10px 0 0; font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--dim); }

.event-layout { display: flex; gap: 48px; margin-top: 40px; align-items: flex-start; }
.event-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 44px; }
.event-side { width: 400px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--header-h) + 20px); }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 34px; }
.panel h2 { margin: 0 0 14px; font-size: 26px; font-family: var(--font-display); font-weight: 700; }

/* buy card */
.buy-card { background: var(--raised); border: 1px solid rgba(217, 180, 92, 0.35); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.buy-top { padding: 28px 30px 22px; display: flex; flex-direction: column; gap: 18px; }
.when-row { display: flex; gap: 16px; align-items: center; }
.date-badge {
  width: 62px; height: 66px; border-radius: 12px; flex-shrink: 0;
  background: var(--grad-gold); color: #17130a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.date-badge b { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; }
.date-badge strong { font-size: 27px; font-weight: 800; line-height: 1; }
.when-row .dt b { display: block; font-size: 16.5px; font-weight: 700; }
.when-row .dt span { font-size: 13.5px; color: var(--dim); }
.venue-block b { display: block; font-size: 15px; font-weight: 700; }
.venue-block span { font-size: 13.5px; color: var(--dim); }
.buy-sep { height: 1px; background: var(--line); margin: 0 30px; }
.buy-bottom { padding: 22px 30px 28px; display: flex; flex-direction: column; gap: 16px; }
.price-line { display: flex; align-items: baseline; gap: 10px; }
.price-line .from { font-size: 13px; color: var(--faint); font-weight: 600; }
.price-line .val { font-size: 30px; font-weight: 800; color: var(--gold-2); font-family: var(--font-display); }
.price-line .cats { font-size: 12.5px; color: var(--faint); }
.cal-link { text-align: center; font-size: 13px; font-weight: 600; color: var(--dim); cursor: pointer; transition: color 0.2s; }
.cal-link:hover { color: var(--gold-2); }

/* countdown */
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.count-cell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 6px 12px; text-align: center; }
.count-cell b { display: block; font-size: 26px; font-weight: 700; font-family: var(--font-display); color: var(--gold-2); }
.count-cell small { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; }

/* gallery */
.gallery-main { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: zoom-in; border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-main:hover img { transform: scale(1.02); }
.gallery-counter {
  position: absolute; right: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 700;
  background: rgba(12, 13, 18, 0.7); backdrop-filter: blur(6px); border: 1px solid var(--line-strong);
}
.gallery-hint {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--dim);
  background: rgba(12, 13, 18, 0.7); backdrop-filter: blur(6px); border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 7px;
}
.thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumbs img, .thumbs .more {
  width: 92px; height: 62px; object-fit: cover; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; opacity: 0.65; transition: opacity 0.2s, border-color 0.2s;
}
.thumbs img.active { border-color: var(--gold); opacity: 1; }
.thumbs img:hover { opacity: 1; }
.thumbs .more {
  display: flex; align-items: center; justify-content: center;
  background: var(--raised); border: 1px dashed var(--line-strong);
  font-size: 13px; font-weight: 700; color: var(--dim); opacity: 1;
}
.thumbs .more:hover { color: var(--gold-2); border-color: var(--gold); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(8, 9, 13, 0.94); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; flex-direction: column; gap: 18px; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 12px; box-shadow: var(--sh-2); }
.lb-bar { display: flex; align-items: center; gap: 18px; color: var(--dim); font-size: 13.5px; font-weight: 600; }
.lb-close { position: absolute; top: 26px; right: 26px; }

/* other shows rows */
.show-row {
  display: flex; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.show-row:last-child { border-bottom: 0; padding-bottom: 4px; }
.show-row .when { flex-shrink: 0; width: 120px; }
.show-row .when b { display: block; font-size: 16px; font-weight: 700; }
.show-row .when span { font-size: 12.5px; color: var(--faint); }
.show-row .where { flex: 1; font-size: 14.5px; color: var(--dim); min-width: 0; }
.show-row .p { font-weight: 800; color: var(--gold-2); font-size: 14px; white-space: nowrap; }
.show-row.soon { opacity: 0.5; }

/* mobile sticky buy bar */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 16, 23, 0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%); transition: transform 0.35s var(--ease);
}
.buybar.show { transform: none; }
.buybar .bp { display: flex; flex-direction: column; line-height: 1.2; flex-shrink: 0; }
.buybar .bp small { font-size: 11px; color: var(--faint); font-weight: 600; }
.buybar .bp b { font-size: 17px; font-weight: 800; color: var(--gold-2); }
.buybar .btn { flex: 1; padding: 13px 16px; }

/* ============================================================
   BOOKING CHROME (hall + order)
   ============================================================ */
.booking-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 26px;
  min-height: 68px; padding: 10px var(--pad-x);
  background: rgba(12, 13, 18, 0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.stepper { display: flex; align-items: center; gap: 14px; margin: 0 auto; }
.step-pill { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--faint); white-space: nowrap; }
.step-pill .n {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); font-size: 13px; font-weight: 700;
}
.step-pill.done .n { background: rgba(217, 180, 92, 0.15); border-color: var(--gold-deep); color: var(--gold-2); }
.step-pill.current { color: var(--ink); }
.step-pill.current .n { background: var(--grad-gold); border-color: transparent; color: #17130a; }
.step-sep { width: 34px; height: 1px; background: var(--line-strong); }
.timer {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 10px; font-size: 13.5px; font-weight: 700;
  border: 1px solid rgba(226, 109, 92, 0.5); color: var(--danger); white-space: nowrap;
}

/* hall layout */
.hall-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 0; min-height: calc(100vh - 68px); }
.map-col { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.hall-top { display: flex; align-items: center; gap: 14px; padding: 20px var(--pad-x) 16px; flex-wrap: wrap; }
.hall-top h1 { margin: 0; font-size: 25px; font-family: var(--font-display); font-weight: 700; margin-right: auto; }
.legend { display: flex; gap: 10px; padding: 0 var(--pad-x) 14px; flex-wrap: wrap; }
.lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--line); color: var(--dim); cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.lg:hover { border-color: var(--line-strong); color: var(--ink); }
.lg i { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.lg.off { opacity: 0.4; }
.map-panel { position: relative; flex: 1; padding: 10px 28px 30px; display: flex; align-items: flex-start; justify-content: center; overflow: hidden; }
.map-panel svg { width: 100%; max-width: 980px; height: auto; }
.zoom-controls { position: absolute; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.zoom-controls .ibtn { background: var(--surface); }

.seat { cursor: pointer; transition: r 0.12s ease, opacity 0.15s, stroke-width 0.12s; stroke: transparent; stroke-width: 0; }
.seat:hover { stroke: var(--ink); stroke-width: 2.5; }
.seat.taken { cursor: default; opacity: 0.16; }
.seat.taken:hover { stroke: transparent; stroke-width: 0; }
.seat.sel { fill: #f2eee6 !important; stroke: var(--gold); stroke-width: 3; }
.stage-label { fill: var(--faint); font: 700 13px var(--font-ui); letter-spacing: 0.3em; }
.rownum { fill: var(--faint); font: 600 10.5px var(--font-ui); }

/* cart */
.cart { display: flex; flex-direction: column; background: var(--surface); }
.cart-head { padding: 24px 28px 18px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-size: 21px; font-family: var(--font-display); font-weight: 700; }
.cart-head .small { margin-top: 4px; color: var(--faint); }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 28px; }
.cart-empty { padding: 46px 10px; text-align: center; color: var(--faint); font-size: 14.5px; }
.cart-empty svg { margin: 0 auto 14px; display: block; opacity: 0.5; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-info b { display: block; font-size: 14px; font-weight: 700; }
.cart-item .ci-info span { font-size: 12.5px; color: var(--faint); }
.cart-item .ci-price { font-weight: 800; font-size: 14px; color: var(--gold-2); white-space: nowrap; }
.ci-x { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--faint); transition: color 0.2s, background 0.2s; flex-shrink: 0; }
.ci-x:hover { color: var(--danger); background: rgba(226, 109, 92, 0.1); }
.cart-foot { padding: 20px 28px 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; background: var(--raised); }
.total-row { display: flex; align-items: baseline; justify-content: space-between; }
.total-row span { font-size: 13.5px; color: var(--dim); font-weight: 600; }
.total-row b { font-size: 24px; font-weight: 800; font-family: var(--font-display); color: var(--gold-2); }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-wrap { display: flex; gap: 36px; padding: 40px var(--pad-x) 80px; max-width: 1320px; margin: 0 auto; align-items: flex-start; }
.order-card { flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 42px; }
.order-card h1 { margin: 0 0 26px; font-size: 34px; font-family: var(--font-display); font-weight: 700; }
.tabs { display: flex; background: var(--raised); border: 1px solid var(--line); border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 30px; }
.tab {
  flex: 1; padding: 12px 10px; border-radius: 9px; text-align: center;
  font-size: 14px; font-weight: 700; color: var(--dim); transition: background 0.2s, color 0.2s; cursor: pointer;
}
.tab.on { background: var(--grad-gold); color: #17130a; }
.tab:not(.on):hover { color: var(--ink); }

.fieldset { display: flex; flex-direction: column; gap: 18px; }
.fieldset + .fieldset, [data-tabpane] .fieldset { margin-top: 30px; }
.fs-title { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--dim); }
.field input {
  width: 100%; padding: 15px 16px; border-radius: var(--r-sm);
  background: var(--raised); border: 1px solid var(--line-strong); color: var(--ink);
  font: 500 15px var(--font-ui); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--faint); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217, 180, 92, 0.18); }
.field .hint { margin-top: 6px; font-size: 12.5px; color: var(--faint); }

.paymethods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pm {
  position: relative; border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 6px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.pm:hover { border-color: var(--gold-deep); }
.pm input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pm b { font-size: 14.5px; font-weight: 700; }
.pm span { font-size: 12.5px; color: var(--faint); }
.pm:has(input:checked) { border-color: var(--gold); background: rgba(217, 180, 92, 0.07); }
.pm:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }

.agree { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--dim); margin-top: 26px; }
.agree input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.agree a { color: var(--gold-2); border-bottom: 1px solid rgba(217, 180, 92, 0.4); }
.order-submit { margin-top: 26px; }

.order-aside { width: 400px; flex-shrink: 0; position: sticky; top: calc(68px + 20px); display: flex; flex-direction: column; gap: 20px; }
.sum-card { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.sum-event { display: flex; gap: 16px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.sum-event img { width: 64px; height: 84px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sum-event b { display: block; font-size: 16px; font-weight: 700; }
.sum-event span { display: block; font-size: 13px; color: var(--dim); margin-top: 3px; }
.sum-tickets { padding: 8px 24px; }
.trow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.trow:last-child { border-bottom: 0; }
.trow .t-name b { display: block; font-weight: 700; }
.trow .t-name span { font-size: 12.5px; color: var(--faint); }
.trow .t-price { font-weight: 700; white-space: nowrap; }
.promo-row { display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid var(--line); }
.promo-row input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); font: 500 14px var(--font-ui);
}
.promo-row input:focus { outline: none; border-color: var(--gold); }
.sum-totals { padding: 18px 24px 24px; border-top: 1px solid var(--line); background: rgba(12, 13, 18, 0.35); }
.sum-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--dim); padding: 5px 0; }
.sum-line.total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line-strong); color: var(--ink); font-weight: 800; font-size: 17px; }
.sum-line.total b { font-family: var(--font-display); font-size: 24px; color: var(--gold-2); }
.secure-note { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 12.5px; color: var(--faint); }

/* ============================================================
   LOGIN MODAL
   ============================================================ */
.veil {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8, 9, 13, 0.78); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.veil.open { display: flex; }
.modal {
  width: 440px; max-width: 100%; max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 22px;
  box-shadow: var(--sh-2); padding: 38px 40px 34px; position: relative;
  animation: modal-in 0.35s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
.modal-x { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--faint); transition: color 0.2s, background 0.2s; }
.modal-x:hover { color: var(--ink); background: var(--raised); }
.modal h1 { margin: 6px 0 24px; font-size: 34px; font-family: var(--font-display); font-weight: 700; text-align: center; }
.modal .tabs { margin-bottom: 26px; }
.modal .field + .field { margin-top: 16px; }
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 52px; }
.pass-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--faint); border-radius: 8px; transition: color 0.2s; }
.pass-eye:hover { color: var(--ink); }
.forgot-row { display: flex; justify-content: flex-end; margin-top: 10px; }
.forgot-row a { font-size: 13px; font-weight: 600; color: var(--dim); transition: color 0.2s; }
.forgot-row a:hover { color: var(--gold-2); }
.modal .btn-block { margin-top: 22px; }
.or-sep { display: flex; align-items: center; gap: 16px; margin: 22px 0; color: var(--faint); font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.or-sep::before, .or-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.google-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px; border-radius: 12px; border: 1px solid var(--line-strong);
  font-size: 14.5px; font-weight: 600; transition: border-color 0.2s, background 0.2s;
}
.google-btn:hover { border-color: var(--line-strong); background: var(--raised); }
.modal-foot { margin-top: 22px; text-align: center; font-size: 13px; color: var(--faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  :root { --pad-x: 32px; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { height: 620px; }
  .show-hero { grid-template-columns: 380px 1fr; }
  .show-hero-body { padding: 40px 38px; }
  .event-layout { flex-direction: column; align-items: stretch; gap: 28px; }
  .event-side { width: 100%; position: static; display: grid; grid-template-columns: 1fr 1fr; align-items: start; order: -1; }
  .event-head { margin-top: -130px; }
  .hall-wrap { grid-template-columns: 1fr; min-height: 0; }
  .map-col { border-right: 0; border-bottom: 1px solid var(--line); }
  .order-wrap { flex-direction: column; }
  .order-aside { width: 100%; position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .promo { padding: 42px 40px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .header-actions .cell.city, .header-actions .cell.lang { display: none; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .hero { height: 580px; }
  .hero-nav { right: auto; left: var(--pad-x); bottom: 30px; }
  .hero-content { padding-bottom: 96px; }
  .section { padding: 60px 0 8px; }
  .show-hero { grid-template-columns: 1fr; }
  .show-hero-media { min-height: 340px; }
  .show-hero-media::after { background: linear-gradient(180deg, transparent 55%, rgba(19, 21, 29, 0.95)); }
  .dates-head { display: none; }
  .date-row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 22px; }
  .date-row .venue-cell { grid-column: 1; }
  .date-row .price-cell { grid-column: 1; }
  .date-row .cta-cell { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .event-side { grid-template-columns: 1fr; }
  .promo { flex-direction: column; align-items: flex-start; gap: 22px; }
  .promo .btn { margin-left: 0; }
  .paymethods { grid-template-columns: 1fr; }
  .order-card { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .stepper .lbl { display: none; }
  .stepper .step-pill.current .lbl { display: inline; }
  .step-sep { width: 18px; }
  .cat-mast { padding-top: 44px; }
  .sort-cell { margin-left: 0; width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .pay-badges { margin-left: 0; }
}
@media (max-width: 560px) {
  :root { --pad-x: 16px; --header-h: 66px; }
  body { font-size: 15px; }
  .site-header { gap: 14px; }
  .site-header .brand img { height: 24px; }
  .header-actions { gap: 12px; }
  .login-btn { padding: 8px 15px; font-size: 12.5px; }
  .stepper { margin: 0 auto; }
  .stepper .step-pill.current .lbl { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { height: 560px; }
  .hero-title { font-size: clamp(44px, 13vw, 60px); }
  .hero-sub { font-size: 15px; }
  .hero-cta-row { width: 100%; gap: 14px; }
  .hero-cta-row .btn { flex: 1; padding: 14px 18px; font-size: 13.5px; }
  .hero-content { padding-bottom: 66px; gap: 14px; }
  .hero-nav { left: 16px; right: 16px; bottom: 22px; justify-content: center; }
  .hero-nav .ibtn { display: none; }
  .hero-dots { margin-right: 0; gap: 10px; }
  .hero-dots button { width: 34px; }
  .hero-count { display: none; }
  .sec-head { flex-wrap: wrap; gap: 10px 16px; margin-bottom: 24px; }
  .sec-title { font-size: 30px; }
  .strip > * { flex-basis: 260px; }
  .event-hero { height: 420px; }
  .event-head { margin-top: -110px; }
  .event-head h1 { font-size: clamp(42px, 12vw, 56px); }
  .panel { padding: 22px 20px; }
  .buy-top, .buy-bottom { padding-left: 22px; padding-right: 22px; }
  .buy-sep { margin: 0 22px; }
  .gallery-main img { height: 250px; }
  .thumbs img, .thumbs .more { width: 76px; height: 52px; }
  .buybar { display: flex; }
  .back-fab { left: 16px; }
  .booking-header { gap: 10px; padding-left: 12px; padding-right: 12px; }
  .booking-header .brand img { height: 18px; }
  .booking-header .cell, .booking-header .login-btn { display: none; }
  .timer { padding: 6px 9px; font-size: 11.5px; gap: 6px; }
  .show-row { flex-wrap: wrap; gap: 4px 12px; }
  .show-row .when { width: auto; flex: 1; }
  .show-row .p { margin-left: auto; }
  .show-row .where { flex-basis: 100%; order: 3; }
  .show-row .btn { order: 4; margin-top: 4px; }
  .step-pill .n { width: 26px; height: 26px; font-size: 12px; }
  .step-sep { display: none; }
  .stepper { gap: 10px; }
  .hall-top h1 { font-size: 20px; }
  .legend { gap: 8px; }
  .lg { padding: 7px 11px; font-size: 11.5px; }
  .map-panel { padding: 6px 8px 16px; flex-direction: column; align-items: stretch; }
  .zoom-controls { position: static; flex-direction: row; justify-content: center; margin-top: 12px; }
  .cart-head, .cart-body { padding-left: 18px; padding-right: 18px; }
  .cart-foot { padding: 16px 18px 20px; }
  .order-wrap { padding: 22px var(--pad-x) 56px; }
  .order-card { padding: 24px 18px; }
  .order-card h1 { font-size: 27px; }
  .order-submit { white-space: normal; padding: 14px 18px; }
  .modal { padding: 30px 24px 26px; }
  .promo { padding: 32px 24px; margin-top: 64px; }
  .promo .orn { display: none; }
  .site-footer { margin-top: 72px; }
  .footer-inner { padding-top: 44px; }
  .lightbox { padding: 16px; }
}
