/* ============================================
   LU'S V2 STYLES — Deadpan corporate iteration
   ============================================ */

/* ====== HERO V2 ====== */
.hero-v2 {
  min-height: auto;
  padding: 7rem 0 4rem;
}

.hero-inner-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 2.5rem;
}

/* Big centerpiece logo */
.hero-logo-block {
  position: relative;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}
.hero-logo-big {
  width: clamp(240px, 26vw, 360px);
  height: auto;
  animation: heroLogoBob 6s ease-in-out infinite;
}
@keyframes heroLogoBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-text-v2 {
  max-width: 1100px;
}

.hero-pre {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lu-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* The new headline */
.hero-v2 .hero-h1-v2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--lu-cream);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* City rotator — split-flap airport-display style */
.rotator-wrap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  perspective: 400px;
}
.rotator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(190px, 22vw, 380px);
  height: 1.15em;
  background: linear-gradient(180deg, var(--lu-gold) 0%, #e0b215 50%, var(--lu-gold) 50.5%, #f5c518 100%);
  color: var(--lu-red-deep);
  padding: 0 0.35em;
  border-radius: 0.08em;
  position: relative;
  vertical-align: baseline;
  overflow: hidden;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.35),
    inset 0 -2px 4px rgba(139,10,31,0.18),
    0 4px 0 #b8930f,
    0 6px 12px rgba(0,0,0,0.35);
  transform: translateY(0.05em) rotate(-1deg);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
}
/* Horizontal seam in the middle (the split between top and bottom flaps) */
.rotator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(139, 10, 31, 0.35);
  pointer-events: none;
  z-index: 5;
}
.rot-city {
  display: inline-block;
  font-family: var(--font-display);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
  transform-origin: center top;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* Flap-out: top half flips down (rotates around middle), drops below */
.rot-city.flap-out {
  animation: flapOut 0.38s cubic-bezier(0.55, 0, 0.85, 0.5) forwards;
}
@keyframes flapOut {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

/* Flap-in: new value flips down from top */
.rot-city.flap-in {
  animation: flapIn 0.38s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}
@keyframes flapIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.hero-sub-v2 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(248, 241, 227, 0.78);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-cta {
  justify-content: center;
}

/* ====== PRODUCTS V2 GRID ====== */
.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .products-grid-v2 { grid-template-columns: 1fr; }
}

.product-card-v2 {
  background: var(--lu-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}
.product-card-v2 .product-svg {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 65%, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, #fff8e8 0%, var(--lu-paper) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-v2 .product-svg svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card-v2:hover .product-svg svg {
  transform: scale(1.06) rotate(-2deg);
}

/* Decorative circle stamp behind product */
.product-card-v2 .product-svg::before {
  content: '';
  position: absolute;
  inset: 20% 20%;
  border: 2px dashed rgba(200, 16, 46, 0.15);
  border-radius: 50%;
  z-index: 0;
}
.product-card-v2 .product-svg svg { position: relative; z-index: 1; }

.product-content-v2 {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-content-v2 .prod-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-content-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.product-content-v2 .product-tag {
  font-size: 0.85rem;
  color: rgba(26,15,10,0.7);
  margin-bottom: 1rem;
  line-height: 1.45;
  flex: 1;
}
.product-content-v2 .product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-content-v2 .product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--lu-red-deep);
}
.product-content-v2 .product-order {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}
.product-content-v2 .product-order:hover {
  background: var(--lu-red);
  transform: translateX(2px);
}

/* ====== SAUCE STRIP ====== */
.sauce-strip {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255, 122, 26, 0.12), transparent 60%),
    linear-gradient(135deg, var(--lu-ink) 0%, var(--lu-charcoal) 100%);
  color: var(--lu-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sauce-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.sauce-text h2 {
  margin-bottom: 1rem;
}
.sauce-text .accent-gold {
  color: var(--lu-gold);
}
.sauce-lede {
  color: rgba(248, 241, 227, 0.75);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.sauce-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .sauce-matrix { grid-template-columns: 1fr; }
}
.sauce-axis {
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
}
.sauce-axis h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lu-gold);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.sauce-opts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sauce-opt {
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.sauce-opt > div { flex: 1; }
.sauce-opt:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--lu-gold);
}
.sauce-opt .sauce-ico {
  font-size: 1.4rem;
  text-align: center;
}
.sauce-opt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
  color: var(--lu-cream);
}
.sauce-opt span {
  display: block;
  font-size: 0.8rem;
  color: rgba(248, 241, 227, 0.6);
  font-family: var(--font-body);
}

/* ====== LOCATIONS V2 — Big Map ====== */
.locations-v2 {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 6rem 0;
}
.locations-v2 .loc-head {
  text-align: center;
  margin-bottom: 3rem;
  display: block;
}
.locations-v2 .loc-head h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}
.locations-v2 .loc-head p {
  color: rgba(248, 241, 227, 0.6);
}

.big-map-wrap {
  position: relative;
}
.big-map {
  position: relative;
  aspect-ratio: 16 / 7;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.big-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .location-list { grid-template-columns: repeat(2, 1fr); }
}
.loc-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245, 197, 24, 0.15);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  cursor: pointer;
}
.loc-pill:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--lu-gold);
  transform: translateY(-2px);
}
.loc-pill.active {
  background: var(--lu-gold);
  color: var(--lu-ink);
  border-color: var(--lu-gold);
}
.loc-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--lu-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lu-gold);
  flex-shrink: 0;
}
.loc-pill.active .dot {
  background: var(--lu-red);
  box-shadow: 0 0 8px var(--lu-red);
}

/* Map labels for cities */
.map-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lu-cream);
  background: rgba(26, 15, 10, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
  border: 1px solid rgba(245, 197, 24, 0.3);
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 12px));
  transition: opacity 0.3s;
}

/* ====== TEAM PAGE ====== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--lu-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  padding-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card.chairman {
  border: 2px solid var(--lu-gold);
}
.team-card.chairman::before {
  content: '★ CHAIRMAN';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--lu-gold);
  color: var(--lu-ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  padding: 0.4rem 0;
}
.team-card.chairman .team-portrait {
  margin-top: 2.5rem;
}
.team-portrait {
  width: 160px;
  height: 160px;
  margin: 2rem auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--lu-red);
  box-shadow: var(--shadow-md);
  background: var(--lu-red-deep);
}
.team-portrait svg {
  width: 100%;
  height: 100%;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
}
.team-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.85rem;
  color: rgba(26,15,10,0.7);
  line-height: 1.5;
  padding: 0 1.25rem;
}
.team-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(26,15,10,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.team-meta span + span::before {
  content: "·";
  margin-right: 0.7rem;
  color: rgba(26,15,10,0.4);
}

/* ====== MENU PAGE V2 ====== */
.menu-config-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1100px) { .menu-config-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .menu-config-grid { grid-template-columns: 1fr; } }

/* Sauce builder v2 */
.sauce-builder {
  background: var(--lu-paper);
  padding: 5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sauce-builder h2 { text-align: center; margin-bottom: 0.5rem; }
.sauce-builder .sub { text-align: center; color: rgba(26,15,10,0.65); margin-bottom: 3rem; }

.sb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .sb-grid { grid-template-columns: 1fr; } }

.sb-step {
  background: var(--lu-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}
.sb-step .step-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--lu-red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sb-step h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.sb-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.sb-opt {
  background: var(--lu-paper);
  border: 2px solid rgba(26, 15, 10, 0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.sb-opt:hover {
  border-color: var(--lu-red);
  transform: translateY(-2px);
}
.sb-opt.selected {
  background: var(--lu-gold);
  border-color: var(--lu-red);
}
.sb-opt .ico {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.4rem;
}
.sb-opt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--lu-ink);
}
.sb-opt span {
  display: block;
  font-size: 0.7rem;
  color: rgba(26,15,10,0.65);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ====== ABOUT V2 ====== */
.celestial-strip {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245, 197, 24, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 122, 26, 0.1), transparent 60%),
    linear-gradient(135deg, #0a0612 0%, #1a0f0a 100%);
  color: var(--lu-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.celestial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.5) 1px, transparent 2px),
                    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.4) 1px, transparent 2px),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.6) 1px, transparent 2px),
                    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.4) 1px, transparent 2px),
                    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.5) 1px, transparent 2px),
                    radial-gradient(circle at 10% 60%, rgba(255,255,255,0.4) 1px, transparent 2px);
  background-size: 240px 200px, 280px 220px, 200px 180px, 320px 240px, 260px 200px, 220px 180px;
  pointer-events: none;
  opacity: 0.7;
}
.celestial-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.celestial-inner h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.celestial-inner .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(248, 241, 227, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.constellation {
  position: relative;
  margin: 2rem auto;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 2/1;
}
.constellation svg {
  width: 100%;
  height: 100%;
}

/* Bigger about logo */
.story-visual.huge { aspect-ratio: 1/1; }
.story-visual.huge .frame-img { padding: 1rem; }
.story-visual.huge .frame-img img { width: 90%; }

/* Mobile menu burger should always show on mobile */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; align-items: center; justify-content: center; }
}

/* ====== TEAM SPOTLIGHT (Chairman) ====== */
.team-spotlight {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--lu-cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 2px solid var(--lu-gold);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.team-spotlight::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(245,197,24,0.1) 10px, rgba(245,197,24,0.1) 11px);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
@media (max-width: 800px) {
  .team-spotlight { grid-template-columns: 1fr; text-align: center; padding: 2rem; }
}
.team-spotlight-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-spotlight-portrait .team-portrait {
  margin: 0;
  width: 240px;
  height: 240px;
  border: 6px solid var(--lu-gold);
}
.chairman-badge {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--lu-red-deep);
  background: var(--lu-gold);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
}
.team-spotlight-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.team-spotlight-bio {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(26,15,10,0.78);
  margin-bottom: 1.5rem;
}
.team-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26,15,10,0.1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(26,15,10,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-meta-row strong {
  color: var(--lu-red);
  font-weight: 700;
}

/* Hide the .chairman pseudo for regular grid cards */
.team-card.chairman { display: none; }

/* Make grid responsive */
@media (max-width: 700px) {
  .team-grid > article[style*="span 2"] { grid-column: span 1 !important; }
}

/* Story stats — referenced in about.html */
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,15,10,0.1);
}
.story-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--lu-red);
  line-height: 1;
}
.story-stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,15,10,0.55);
  margin-top: 0.4rem;
}

/* ====== MERCH CARD ADDITIONS ====== */
.merch-option {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.merch-option-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
}
.merch-option-select {
  flex: 1;
  padding: 0.4rem 0.6rem;
  background: var(--lu-cream);
  border: 1.5px solid rgba(26,15,10,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lu-ink);
  cursor: pointer;
  transition: border-color 0.2s;
}
.merch-option-select:hover,
.merch-option-select:focus {
  border-color: var(--lu-red);
  outline: none;
}

/* Sauce checkbox */
.merch-sauce {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(200, 16, 46, 0.06));
  border: 1.5px dashed rgba(200, 16, 46, 0.3);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.merch-sauce:hover {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.2), rgba(200, 16, 46, 0.12));
  border-color: var(--lu-red);
}
.merch-sauce-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--lu-red);
  border-radius: 4px;
  background: var(--lu-cream);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
}
.merch-sauce-check:checked {
  background: var(--lu-red);
}
.merch-sauce-check:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--lu-cream);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.merch-sauce-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.merch-sauce-text strong {
  font-size: 0.82rem;
  color: var(--lu-ink);
  font-weight: 700;
  line-height: 1.2;
}
.merch-sauce-text small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(26,15,10,0.6);
  letter-spacing: 0.05em;
}

/* Bold/thick Chinese display style — for marquee 小香肠 */
.cn-bold {
  font-family: 'ZCOOL KuaiLe', 'Noto Serif SC', serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px currentColor;
  text-stroke: 1px currentColor;
  font-size: 1.1em;
  vertical-align: -0.04em;
}

/* ============================================
   BUILD-YOUR-ORDER FLOW
   ============================================ */
.build-step {
  padding: 4.5rem 0;
  position: relative;
}
.build-step-dark {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255, 122, 26, 0.12), transparent 60%),
    linear-gradient(135deg, var(--lu-ink) 0%, var(--lu-charcoal) 100%);
  color: var(--lu-cream);
}
.build-step-summary {
  background: var(--lu-paper);
}
.build-step-head {
  text-align: center;
  margin-bottom: 3rem;
}
.build-step-head .step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
  background: var(--lu-gold);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.build-step-dark .build-step-head .step-num {
  color: var(--lu-red-deep);
}
.build-step-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.build-step-head p {
  color: rgba(26, 15, 10, 0.65);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}
.build-step-dark .build-step-head p {
  color: rgba(248, 241, 227, 0.7);
}

/* Wiener grid — radio cards */
.wiener-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1100px) { .wiener-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wiener-grid { grid-template-columns: 1fr; } }

.wiener-card {
  display: flex;
  flex-direction: column;
  background: var(--lu-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
  border: 3px solid transparent;
}
.wiener-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.wiener-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wiener-card.selected {
  border-color: var(--lu-red);
  background: var(--lu-cream);
  box-shadow: 0 12px 28px rgba(200,16,46,0.2);
}
.wiener-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.wiener-svg {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 65%, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, #fff8e8 0%, var(--lu-paper) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wiener-svg::before {
  content: '';
  position: absolute;
  inset: 20% 20%;
  border: 2px dashed rgba(200, 16, 46, 0.15);
  border-radius: 50%;
  z-index: 0;
}
.wiener-svg svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wiener-card:hover .wiener-svg svg {
  transform: scale(1.06) rotate(-2deg);
}
.wiener-card.selected .wiener-svg svg {
  transform: scale(1.08);
}

.wiener-meta {
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wiener-meta .prod-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.wiener-meta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.wiener-meta p {
  font-size: 0.85rem;
  color: rgba(26,15,10,0.7);
  margin-bottom: 0.9rem;
  line-height: 1.45;
  flex: 1;
}
.wiener-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lu-red-deep);
}

/* Selection checkmark (top right corner) */
.wiener-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--lu-red);
  color: var(--lu-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.wiener-card.selected .wiener-check {
  opacity: 1;
  transform: scale(1);
}

/* Blanket sub-variant chooser */
.wiener-variant {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.variant-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lu-red);
  font-weight: 700;
}
.variant-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.variant-opt {
  position: relative;
  background: var(--lu-paper);
  border: 2px solid rgba(26,15,10,0.1);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.variant-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.variant-opt span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lu-ink);
  line-height: 1.1;
}
.variant-opt span small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lu-red);
  margin-top: 0.2rem;
  font-weight: 700;
}
.variant-opt:hover {
  border-color: var(--lu-red);
}
.variant-opt.selected {
  border-color: var(--lu-red);
  background: var(--lu-paper);
  box-shadow: inset 0 0 0 1px var(--lu-red);
}
.variant-opt.selected span small {
  color: var(--lu-red);
}

/* Order summary card */
.order-summary-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--lu-cream);
  border: 2px solid var(--lu-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.order-summary-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(245,197,24,0.18) 12px, rgba(245,197,24,0.18) 13px);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(26,15,10,0.15);
  position: relative;
  z-index: 1;
}
.summary-row:last-of-type {
  border-bottom: none;
}
.summary-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,15,10,0.55);
  font-weight: 700;
}
.summary-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--lu-ink);
  text-align: right;
}
.summary-total {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--lu-red) !important;
}
.summary-total .summary-label {
  color: var(--lu-red);
  font-size: 0.85rem;
}
.summary-total .summary-value {
  font-size: 1.8rem;
  color: var(--lu-red-deep);
}
.btn-large {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.btn[disabled],
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.summary-fine {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26,15,10,0.5);
  text-align: center;
  margin-top: 1.25rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Active nav state — yellow + underlined for the current page */
.nav-links a.active {
  color: var(--lu-gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
.mobile-menu a.active {
  color: var(--lu-gold);
}
