/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0606;
  color: #f5e9d8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:root {
  --fire-1: #ffb703;
  --fire-2: #fb8500;
  --fire-3: #e63946;
  --fire-4: #d00000;
  --char: #1a0e0a;
  --char-2: #2a1810;
  --cream: #f5e9d8;
  --gold: #ffb703;
  --shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(10, 6, 6, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 6vw;
  border-bottom: 1px solid rgba(255, 183, 3, 0.15);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
  color: var(--char);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 183, 3, .4);
}
.brand-text {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.links {
  display: flex;
  gap: 32px;
}
.links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.links a:hover { color: var(--fire-1); }
.links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--fire-1), var(--fire-3));
  transition: width .3s;
}
.links a:hover::after { width: 100%; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px;
}
.menu-btn span {
  display: block;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 75%;
  max-width: 320px;
  background: linear-gradient(180deg, var(--char-2), var(--char));
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  z-index: 90;
  box-shadow: -10px 0 40px rgba(0,0,0,.6);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 183, 3, .15);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 6vw 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0606 0%, #1a0e0a 55%, #2a1408 100%);
}

/* ---- REAL FIRE VIDEO BACKGROUND ---- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}
/* Gradient overlay — darkens for text readability + warm tint */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,6,6,.35) 0%, rgba(10,6,6,.7) 75%, rgba(10,6,6,.92) 100%),
    linear-gradient(180deg, rgba(10,6,6,.5) 0%, transparent 40%, rgba(10,6,6,.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.scroll-cue { z-index: 2; }
.kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fire-1);
  padding: 8px 20px;
  border: 1px solid rgba(255, 183, 3, .4);
  border-radius: 100px;
  background: rgba(255, 183, 3, .08);
  margin-bottom: 28px;
  animation: fadeUp 1s .1s both;
}

.hero-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 14vw, 200px);
  line-height: .85;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  animation: fadeUp 1s both;
}
.hero-title .line:nth-child(1) { animation-delay: .15s; }
.hero-title .line:nth-child(2) { animation-delay: .3s; }
.hero-title .line:nth-child(3) { animation-delay: .45s; }

.stroke {
  color: transparent;
  /* Stroke width scales with the font's clamp() size so the I (a
     simple vertical rectangle) doesn't look anaemic next to the rich
     curves of S/N at large display sizes. */
  -webkit-text-stroke: 0.028em var(--cream);
}
.fill {
  background: linear-gradient(180deg, var(--fire-1) 0%, var(--fire-2) 50%, var(--fire-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(251, 133, 0, .4);
  position: relative;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(245, 233, 216, .8);
  animation: fadeUp 1s .6s both;
}
.hero-sub strong { color: var(--fire-1); }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .75s both;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
  color: var(--char);
  box-shadow: 0 10px 30px rgba(251, 133, 0, .35), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(251, 133, 0, .55), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-ghost {
  border: 2px solid rgba(245, 233, 216, .3);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--fire-1);
  color: var(--fire-1);
  transform: translateY(-3px);
}
.btn.big { padding: 20px 40px; font-size: 18px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
  animation: fadeUp 1s .9s both;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stats strong {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 233, 216, .6);
  margin-top: 6px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(245, 233, 216, .4);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--fire-1);
  border-radius: 2px;
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(90deg, var(--fire-3), var(--fire-2), var(--fire-1), var(--fire-2), var(--fire-3));
  background-size: 200% 100%;
  animation: gradientShift 8s linear infinite;
  overflow: hidden;
  padding: 18px 0;
  border-top: 2px solid var(--char);
  border-bottom: 2px solid var(--char);
}
@keyframes gradientShift {
  to { background-position: 200% 0; }
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 6s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--char);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTION COMMON ============ */
section { padding: 100px 6vw; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fire-1);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--char); }
section h2, .order-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.accent {
  background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(245, 233, 216, .75);
  max-width: 600px;
  margin: 0 auto;
}
.lede.light { color: rgba(26, 14, 10, .85); margin-bottom: 32px; }

/* ============ FLAVORS ============ */
.flavors {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(214, 40, 40, .12), transparent 50%),
    var(--char);
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.flavor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,183,3,.15);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .35s;
}
.flavor-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr);
}
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--clr), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 0;
}
.flavor-card:hover .card-glow { opacity: .22; }

/* Product image */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--char);
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
  display: block;
}
.flavor-card:hover .card-img-wrap img { transform: scale(1.06); }

/* Gradient fade from image into card body */
.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(transparent, var(--char-2));
  pointer-events: none;
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 20px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  background: linear-gradient(180deg, var(--clr), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .85;
  line-height: 1;
  margin-bottom: 10px;
}
.flavor-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cream);
}
.flavor-card p {
  color: rgba(245,233,216,.72);
  margin-bottom: 18px;
  font-size: 15px;
  flex: 1;
}
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,183,3,.12);
  color: var(--clr);
  border: 1px solid rgba(255,183,3,.25);
  align-self: flex-start;
}
.flavor-card.bundle {
  background: linear-gradient(135deg, rgba(255,183,3,.15), rgba(214,40,40,.08));
  border-color: var(--clr);
}
.flavor-card.bundle::before {
  content: 'BUNDLE';
  position: absolute;
  top: 28px;
  right: -60px;
  background: var(--clr);
  color: var(--char);
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 5px 70px;
  transform: rotate(35deg);
  transform-origin: center;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(255, 183, 3, .45);
  text-align: center;
}

/* ============ POTATO WHEELS (VEGAN) ============ */
.wheels {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(136, 192, 87, .12), transparent 50%),
    var(--char-2);
}
.wheels .eyebrow { color: #88c057; }
.accent.leaf {
  background: linear-gradient(180deg, #c3f29a, #88c057);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
  color: transparent;
}
.flavor-card.vegan {
  border-color: rgba(136, 192, 87, .25);
}
.flavor-card.vegan .tag {
  background: rgba(136, 192, 87, .12);
  color: #b9e08c;
  border-color: rgba(136, 192, 87, .35);
}
.flavor-card.vegan::before {
  content: 'VEGAN';
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 100px;
  background: #88c057;
  color: var(--char);
  box-shadow: 0 4px 14px rgba(136, 192, 87, .35);
}

/* ============ REVIEWS ============ */
.reviews {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 183, 3, .10), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(214, 40, 40, .08), transparent 50%),
    var(--char);
}
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 700px;
  margin: -10px auto 48px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(255,183,3,.10), rgba(214,40,40,.06));
  border: 1px solid rgba(255,183,3,.25);
  border-radius: 18px;
  flex-wrap: wrap;
  text-align: left;
}
.rs-stars {
  position: relative;
  display: inline-block;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1;
}
.rs-stars-bg {
  color: rgba(255, 183, 3, .22);
}
.rs-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--fire-1);
}
.rs-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rs-text strong {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.rs-text span {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(245,233,216,.65);
  text-transform: uppercase;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,183,3,.18);
  border-radius: 18px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -22px;
  right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 160px;
  line-height: 1;
  color: var(--fire-1);
  opacity: .08;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,183,3,.45);
  box-shadow: 0 22px 50px rgba(0,0,0,.45), 0 0 30px rgba(255,183,3,.12);
}
.review-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,183,3,.10), rgba(214,40,40,.06));
  border-color: rgba(255,183,3,.4);
}
.rc-stars {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--fire-1);
  line-height: 1;
}
.rc-stars .empty {
  color: rgba(255,183,3,.22);
}
.rc-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,233,216,.88);
  flex: 1;
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,183,3,.12);
}
.rc-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--char);
  background: linear-gradient(135deg, var(--av, var(--fire-1)), color-mix(in srgb, var(--av, var(--fire-2)) 70%, #000 30%));
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.rc-author strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.rc-author small {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245,233,216,.55);
}

@media (max-width: 860px) {
  .review-card.featured { grid-column: span 1; }
  .review-summary { gap: 12px; padding: 16px 20px; }
  .rs-stars { font-size: 24px; }
  .rs-text strong { font-size: 18px; }
}

/* ============ COMMUNITY ============ */
.community {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 183, 3, .08), transparent 60%),
    var(--char);
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.comm-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 183, 3, .15);
  background: var(--char-2);
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .3s, box-shadow .3s;
}
.comm-tile:hover {
  transform: translateY(-4px);
  border-color: var(--fire-1);
  box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 30px rgba(255,183,3,.18);
}
.comm-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
}
.comm-tile:hover img { transform: scale(1.07); }
.comm-tile.big {
  grid-column: span 2;
  grid-row: span 2;
}
.comm-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 12px;
  background: rgba(10, 6, 6, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255,183,3,.25);
}

@media (max-width: 860px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .comm-tile.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .community-grid { grid-auto-rows: 150px; gap: 10px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s linear 0s;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(40, 12, 4, .85) 0%, rgba(5, 3, 3, .96) 70%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scale(1.08);
  transition: transform .55s cubic-bezier(.2,.85,.2,1.05);
}
.lightbox.open .lightbox-backdrop {
  transform: scale(1);
}

/* Fire burst — radial flash from the thumbnail position.
   Position absolute inside .lightbox so it stacks above the backdrop
   (which has no explicit z-index) but below the image (z-index 2). */
.lightbox-burst {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle,
      rgba(255, 245, 200, 1) 0%,
      rgba(255, 200, 80, .95) 18%,
      rgba(255, 120, 30, .8) 38%,
      rgba(214, 40, 40, .55) 60%,
      rgba(120, 10, 10, .15) 80%,
      transparent 100%);
  mix-blend-mode: screen;
  filter: blur(3px);
  transform: scale(.15);
  will-change: transform, opacity;
}
.lightbox-burst.firing {
  animation: lb-burst 1.05s cubic-bezier(.12,.85,.25,1) forwards;
}
@keyframes lb-burst {
  0%   { opacity: 0;   transform: scale(.15); }
  10%  { opacity: 1;                          }
  25%  { opacity: 1;   transform: scale(3);   }
  55%  { opacity: .75; transform: scale(9);   }
  85%  { opacity: .25; transform: scale(15);  }
  100% { opacity: 0;   transform: scale(18);  }
}

/* Secondary inner flash — a quick bright pop */
.lightbox-burst::after {
  content: '';
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,220,140,.6) 40%, transparent 75%);
  filter: blur(2px);
  opacity: 0;
}
.lightbox-burst.firing::after {
  animation: lb-flash .4s ease-out forwards;
}
@keyframes lb-flash {
  0%   { opacity: 0;  transform: scale(.5); }
  30%  { opacity: 1;  transform: scale(1.4); }
  100% { opacity: 0;  transform: scale(2.5); }
}
.lightbox-stage {
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: 92vw;
  max-height: 88vh;
}
.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 30px 90px rgba(0,0,0,.7),
    0 0 60px rgba(255,183,3,.18),
    0 0 0 1px rgba(255,183,3,.18);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  opacity: 0;
  filter: blur(0px);
}
.lightbox-img.flying {
  /* Strong springy curve with clear overshoot */
  transition:
    transform .9s cubic-bezier(.18, 1.55, .35, 1),
    opacity .45s ease-out,
    filter .65s ease-out;
  opacity: 1;
}
.lightbox-img.settled {
  transition: opacity .25s ease, filter .3s ease;
  opacity: 1;
  filter: blur(0px);
  transform: none !important;
  animation: lb-settle-pulse 1.1s ease-out;
}
@keyframes lb-settle-pulse {
  0%   { box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 0    rgba(255,183,3,0),   0 0 0 1px rgba(255,183,3,.18); }
  25%  { box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 140px rgba(255,183,3,.7), 0 0 0 2px rgba(255,183,3,.7);  }
  60%  { box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 80px  rgba(255,183,3,.35), 0 0 0 1px rgba(255,183,3,.4); }
  100% { box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 60px  rgba(255,183,3,.18), 0 0 0 1px rgba(255,183,3,.18); }
}

/* Caption rises up as image lands */
.lightbox-cap {
  transform: translateX(-50%) translateY(10px);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.85,.2,1.05);
}
.lightbox.open .lightbox-cap {
  transform: translateX(-50%) translateY(0);
}
.lightbox-cap {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity .35s ease .15s;
  white-space: nowrap;
}
.lightbox.open .lightbox-cap { opacity: .85; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 6, 6, .6);
  border: 1px solid rgba(255, 183, 3, .3);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 183, 3, .15);
  border-color: var(--fire-1);
  transform: scale(1.08);
}
.lightbox-close { top: 24px; right: 24px; font-size: 32px; }
.lightbox-prev { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

body.lb-open { overflow: hidden; }

@media (max-width: 600px) {
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav, .lightbox-close { width: 44px; height: 44px; font-size: 24px; }
  .lightbox-cap { font-size: 13px; bottom: -34px; }
}

/* ============ STORY ============ */
.story {
  background: linear-gradient(180deg, var(--char) 0%, var(--char-2) 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.story-img { position: relative; }
.img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, var(--fire-3), var(--fire-4) 40%, var(--char) 80%);
  box-shadow: var(--shadow), 0 0 80px rgba(251, 133, 0, .25);
  border: 2px solid rgba(255, 183, 3, .3);
}
.img-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
  padding: 32px;
}
.big-emoji {
  font-size: clamp(80px, 14vw, 140px);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5));
  animation: bounce 3s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
.img-caption {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.ember-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 183, 3, .4), transparent 30%),
    radial-gradient(circle at 75% 60%, rgba(214, 40, 40, .35), transparent 30%);
  mix-blend-mode: screen;
  animation: ember 4s ease-in-out infinite alternate;
}
@keyframes ember {
  to { opacity: .6; transform: scale(1.05); }
}
.badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-1), var(--fire-2));
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  color: var(--char);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
  border: 4px solid var(--char);
}
.badge span { font-size: 11px; letter-spacing: 2px; }
.badge strong { font-size: 32px; line-height: 1; }

.story-text .eyebrow { text-align: left; }
.story-text h2 { text-align: left; }
.story-text p {
  margin-top: 20px;
  color: rgba(245, 233, 216, .8);
  font-size: 17px;
}
.story-text strong { color: var(--fire-1); }
blockquote {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--fire-1);
  background: rgba(255, 183, 3, .06);
  border-radius: 0 16px 16px 0;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  line-height: 1.4;
  color: var(--cream);
}
blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire-1);
  font-weight: 600;
}

/* ============ ORDER ============ */
.order { padding: 60px 6vw 100px; }
.order-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 6vw;
  text-align: center;
  background: linear-gradient(135deg, var(--fire-1), var(--fire-2) 50%, var(--fire-3));
  box-shadow: var(--shadow), 0 0 100px rgba(251, 133, 0, .3);
}
.order-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, .15), transparent 40%);
  pointer-events: none;
}
.order-content { position: relative; }
.order-content h2 { color: var(--char); }
.order-content .accent {
  background: linear-gradient(180deg, #fff, #fef3d3);
  -webkit-text-stroke: 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.order-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}
.order .btn-primary {
  background: var(--char);
  color: var(--fire-1);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.order .btn-primary:hover { background: #000; }
.order .btn-ghost {
  border-color: var(--char);
  color: var(--char);
}
.order .btn-ghost:hover {
  background: var(--char);
  color: var(--fire-1);
}
.fine {
  font-size: 13px;
  color: rgba(26, 14, 10, .7);
  margin-top: 8px;
}

/* ============ CONTACT ============ */
.contact { background: var(--char-2); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  display: block;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 183, 3, .15);
  border-radius: 20px;
  transition: transform .3s, border-color .3s, background .3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--fire-1);
  background: rgba(255, 183, 3, .06);
}
.contact-card .ico {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card p {
  color: rgba(245, 233, 216, .75);
  word-break: break-word;
}

/* ============ FOOTER ============ */
.footer {
  padding: 40px 6vw;
  background: #050303;
  border-top: 1px solid rgba(255, 183, 3, .15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.foot-brand strong {
  display: block;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  font-size: 18px;
}
.foot-brand small {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 233, 216, .55);
}
.copy {
  font-size: 13px;
  color: rgba(245, 233, 216, .5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .links { display: none; }
  .menu-btn { display: flex; }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-img { max-width: 480px; margin: 0 auto; }
  section { padding: 80px 6vw; }
  .hero { padding: 100px 6vw 60px; }
  .marquee-track { font-size: 16px; gap: 24px; }
  .badge { width: 90px; height: 90px; }
  .badge strong { font-size: 24px; }
}

@media (max-width: 480px) {
  .brand-text { display: none; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .order-actions { flex-direction: column; }
  .order-actions .btn { width: 100%; justify-content: center; }
  .order-card { padding: 60px 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ EMBER CANVAS ============ */
.ember-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ============ SPICY BANNER ============ */
.flavor-card.spicy::after {
  content: 'SPICY';
  position: absolute;
  top: 28px;
  right: -60px;
  background: linear-gradient(135deg, #ff5a1f, #d62828);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 5px 70px;
  transform: rotate(35deg);
  transform-origin: center;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(214, 40, 40, .45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  text-align: center;
}

/* ============ SPICY FLAME AURA ============ */
/* Animated multi-layered glow that flickers like flames around the card
   without touching the card's interior design. */
.flavor-card.spicy {
  animation: flame-flicker var(--flame-dur, 2.4s) ease-in-out var(--flame-delay, 0s) infinite;
}
@keyframes flame-flicker {
  0% {
    box-shadow:
      0 0 10px   rgba(255, 220, 100, .55),
      0 0 22px   rgba(255, 130, 30,  .6),
      0 0 42px   rgba(214, 40,  40,  .5),
      0 -2px 60px rgba(160, 20, 20,  .35);
  }
  18% {
    box-shadow:
      0 -2px 14px rgba(255, 240, 140, .8),
      0 -4px 30px rgba(255, 160, 50,  .75),
      0 -8px 54px rgba(255, 70,  25,  .6),
      0 -14px 80px rgba(140, 10, 10,  .4);
  }
  34% {
    box-shadow:
      0 -1px 9px  rgba(255, 200, 80,  .55),
      0 -2px 22px rgba(255, 110, 30,  .6),
      0 -4px 40px rgba(214, 40,  40,  .5),
      0 -8px 60px rgba(120, 10, 10,  .3);
  }
  52% {
    box-shadow:
      0 -3px 16px rgba(255, 250, 160, .9),
      0 -6px 34px rgba(255, 180, 60,  .85),
      0 -10px 58px rgba(255, 80, 25,  .7),
      0 -16px 90px rgba(120, 10, 10,  .4);
  }
  68% {
    box-shadow:
      0 -1px 11px rgba(255, 210, 90,  .6),
      0 -3px 26px rgba(255, 130, 35,  .65),
      0 -5px 46px rgba(214, 50,  35,  .5),
      0 -10px 70px rgba(130, 10, 10,  .3);
  }
  84% {
    box-shadow:
      0 -2px 13px rgba(255, 230, 110, .75),
      0 -4px 28px rgba(255, 150, 40,  .7),
      0 -7px 50px rgba(255, 70,  25,  .55),
      0 -12px 78px rgba(140, 10, 10,  .35);
  }
  100% {
    box-shadow:
      0 0 10px   rgba(255, 220, 100, .55),
      0 0 22px   rgba(255, 130, 30,  .6),
      0 0 42px   rgba(214, 40,  40,  .5),
      0 -2px 60px rgba(160, 20, 20,  .35);
  }
}
/* Stagger so the spicy cards don't all flicker in sync — feels more
   like real fire if each card has its own rhythm. Done via custom props
   so the .shaking shorthand still wins on hover. */
.flavor-card.spicy:nth-of-type(2) { --flame-dur: 2.1s; --flame-delay: -.7s; }
.flavor-card.spicy:nth-of-type(6) { --flame-dur: 2.7s; --flame-delay: -1.3s; }
.flavor-card.spicy:nth-of-type(9) { --flame-dur: 2.3s; --flame-delay: -.4s; }

@media (prefers-reduced-motion: reduce) {
  .flavor-card.spicy { animation: none;
    box-shadow:
      0 0 18px rgba(255, 130, 30, .55),
      0 0 40px rgba(214, 40, 40, .45);
  }
}

/* ============ CARD SHAKE ============ */
@keyframes bag-shake {
  0%   { transform: translateY(-8px) rotate(0deg); }
  20%  { transform: translateY(-11px) rotate(-3deg); }
  40%  { transform: translateY(-5px) rotate(3deg); }
  60%  { transform: translateY(-10px) rotate(-2deg); }
  80%  { transform: translateY(-6px) rotate(1deg); }
  100% { transform: translateY(-8px) rotate(0deg); }
}
.flavor-card.shaking {
  animation: bag-shake 0.45s ease;
  transition: border-color .35s;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============ CART ============ */

/* Ensure the [hidden] attribute always wins over the display rules below */
[hidden] { display: none !important; }

/* Add-to-cart controls injected into each flavor card */
.card-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.card-price {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .5px;
  color: var(--fire-1);
  line-height: 1;
}
.card-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .5px;
  color: rgba(245,233,216,.55);
  margin-top: 3px;
}
.add-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--char);
  background: linear-gradient(135deg, var(--fire-1), var(--fire-2));
  box-shadow: 0 6px 18px rgba(251,133,0,.35);
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.add-cart:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(251,133,0,.5); }
.add-cart:active { transform: translateY(0); }
.add-cart.added {
  background: linear-gradient(135deg, #5fa84a, #88c057);
  box-shadow: 0 6px 18px rgba(95,168,74,.45);
}

/* Floating cart button */
.cart-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-2), var(--fire-3));
  box-shadow: 0 12px 34px rgba(214,0,0,.45), 0 0 0 1px rgba(255,183,3,.25) inset;
  font-size: 26px;
  transition: transform .18s ease, box-shadow .2s;
}
.cart-fab:hover { transform: scale(1.08); }
.cart-fab.bump { animation: fabBump .4s ease; }
@keyframes fabBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.cart-fab-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 24px; height: 24px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--char);
  color: var(--fire-1);
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  border: 2px solid var(--fire-1);
}

/* Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
}
.cart-drawer.open { visibility: visible; opacity: 1; }
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cart-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--char-2);
  border-left: 1px solid rgba(255,183,3,.18);
  box-shadow: -20px 0 60px rgba(0,0,0,.55);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,183,3,.14);
}

/* Single scroll area below the header so PayPal's tall card form (and its
   Pay button) is always reachable instead of being clipped at the bottom. */
.cart-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-head h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-close {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245,233,216,.7);
  transition: color .2s;
}
.cart-close:hover { color: var(--fire-1); }
.cart-close-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.cart-close-x {
  font-size: 28px;
  line-height: 1;
  transition: transform .2s;
}
.cart-close:hover .cart-close-x { transform: rotate(90deg); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 30px;
  color: rgba(245,233,216,.6);
}
.cart-empty-ico { font-size: 50px; opacity: .5; margin-bottom: 6px; }
.cart-empty-sub { font-size: 13px; color: rgba(245,233,216,.45); }

.cart-items {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,183,3,.1);
}
.ci-name { font-weight: 700; font-size: 15px; }
.ci-line { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: rgba(245,233,216,.45); margin-top: 2px; }
.ci-price { font-family: 'Anton', sans-serif; color: var(--fire-1); font-size: 18px; text-align: right; }
.ci-controls { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.ci-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,183,3,.18);
}
.ci-qty button {
  width: 30px; height: 30px;
  font-size: 18px;
  color: var(--fire-1);
  display: grid; place-items: center;
}
.ci-qty span { min-width: 26px; text-align: center; font-weight: 700; }
.ci-remove {
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(245,233,216,.45);
  transition: color .2s;
}
.ci-remove:hover { color: var(--fire-3); }

.cart-foot {
  border-top: 1px solid rgba(255,183,3,.14);
  padding: 18px 22px 22px;
  background: rgba(0,0,0,.2);
}
.cart-ship {
  display: block;
  margin-bottom: 14px;
}
.cart-ship span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(245,233,216,.6);
  margin-bottom: 6px;
}
.cart-ship select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  background: var(--char);
  color: var(--cream);
  border: 1px solid rgba(255,183,3,.25);
  font: inherit;
}
.cart-ship select:focus { outline: 2px solid var(--fire-2); }

.cart-promo { margin-bottom: 16px; }
.cart-promo-title {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(245,233,216,.6);
  margin-bottom: 6px;
}
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-row input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 10px;
  background: var(--char);
  color: var(--cream);
  border: 1px solid rgba(255,183,3,.25);
  font: inherit;
  text-transform: uppercase;
}
.cart-promo-row input::placeholder { color: rgba(245,233,216,.35); text-transform: none; }
.cart-promo-row input:focus { outline: 2px solid var(--fire-2); }
.cart-promo-row button {
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--char);
  background: linear-gradient(135deg, var(--fire-1), var(--fire-2));
  white-space: nowrap;
  transition: transform .15s, box-shadow .2s;
}
.cart-promo-row button:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(251,133,0,.4); }
.cart-promo-msg { font-size: 13px; margin-top: 8px; line-height: 1.4; }
.cart-promo-msg.ok  { color: #88c057; }
.cart-promo-msg.err { color: var(--fire-3); }
.code-remove {
  color: rgba(245,233,216,.6);
  text-decoration: underline;
  font-size: 12px;
}
.code-remove:hover { color: var(--fire-1); }

.cart-totals { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.ct-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(245,233,216,.85); }
.ct-row span:first-child { color: rgba(245,233,216,.6); }
.ct-discount span { color: #88c057 !important; }
.ct-total {
  border-top: 1px solid rgba(255,183,3,.14);
  padding-top: 10px;
  margin-top: 4px;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .5px;
}
.ct-total span { color: var(--cream) !important; }
.ct-total span:last-child { color: var(--fire-1) !important; }

.cart-quote {
  background: rgba(214,0,0,.12);
  border: 1px solid rgba(230,57,70,.4);
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.cart-quote a { color: var(--fire-1); font-weight: 700; white-space: nowrap; }

.cart-note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245,233,216,.55);
  text-align: center;
  margin-top: 10px;
}
/* White backdrop so PayPal's card form (its ✕, the "ship to billing address"
   checkbox, and the "18 or older" text) is readable. PayPal renders that form
   inside its own secure frame on a transparent background, so we can't recolor
   their text directly — giving the area a white background makes it legible. */
.cart-paypal {
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px 4px;
  margin-top: 4px;
}
.cart-paypal:empty { display: none; }

body.cart-open { overflow: hidden; }

@media (max-width: 520px) {
  .cart-fab { width: 56px; height: 56px; right: 16px; bottom: 16px; font-size: 23px; }
  .cart-head h3 { font-size: 21px; }
}
