:root {
  --bg: #0b0b0d;
  --fg: #f6f3ec;
  --accent: #e63946;
  --muted: #9aa0a6;
  --card: #17171c;
  --radius: 22px;
  --safe: 5vmin;
  --font-heading: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

#stage {
  position: fixed;
  inset: 0;
  padding: var(--safe);
}

.slide {
  position: absolute;
  inset: var(--safe);
  display: grid;
  gap: 3vmin;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

.slide.visible { opacity: 1; }

/* ---------- category slide ---------- */
.slide.category {
  grid-template-rows: auto 1fr;
}
.slide.category h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vmin, 120px);
  font-weight: 800;
  margin: 0;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.slide.category .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vmin 6vmin;
  align-content: start;
  font-size: clamp(28px, 3.2vmin, 52px);
}
.slide.category .item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2vmin;
  padding: 1.2vmin 0;
  border-bottom: 2px dotted rgba(246, 243, 236, 0.18);
}
.slide.category .item .name { font-weight: 600; }
.slide.category .item .price { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- combo / campaign slide ---------- */
.slide.combo {
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  gap: 5vmin;
}
.slide.combo .photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  min-height: 60vmin;
}
.slide.combo .text {
  display: grid;
  align-content: center;
  gap: 2vmin;
}
.slide.combo .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(22px, 2.4vmin, 36px);
}
.slide.combo h2 {
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vmin, 140px);
  font-weight: 800;
  margin: 0;
  line-height: 1.05;
}
.slide.combo .desc {
  font-size: clamp(22px, 2.6vmin, 40px);
  color: var(--muted);
  max-width: 28ch;
}
.slide.combo .price {
  font-size: clamp(56px, 7vmin, 110px);
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ---------- single product slide ---------- */
.slide.product {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center;
  text-align: center;
}
.slide.product .photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  width: min(70vmin, 100%);
  height: 70vmin;
}
.slide.product .text { display: grid; gap: 1vmin; }
.slide.product h2 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vmin, 120px);
  font-weight: 800;
  margin: 0;
}
.slide.product .price {
  font-size: clamp(44px, 5vmin, 84px);
  color: var(--accent);
  font-weight: 800;
}

/* ---------- banner slide (full-bleed image) ---------- */
.slide.banner {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

/* ---------- status indicator (stale data) ---------- */
.status {
  position: fixed;
  right: calc(var(--safe) + 1vmin);
  bottom: calc(var(--safe) + 1vmin);
  padding: 0.6vmin 1.4vmin;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.85);
  color: white;
  font-size: clamp(14px, 1.4vmin, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
