@import url("./fonts.css");

:root {
  --orange: #f77b28;
  --orange-press: #e56a18;
  --ink: #100e0c;
  --cream: #f3ead8;
  --paper: #f7f1e6;
  --muted: #7a7268;
  --mono: var(--font);
  --display: "Seatren", "Newblack", sans-serif;
  --font: "Newblack", system-ui, sans-serif;
  --gutter: 24px;
  --shell: 1280px;
  --page-x: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  --r: 2px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.45;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  font-synthesis: none;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 0.92;
}
.product h3,
.dish h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.ticker {
  overflow: hidden;
  background: var(--orange);
  color: #1a0e06;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 0;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 36s linear infinite;
}
.ticker-track span { flex-shrink: 0; }
.ticker-track span:nth-child(odd) { color: var(--cream); }
.ticker-track span:nth-child(even) { color: #1a0e06; }
.ticker-track span::after {
  content: " · ";
  padding: 0 1.25em;
  color: #1a0e06;
  opacity: 0.5;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px var(--page-x);
  background: rgba(16, 14, 12, 0.92);
  backdrop-filter: blur(12px);
}
.logo img { height: 54px; width: auto; }
.logo { flex-shrink: 0; }
.header-end {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  min-width: 0;
}
.nav-desktop { display: flex; align-items: center; gap: 22px; }
.nav-desktop a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: rgba(243, 234, 216, 0.82);
}
.nav-desktop a:not(.btn):hover { color: #fff; }

.open-lamp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-synthesis: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3dcc6f;
  background: transparent;
  padding: 4px 0;
  box-shadow: none;
  white-space: nowrap;
}
.open-lamp[data-state="open"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dcc6f;
  box-shadow: 0 0 0 0 rgba(61, 204, 111, 0.55);
  animation: open-dot 1.6s ease-out infinite;
}
.open-lamp[data-state="open"] {
  animation: open-glow 1.6s ease-in-out infinite;
}
.open-lamp[data-state="closed"] {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}
@keyframes open-dot {
  0% { box-shadow: 0 0 0 0 rgba(61, 204, 111, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 204, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 204, 111, 0); }
}
@keyframes open-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(61, 204, 111, 0); }
  50% { text-shadow: 0 0 12px rgba(61, 204, 111, 0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .open-lamp[data-state="open"],
  .open-lamp[data-state="open"]::before { animation: none; }
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px var(--page-x) 28px;
  background: var(--ink);
}
.nav-mobile a:not(.btn) { font-size: 28px; font-family: var(--display); font-weight: 700; }
.nav-mobile[hidden] { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--r);
  font-family: var(--display);
  font-weight: 700;
  font-synthesis: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn-accent { background: var(--orange); color: #fff; }
.btn-accent:hover { background: var(--orange-press); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-lg { min-height: 50px; padding: 0 20px; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
  height: calc(100svh - 115px);
  max-height: 780px;
  position: relative;
}

.ticket {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #14110f;
  color: var(--cream);
  padding: 36px 28px 28px var(--page-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background-image: radial-gradient(circle, #0a0908 5px, transparent 5.5px);
  background-size: 18px 14px;
  background-repeat: repeat-x;
}
.ticket::before { top: -7px; }
.ticket::after { bottom: -7px; }
.ticket-side {
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: -8px;
  width: 16px;
  background-image: radial-gradient(circle, #0a0908 6px, transparent 6.5px);
  background-size: 16px 18px;
  background-repeat: repeat-y;
  pointer-events: none;
  z-index: 0;
}

.night-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}
.ticket > :not(.night-sky):not(.ticket-side) { position: relative; z-index: 3; }
.moon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 40px;
  line-height: 1;
  animation: moon-glow 4s ease-in-out infinite;
}
.sparkle {
  position: absolute;
  left: auto;
  color: #f3ead8;
  font-size: 12px;
  animation: twinkle 2.4s ease-in-out infinite;
}
.sparkle-1 { top: 18%; right: 18%; animation-delay: 0s; }
.sparkle-2 { top: 36%; right: 10%; animation-delay: 0.6s; font-size: 10px; }
.sparkle-3 { top: 58%; right: 22%; animation-delay: 1.1s; }
.sparkle-4 { top: 78%; right: 14%; animation-delay: 1.7s; font-size: 9px; }
.sparkle-5 { top: 28%; right: 28%; animation-delay: 0.3s; }
.float-sushi {
  position: absolute;
  font-size: 28px;
  opacity: 0.95;
  animation: float-sushi 5.5s ease-in-out infinite;
}
.sushi-1,
.sushi-2,
.sushi-3,
.sushi-4 { display: none; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(18deg); }
}
@keyframes float-sushi {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(4px, -6px) rotate(6deg); }
}
@keyframes moon-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(243, 234, 216, 0.35)); transform: rotate(-12deg); }
  50% { filter: drop-shadow(0 0 16px rgba(243, 234, 216, 0.7)); transform: rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .sparkle, .float-sushi, .moon { animation: none; }
}

.ticket-meta {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9186;
}

.ticket h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  margin-bottom: 18px;
}

.ticket-time { margin: 0 0 16px; }
.time-label {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.time-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9186;
  margin: 0;
}
.time-value {
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.8;
  margin: 4px 0 0;
  color: var(--orange);
}

.lead {
  margin: 0 0 22px;
  font-size: 17px;
  max-width: 32ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.ticket .btn-ink {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 234, 216, 0.45);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
  background: #000;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 28px;
  padding: 22px var(--page-x);
  background: #1a1714;
  font-family: var(--mono);
  font-size: 13px;
}
.facts p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #9a9186;
}
.facts .dots {
  flex: 1;
  border-bottom: 1px dotted #4a453e;
  transform: translateY(-4px);
}
.facts strong { color: var(--cream); font-weight: 600; }

.feature {
  background: #e4d6c0;
  padding: 48px var(--page-x);
}
.feature-ticket {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: var(--cream);
  color: var(--ink);
  position: relative;
  margin: 0;
}
.feature-ticket::before,
.feature-ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle, #e4d6c0 5px, transparent 5.5px);
  background-size: 18px 12px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.feature-ticket::before { top: -6px; }
.feature-ticket::after { bottom: -6px; }
.feature-photo {
  display: grid;
  place-items: center;
  padding: 28px 12px 28px 28px;
  background: transparent;
}
.feature-photo img {
  width: min(480px, 100%);
  mix-blend-mode: multiply;
}
.feature-copy {
  padding: 36px 32px 36px 12px;
}
.badge {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.feature h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.feature-copy p { margin: 0 0 16px; max-width: 34ch; }
.price {
  font-family: var(--mono);
  font-size: 22px !important;
  font-weight: 600;
  margin-bottom: 20px !important;
}

.thai { padding: 72px var(--page-x) 88px; }
.thai-rail {
  margin: 0 0 36px;
  text-align: center;
}
.kicker {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.thai h2,
.poke h2,
.carte h2 { font-size: clamp(40px, 6vw, 72px); }
.section-lead {
  margin: 10px auto 0;
  color: var(--muted);
  max-width: 40ch;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.dish { background: #050403; position: relative; }
.dish img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #000;
}
.dish-lead .dish img { aspect-ratio: 4 / 5; }
.dish-meta {
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dish h3 { font-size: clamp(24px, 2.2vw, 32px); }
.dish p {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.dish .plus { margin-top: 12px; background: var(--orange); color: #fff; }

.poke {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  align-items: center;
  gap: 32px;
  background: var(--cream);
  padding: 48px var(--page-x);
}
.poke-copy {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  margin: 0;
  clip-path: none;
}
.poke-copy .kicker { color: var(--orange); }
.poke-copy p:not(.kicker) { max-width: 32ch; margin: 12px 0 24px; }
.poke-photo {
  min-width: 0;
  background: transparent;
}
.poke-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.carte {
  background: var(--paper);
  color: var(--ink);
  padding: 80px var(--page-x) 64px;
}
.section-head { margin: 0 0 32px; text-align: center; }
.section-head-light .kicker { color: var(--orange); }
.section-head-light .section-lead { color: #6d655c; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #d9d1c3;
}
.product {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 8px;
  border-bottom: 1px solid #d9d1c3;
}
.product:nth-child(odd) { padding-right: 28px; }
.product:nth-child(even) { padding-left: 28px; border-left: 1px solid #d9d1c3; }
.product-img {
  width: 100px;
  height: 88px;
  background: transparent;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.sku {
  margin: 0 0 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #8a8278;
}
.product h3 { font-size: 24px; letter-spacing: 0; text-align: center; }
.product-meta { text-align: center; }
.product-meta p:not(.sku) {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 13px;
}
.diet-dots {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  gap: 4px;
}
.product .diet-dots {
  top: 6px;
  left: 6px;
}
.diet-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(16, 14, 12, 0.18);
}
.diet-dot-vegan { background: #1f8a3b; }
.diet-dot-veggie { background: #7cb342; }
.diet-dot-spicy {
  background: #d62828;
  font-size: 13px;
}

.plus {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-synthesis: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, padding 0.28s ease, width 0.28s ease;
}
.plus-mark {
  position: relative;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.plus-mark::before,
.plus-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.plus-mark::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.plus-mark::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.plus-label {
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.32s ease, opacity 0.2s ease, margin-left 0.32s ease;
}
.plus:hover,
.plus:focus-visible,
.plus.is-on {
  width: auto;
  background: var(--orange);
  color: #fff;
  padding: 0 14px 0 12px;
}
.plus:hover .plus-label,
.plus:focus-visible .plus-label,
.plus.is-on .plus-label {
  max-width: 16em;
  margin-left: 8px;
  opacity: 1;
}
.carte-note { margin: 24px 0 0; }
.carte-note a {
  font-family: var(--mono);
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
}

.close {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 80px var(--page-x);
  background: #080706;
}
.close .close-time {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(120px, 28vw, 340px);
  font-weight: 700;
  line-height: 0.8;
  color: #121110;
  pointer-events: none;
}
.close-photo {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(280px, 40vw);
  opacity: 0.85;
  pointer-events: none;
}
.close-copy { position: relative; z-index: 1; max-width: 28rem; }
.close h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.close-copy p { color: #b7aea3; margin: 0 0 24px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 40px var(--page-x) 56px;
  background: var(--ink);
  border-top: 1px solid #2a2622;
  color: #9a9186;
  font-size: 14px;
  font-family: var(--font);
}
.footer-name {
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--orange); }
.footer-credit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid #2a2622;
  color: #cfc6ba;
  font-size: 13px;
}
.footer-credit img {
  height: 18px;
  width: auto;
  display: inline-block;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 981px) {
  .night-sky {
    left: 0;
    right: 0;
    width: auto;
  }
  .moon {
    top: 8%;
    left: 54%;
    right: auto;
    font-size: 88px;
  }
  .sparkle { font-size: 20px; }
  .sparkle-1 { top: 12%; left: 72%; right: auto; }
  .sparkle-2 { top: 30%; left: 88%; right: auto; font-size: 14px; }
  .sparkle-3 { top: 47%; left: 51%; right: auto; }
  .sparkle-4 { top: 71%; left: 82%; right: auto; font-size: 16px; }
  .sparkle-5 { top: 86%; left: 63%; right: auto; }
  .float-sushi { font-size: 64px; }
  .sushi-1,
  .sushi-2,
  .sushi-3,
  .sushi-4 { display: none; }
}

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-toggle,
  .nav-mobile { display: none !important; }
  .header-end { gap: 10px; }
  .open-lamp { font-size: 14px; }
  .open-lamp[data-state="closed"] { font-size: 11px; }
  .hero,
  .feature,
  .poke,
  .thai-rail,
  .product-grid,
  .facts,
  .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: 0; height: auto; max-height: none; }
  .hero-visual { min-height: 42vh; order: -1; }
  .ticket { padding: 52px var(--page-x) 48px; }
  .ticket-side { display: none; }
  .ticket-meta { margin-bottom: 24px; }
  .ticket h1 { margin-bottom: 16px; }
  .ticket-time { margin-bottom: 24px; }
  .time-value { font-size: clamp(56px, 18vw, 88px); }
  .lead { margin-bottom: 28px; }
  .hero-actions { gap: 10px; }
  .sparkle-2,
  .sparkle-3,
  .sparkle-4,
  .sparkle-5 { display: none; }
  .sushi-1,
  .sushi-2,
  .sushi-3 { display: none; }
  .dish-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .dish-lead { grid-column: auto; }
  .dish-lead .dish img { aspect-ratio: 3 / 4; }
  .feature-ticket { grid-template-columns: 1fr; }
  .feature-copy { padding: 8px 28px 36px; }
  .poke-copy {
    padding: 0;
  }
  .product:nth-child(odd),
  .product:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .hero-actions .btn { flex: 1; }
  .close-photo { width: 160px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .logo img { height: 42px; }
  .ticket h1 { font-size: 44px; }
}

.receipt-dock .btn { width: 100%; margin-top: 4px; border-radius: 999px; }
.receipt-dock {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: min(300px, calc(100vw - 32px));
  max-height: min(72vh, 540px);
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px 12px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.dock-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 6px 4px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.dock-toggle .cart-count { margin-left: 0; }
.dock-toggle [data-cart-total] {
  margin-left: auto;
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
}
.dock-toggle::after {
  content: "–";
  font-size: 22px;
  line-height: 1;
  margin-left: 8px;
  color: #8a8278;
}
.receipt-dock.is-min {
  width: auto;
  max-width: min(300px, calc(100vw - 32px));
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 40px rgba(247, 123, 40, 0.45);
}
.receipt-dock.is-min .dock-body { display: none; }
.receipt-dock.is-min .dock-toggle { color: #fff; }
.receipt-dock.is-min .dock-toggle [data-cart-total] { color: #fff; }
.receipt-dock.is-min .dock-toggle::after { content: "+"; color: rgba(255, 255, 255, 0.85); }
.receipt-dock h2 {
  font-size: 32px;
  margin: 2px 0 8px;
  letter-spacing: 0;
}
.receipt-dock .cart-lines {
  min-height: 48px;
  max-height: 180px;
}
.receipt-dock .receipt-sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0 8px;
  font-family: var(--display);
  font-size: 24px;
}
.receipt-dock .receipt-sum span:first-child {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
}
.receipt-dock .receipt-sum span:last-child { color: var(--orange); }
.receipt-dock.is-pulse {
  animation: receipt-pulse 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes receipt-pulse {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-4px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}
.receipt-empty {
  margin: 12px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #8a8278;
  line-height: 1.4;
}
.ticket-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 14, 12, 0.08);
}
.ticket-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.ticket-price {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
}
.ticket-line .qty { grid-column: 1 / -1; justify-content: flex-start; margin-top: 2px; }
.cart-fab[hidden] { display: none; }
.cart-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  margin-left: 8px;
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.cart-drawer[hidden] { display: none; }
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--cream);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.cart-panel h2 { font-size: 42px; margin-bottom: 16px; }
.cart-lines { flex: 1; overflow: auto; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted #c9bfae;
}
.cart-line h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}
.cart-line p { margin: 4px 0 0; font-family: var(--mono); font-size: 12px; }
.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
}
.qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #efe8dc;
  border-radius: 999px;
  cursor: pointer;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-weight: 600;
  padding: 16px 0;
}
.cart-note { font-family: var(--mono); font-size: 12px; color: #6d655c; margin: 0 0 12px; }
.cart-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.checkout {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.checkout label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.checkout input,
.checkout select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #c9bfae;
  background: #fff;
  padding: 0 10px;
  font: inherit;
}
.checkout-ok {
  padding: 16px;
  background: #fff;
  font-family: var(--mono);
  font-size: 14px;
}
