/* ============================================
   ADDITIONAL PAGE STYLES — menu/about/merch
   ============================================ */

.page-header {
  background: linear-gradient(180deg, var(--lu-red-deep) 0%, var(--lu-red-dark) 100%);
  color: var(--lu-cream);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.12), transparent 60%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow {
  display: inline-block;
  color: var(--lu-gold);
  background: rgba(245,197,24,0.1);
  border: 1px solid var(--lu-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.page-header h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-header h1 .accent { color: var(--lu-gold); }
.page-header p.lede {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(248,241,227,0.78);
  max-width: 36rem;
  margin: 0 auto;
}

/* ====== MENU BUILDER ====== */
.builder {
  background: var(--lu-paper);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.builder h2 { text-align: center; margin-bottom: 0.5rem; }
.builder-lede { text-align: center; color: rgba(26,15,10,0.65); margin-bottom: 3rem; }
.builder-step {
  background: var(--lu-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.builder-step .step-num {
  position: absolute;
  top: -22px;
  left: 2rem;
  background: var(--lu-red);
  color: var(--lu-cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(200,16,46,0.4);
}
.builder-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.builder-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}
.builder-opt {
  background: var(--lu-paper);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.builder-opt:hover {
  transform: translateY(-3px);
  border-color: var(--lu-gold);
  box-shadow: var(--shadow-sm);
}
.builder-opt.selected {
  background: var(--lu-gold);
  border-color: var(--lu-red);
}
.builder-opt .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}
.builder-opt .name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.builder-opt .heat {
  font-size: 0.7rem;
  color: rgba(26,15,10,0.6);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.builder-opt .rec {
  display: inline-block;
  background: var(--lu-red);
  color: var(--lu-cream);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.menu-section {
  padding: 5rem 0;
}
.menu-section h2 { text-align: center; margin-bottom: 0.5rem; }
.menu-section .sub { text-align: center; color: rgba(26,15,10,0.65); margin-bottom: 3rem; }

.sauces-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.sauce-card {
  background: var(--lu-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.sauce-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,0,0.2), transparent 70%);
}
.sauce-card .swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.2);
}
.sauce-card h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.3rem; }
.sauce-card .heat-meter { color: var(--lu-red); font-size: 0.85rem; }
.sauce-card p { font-size: 0.85rem; color: rgba(26,15,10,0.65); margin-top: 0.5rem; line-height: 1.4; }

/* ====== ABOUT TIMELINE ====== */
.timeline {
  padding: 5rem 0;
  position: relative;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lu-red), var(--lu-gold));
  transform: translateX(-50%);
}
@media (max-width: 800px) {
  .timeline-line { left: 24px; }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}
@media (max-width: 800px) {
  .timeline-item {
    grid-template-columns: 50px 1fr;
    margin-left: 0;
  }
  .timeline-item:nth-child(even) > div:first-child,
  .timeline-item:nth-child(odd) > div:first-child {
    display: none;
  }
  .timeline-item > div:last-child {
    text-align: left !important;
  }
}

.timeline-item .year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lu-red-deep);
}
.timeline-item .dot-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lu-gold);
  border: 4px solid var(--lu-red-deep);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.timeline-item .content h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--lu-red-deep);
}
.timeline-item .content p {
  color: rgba(26,15,10,0.75);
  line-height: 1.55;
}
/* Default (non-right items): year is :first-child (right-aligned to center line), content is :last-child (left-aligned away from center) */
.timeline-item > div:first-child { text-align: right; }
.timeline-item > div:last-child { text-align: left; }

/* .right items: content is :first-child (right-aligned to center line), year is :last-child (left-aligned away from center) */
.timeline-item.right > div:first-child { text-align: right; }
.timeline-item.right > div:last-child { text-align: left; }

/* values strip */
.values {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 6rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed rgba(245,197,24,0.3);
  border-radius: var(--radius-md);
}
.value .ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lu-gold);
  color: var(--lu-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}
.value h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--lu-cream);
}
.value p {
  color: rgba(248,241,227,0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ====== MERCH STORE ====== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.merch-card {
  background: var(--lu-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.merch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.merch-card-img {
  aspect-ratio: 1 / 1;
  background: var(--lu-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.merch-card-img svg { width: 88%; height: 88%; }
.merch-card-img.red { background: var(--lu-red); }
.merch-card-img.gold { background: var(--lu-gold); }
.merch-card-img.dark { background: var(--lu-ink); }
.merch-content {
  padding: 1.25rem;
}
.merch-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.merch-content p {
  font-size: 0.85rem;
  color: rgba(26,15,10,0.6);
  margin-bottom: 1rem;
  min-height: 2.4em;
  line-height: 1.4;
}
.merch-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.merch-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lu-red-deep);
}
.merch-add {
  background: var(--lu-ink);
  color: var(--lu-cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  cursor: pointer;
}
.merch-add:hover { background: var(--lu-red); }
.merch-add.added { background: #22c55e; }

.merch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lu-gold);
  color: var(--lu-ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(420px, 90vw);
  height: 100vh;
  background: var(--lu-cream);
  z-index: 300;
  transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 1.5rem;
  border-bottom: 2px solid var(--lu-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lu-red-deep);
  color: var(--lu-cream);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.5rem; }
.cart-close {
  color: var(--lu-cream);
  font-size: 1.5rem;
  background: rgba(255,255,255,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-items {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  gap: 1rem;
}
.cart-item:last-child { border-bottom: none; }
.cart-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.cart-item .qty { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(26,15,10,0.6); }
.cart-item .price { font-family: var(--font-display); font-size: 1.1rem; color: var(--lu-red-deep); }
.cart-item .remove { font-size: 1.2rem; color: rgba(26,15,10,0.4); margin-left: 0.5rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: rgba(26,15,10,0.5); }
.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--lu-ink);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.cart-total .lbl { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.85rem; }
.cart-total .amt { font-family: var(--font-display); font-size: 2rem; color: var(--lu-red-deep); }
.cart-checkout {
  width: 100%;
  background: var(--lu-red);
  color: var(--lu-cream);
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.cart-checkout:hover { background: var(--lu-red-deep); }
.cart-notice {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(26,15,10,0.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--lu-red);
  color: var(--lu-cream);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(200,16,46,0.4);
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.cart-fab:hover { transform: scale(1.1); }
.cart-fab .count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--lu-gold);
  color: var(--lu-ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
