/* ===== UMAMI — design tokens ===== */
:root {
  --bg: #100e0c;
  --bg-soft: #17140f;
  --panel: #1d1914;
  --panel-border: rgba(243, 237, 228, 0.09);
  --red: #8f2a20;
  --red-light: #c1483a;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --cream: #f3ede1;
  --text-dim: #b0a696;
  --text-faint: #6e6559;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;

  --container-w: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
}

p { margin: 0; }

/* ===== Section scaffolding ===== */
section { padding: 120px 0; position: relative; }
section + section { border-top: 1px solid var(--panel-border); }

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--red-light);
}

.section-subtitle {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
}

/* thin japanese-style hairline divider */
.hairline {
  width: 64px;
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: var(--cream);
}
.btn--primary:hover { background: var(--red-light); }

.btn--ghost {
  background: transparent;
  border-color: rgba(243, 237, 228, 0.3);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(16,14,12,0.75), rgba(16,14,12,0));
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(16,14,12,0.9);
  padding: 16px 0;
  border-bottom-color: var(--panel-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.logo span { color: var(--red-light); }

.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 108px;
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 0 14px rgba(0,0,0,0.35));
}
.site-header.is-scrolled .logo-img { height: 66px; }
.footer-logo-img { height: 84px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.main-nav a {
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--cream); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}
.phone-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.phone-number {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243,237,228,0.25);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  color: var(--cream);
}
.cart-toggle:hover { border-color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
.hero .container { margin: 0; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .img-placeholder {
  width: 100%;
  height: 100%;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  transform-origin: 76% center;
  animation: heroSlowZoom 26s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16,14,12,0.96) 0%, rgba(16,14,12,0.8) 42%, rgba(16,14,12,0.3) 100%),
              linear-gradient(to top, rgba(16,14,12,0.9), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.hero-title {
  font-size: clamp(38px, 5.2vw, 64px);
  margin-top: 20px;
}
.hero-title-accent { color: var(--red-light); font-style: italic; }

.hero-subtitle {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--panel-border);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
}
.hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ===== Hero gift trigger ===== */
.hero-gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hero-gift-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-soft);
  background: radial-gradient(circle, rgba(143,42,32,0.32), rgba(143,42,32,0.04));
  animation: giftPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.hero-gift:hover .hero-gift-ring {
  transform: scale(1.12);
  border-color: var(--gold);
}
.hero-gift-icon {
  font-size: 24px;
  display: inline-block;
  animation: giftSpin 5s linear infinite;
}
.hero-gift-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.3;
}
@keyframes giftSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes giftPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143,42,32,0.45); }
  50% { box-shadow: 0 0 0 9px rgba(143,42,32,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-gift-icon { animation: none; }
  .hero-gift-ring { animation: none; }
}

/* placeholder art used until real photography is dropped in */
.img-placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(143,42,32,0.35), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(201,162,39,0.18), transparent 50%),
    linear-gradient(160deg, #221d17, #14110d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: 1px dashed var(--panel-border);
}

/* ===== Category strip ===== */
.category-strip { padding: 64px 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--panel-border);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.category-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.category-card .img-placeholder { width: 100%; height: 100%; }
.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-img { transform: scale(1.06); }
.category-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 12px;
  background: linear-gradient(to top, rgba(16,14,12,0.92), transparent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-align: center;
}

/* ===== Card grids (hits / sets) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.food-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.food-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }

.food-card-media {
  aspect-ratio: 4/3;
  position: relative;
}
.food-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  background: var(--red);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}
.food-card-body { padding: 20px; }
.food-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
}
.food-card-desc {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.food-card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food-card-price {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold);
}
.food-card-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243,237,228,0.3);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.food-card-add:hover { background: var(--red); border-color: var(--red); }

/* ===== Reviews ===== */
.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}
.review-author {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}

/* ===== FAQ accordion ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 4px 24px;
}
.faq-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--cream);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 20px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== Placeholder blocks for not-yet-built interactive sections ===== */
.stage-placeholder {
  border: 1px dashed var(--panel-border);
  border-radius: 4px;
  padding: 64px 32px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
}

/* ===== Cart drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,14,12,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: var(--bg-soft);
  border-left: 1px solid var(--panel-border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--panel-border);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 22px;
}
.cart-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.cart-empty {
  color: var(--text-faint);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}
.cart-drawer-foot {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--panel-border);
}

/* ===== Gift wheel modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16,14,12,0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.wheel-modal {
  position: relative;
  width: 420px;
  max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .wheel-modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
}

.wheel-title {
  font-size: 24px;
  margin-top: 10px;
}

.wheel-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 32px auto 28px;
}
.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid var(--gold);
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
}
.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  border: 6px solid var(--cream);
  box-shadow: 0 0 0 2px var(--panel-border), 0 20px 40px rgba(0,0,0,0.45);
  transition: transform 3.6s cubic-bezier(0.17, 0.89, 0.24, 1);
}
.wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg-soft);
}
.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 0;
  transform-origin: 0 0;
  padding-left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.15;
}

.wheel-result {
  margin-top: 22px;
  padding: 18px;
  border: 1px dashed var(--gold-soft);
  border-radius: 4px;
}
.wheel-result-prize {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}
.wheel-result-code {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.wheel-hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ===== Footer ===== */
.site-footer {
  padding: 80px 0 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--panel-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-dim); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--panel-border);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Cart items ===== */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--panel-border);
}
.cart-item:first-child { padding-top: 0; }
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--panel);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}
.cart-item-price {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gold);
}
.cart-item-qty {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(243,237,228,0.25);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--gold); }
.cart-item-qty span { font-size: 13px; min-width: 14px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 14px;
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--red-light); }

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

/* ===== Checkout modal ===== */
.checkout-modal {
  width: 480px;
  text-align: left;
}
.checkout-items {
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.checkout-items .cart-item-img { width: 44px; height: 44px; }
.checkout-items .cart-item { padding: 10px 0; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--gold); }

.segmented {
  display: flex;
  border: 1px solid var(--panel-border);
  border-radius: 3px;
  overflow: hidden;
}
.segmented-opt {
  flex: 1;
  padding: 11px 10px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
}
.segmented-opt.is-active { background: var(--red); color: var(--cream); }

.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }
.promo-msg { margin-top: 8px; font-size: 12.5px; min-height: 16px; }
.promo-msg.is-ok { color: #7fae8f; }
.promo-msg.is-error { color: var(--red-light); }

.checkout-totals {
  border-top: 1px solid var(--panel-border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 4px 0;
}
.checkout-totals-row.is-total {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-top: 6px;
}

.checkout-demo-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

.checkout-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
#checkoutSuccess { text-align: center; }
#checkoutSuccess .wheel-title { text-align: center; }
#checkoutTrackBtn { margin-top: 24px; }

/* ===== Quiz ===== */
.quiz-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.quiz-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--panel-border);
}
.quiz-dot.is-active { background: var(--red); }
.quiz-question {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 28px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-opt {
  padding: 16px 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.quiz-opt:hover { border-color: var(--gold); transform: translateY(-2px); }

.quiz-result-title {
  font-size: 26px;
  margin-top: 8px;
}
.quiz-result-desc {
  margin-top: 12px;
  color: var(--text-dim);
}
.quiz-result-price {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}
.quiz-promo {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-dim);
}
.quiz-promo strong { color: var(--red-light); }
.quiz-result-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Order tracker ===== */
.tracker-box { max-width: 640px; margin: 0 auto; }
.tracker-order-id {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 36px;
}
.tracker-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.tracker-steps::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--panel-border);
  z-index: 0;
}
.tracker-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.tracker-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-faint);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.tracker-step.is-active .tracker-dot {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
  box-shadow: 0 0 0 4px rgba(143,42,32,0.25);
}
.tracker-step.is-done .tracker-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #171310;
}
.tracker-label {
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}
.tracker-step.is-active .tracker-label,
.tracker-step.is-done .tracker-label { color: var(--cream); }
.tracker-eta {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .card-grid, .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .card-grid, .card-grid--3 { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100%; }
}
