/* ===== VARIABLES ===== */
:root {
  --navy:        #1C1C1E;
  --navy-light:  #2C2C2E;
  --navy-dark:   #111111;
  --orange:      #F5873A;
  --orange-dark: #d97230;
  --cream:       #F2E5C8;
  --cream-dark:  #E8D5AD;
  --white:       #FFFFFF;
  --navy-dim:    rgba(28, 28, 30, 0.5);
  --navy-faint:  rgba(28, 28, 30, 0.28);
  --neon:        #F5873A;
  --neon-hot:    #F5873A;
  --display:     'Fraunces', Georgia, serif;
  --body:        'DM Sans', system-ui, sans-serif;

  /* ── Type Scale ── */
  --fs-h1:    clamp(3.2rem, 8.5vw, 6rem);  /* hero only */
  --fs-h2:    2.4rem;                        /* section titles */
  --fs-h3:    1.3rem;                        /* card/component titles */
  --fs-body:  1rem;                          /* body text */
  --fs-sm:    0.88rem;                       /* secondary body */
  --fs-label: 0.72rem;                       /* uppercase labels */
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* ── Global heading defaults ── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { font-family: var(--body); font-size: var(--fs-body); line-height: 1.75; }

body {
  font-family: var(--body);
  /* Cream base + subtle noise grain for tactile depth */
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.038'/%3E%3C/svg%3E");
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.header {
  position: sticky;
  top: 39px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(27, 34, 82, 0.1);
}

.nav {
  padding: 0 32px 0 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  margin-left: 0px;
}

.nav-logo img { height: 70px; width: 70px; object-fit: contain; }

.nav-brand {
  display: flex;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--cream);
  -webkit-text-stroke: 2.5px var(--navy);
  paint-order: stroke fill;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.18);
}

.nav-brand-global { color: var(--cream); }
.nav-brand-munch  { color: var(--cream); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.nav-live-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy) !important;
}

.nav-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
  animation: dot-blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111111;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 64, 0.62);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroUp 0.85s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.hero-inner h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 26px;
}

/* Italic Fraunces — same optical size as h1, just italic + color */
.hero-inner h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--neon-hot);
  text-shadow:
    0 0 3px rgba(245,135,58,1),
    0 0 14px rgba(245,135,58,0.38);
}

.hero-sub {
  font-family: var(--body);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 44px;
}

/* ===== NEON TEXT ===== */

/* Teal neon — graffiti neon: vivid color, tight inner glow only */
.neon {
  color: var(--neon);
  text-shadow:
    0 0 3px rgba(245,135,58,1),
    0 0 14px rgba(245,135,58,0.38);
  display: inline;
}

/* Teal chip — for cream backgrounds, long key phrases */
.neon-chip {
  color: var(--neon);
  background: rgba(4, 14, 28, 0.87);
  padding: 2px 9px;
  border-radius: 6px;
  box-shadow:
    0 0 8px rgba(245,135,58,0.22),
    inset 0 0 6px rgba(245,135,58,0.04);
  text-shadow:
    0 0 3px rgba(245,135,58,1),
    0 0 12px rgba(245,135,58,0.35);
  display: inline;
}

/* Hot magenta — graffiti neon: vivid color, tight inner glow only */
.neon-hot {
  color: var(--neon-hot);
  font-weight: 700;
  text-shadow:
    0 0 3px rgba(245,135,58,1),
    0 0 14px rgba(245,135,58,0.38);
  display: inline;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 42px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(245,135,58,0.5);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,135,58,0.6);
}

/* ===== MARQUEE TICKER ===== */
.marquee-bar {
  background: #00BFFF;
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 55s linear infinite;
}

.marquee-track span {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-track .sep {
  color: var(--orange);
  font-size: 0.55rem;
  opacity: 0.8;
}

/* ===== WHATNOT LIVE ===== */
.live-section {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.live-video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  right: 0;
  display: flex;
  z-index: 0;
}

.live-video-bg {
  height: 100%;
  object-fit: cover;
  min-width: 0;
}

.live-video-bg:first-child,
.live-video-bg:nth-child(2) {
  flex: 0 0 50%;
  width: 50%;
}

.live-video-fill {
  flex: 1;
  min-width: 0;
}

.live-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,191,255,1.00) 0%,
    rgba(0,191,255,1.00) 32%,
    rgba(0,191,255,0.25) 40%,
    transparent 44%
  );
  z-index: 1;
}

.live-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}

.live-content {
  max-width: 480px;
  text-align: left;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
}

/* Two expanding rings — the "broadcasting" effect */
.live-dot::before,
.live-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 60, 60, 0.55);
  animation: ring-expand 2.2s ease-out infinite;
}

.live-dot::after {
  inset: -11px;
  border-color: rgba(255, 60, 60, 0.25);
  animation-delay: 0.8s;
}

.live-content h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.live-content p {
  font-family: var(--body);
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 370px;
}

.btn-live {
  background: var(--orange);
  color: #fff;
  padding: 16px 50px;
  font-size: 1rem;
  border-radius: 8px;
  min-width: 300px;
  text-align: center;
  box-shadow: 0 0 18px rgba(245,135,58,0.55), 0 0 40px rgba(245,135,58,0.25);
}

.btn-live:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(245,135,58,0.7), 0 12px 34px rgba(245,135,58,0.42);
}

.live-note {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.26);
  font-style: italic;
}

/* TikTok Shop button row — sits below the Whatnot button */
.tiktok-row {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.tiktok-divider {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.btn-tiktok {
  background: #010101;
  color: #fff;
  padding: 16px 50px;
  font-size: 1rem;
  min-width: 300px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(254,44,85,0.45), 0 0 18px rgba(254,44,85,0.35), 0 0 40px rgba(37,244,238,0.12);
}

.btn-tiktok:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(254,44,85,0.6), 0 0 28px rgba(254,44,85,0.55), 0 12px 34px rgba(37,244,238,0.2);
}

.live-dot--tiktok {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FE2C55;
  flex-shrink: 0;
  position: relative;
}

.live-dot--tiktok::before,
.live-dot--tiktok::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(254,44,85,0.55);
  animation: ring-expand 2.2s ease-out infinite;
}

.live-dot--tiktok::after {
  inset: -11px;
  border-color: rgba(254,44,85,0.25);
  animation-delay: 0.8s;
}

.live-badge--offline {
  gap: 0;
  color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.08);
}

.live-badge--scheduled {
  border-color: rgba(245,135,58,0.4);
  color: rgba(255,255,255,0.9);
}

.live-dot-scheduled {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Countdown ── */
.live-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 36px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cd-num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cd-label {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.cd-sep {
  font-family: var(--display);
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 18px;
}

/* ===== SHOP ===== */
.shop {
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.shop .container {
  position: relative;
  z-index: 1;
}

/* Neon color blobs — soft atmospheric glow on the cream background */
.shop-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.shop-blob-teal {
  width: 700px;
  height: 700px;
  top: 3%;
  right: -16%;
  background: radial-gradient(circle, rgba(245,135,58,0.07) 0%, transparent 65%);
}

.shop-blob-pink {
  width: 560px;
  height: 560px;
  bottom: 8%;
  left: -12%;
  background: radial-gradient(circle, rgba(245,135,58,0.055) 0%, transparent 62%);
}

.shop-blob-amber {
  width: 520px;
  height: 520px;
  top: 48%;
  left: 46%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,135,58,0.05) 0%, transparent 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.section-header p {
  font-family: var(--body);
  color: var(--navy-dim);
  font-size: 0.95rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(27,34,82,0.08);
  display: flex;
  flex-direction: column;
  /* hover transitions */
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Scroll-reveal: hidden until .visible is added by JS */
.product-card:not(.visible) {
  opacity: 0;
  pointer-events: none;
}

.product-card.visible {
  animation: cardReveal 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--delay, 0s);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,135,58,0.42);
  box-shadow: 0 14px 38px rgba(27,34,82,0.13);
}

/* Category top accent stripe */
.product-card[data-category="drinks"] { border-top: 3px solid #0277bd; }
.product-card[data-category="candy"]  { border-top: 3px solid #ad1457; }
.product-card[data-category="chips"]  { border-top: 3px solid #e65100; }

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.32s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.placeholder-drinks { background: linear-gradient(148deg, #1565c0 0%, #00acc1 100%); }
.placeholder-candy  { background: linear-gradient(148deg, #880e4f 0%, #d81b60 100%); }
.placeholder-chips  { background: linear-gradient(148deg, #bf360c 0%, #f9a825 100%); }

.placeholder-icon {
  font-size: 3.4rem;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.25));
}

.placeholder-text {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.product-body {
  padding: 14px 16px 17px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.product-origin {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Fraunces on product names — key upgrade */
.product-name {
  font-family: var(--display);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.28;
  color: var(--navy);
  margin-top: 2px;
  letter-spacing: -0.01em;
}

.product-pack {
  font-family: var(--body);
  font-size: 0.74rem;
  color: var(--navy-faint);
  font-weight: 500;
}

.product-price {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.product-price.pending {
  font-family: var(--body);
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--navy-faint);
  font-style: italic;
}

.btn-buy {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 24px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-buy:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-buy.soon {
  background: rgba(245,135,58,0.1);
  color: rgba(245,135,58,0.42);
  cursor: default;
  pointer-events: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 0.78rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 96px 0;
  background: var(--cream);
  border-top: 1px solid rgba(27,34,82,0.07);
  border-bottom: 1px solid rgba(27,34,82,0.07);
}

.about-inner { max-width: 660px; margin: 0 auto; }

.about-stats {
  display: flex;
  gap: 16px;
  margin: 32px 0 8px;
}

.stat-tile {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(27,34,82,0.09);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
}

.stat-icon { font-size: 1.5rem; margin-bottom: 8px; }

.stat-value {
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-dim);
  letter-spacing: 0.03em;
}

.about-inner h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.about-inner p {
  font-family: var(--body);
  color: var(--navy-dim);
  font-size: 1rem;
  line-height: 1.88;
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.social-pill {
  padding: 8px 22px;
  border: 1.5px solid rgba(245,135,58,0.45);
  border-radius: 100px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  transition: all 0.2s;
}

.social-pill:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.social-icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(27,34,82,0.13);
  background: rgba(27,34,82,0.04);
  color: var(--navy-dim);
  transition: all 0.22s ease;
}

.social-icon-pill svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,135,58,0.35);
}

/* About section emphasis — orange, no glow, consistent with brand CTA color */
.about .neon-hot {
  color: var(--orange);
  font-weight: 700;
  text-shadow: none;
}

/* ===== FOOTER ===== */
/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: 96px 0;
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(27,34,82,0.09);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background 0.18s;
}

.faq-q:hover { background: rgba(27,34,82,0.03); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22,1,0.36,1);
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--navy-dim);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #00BFFF;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(28,28,30,0.15);
}

.footer-logo { height: 70px; width: 70px; object-fit: contain; }

.footer-tagline {
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(28,28,30,0.7);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 300px;
}

.footer-location {
  font-family: var(--body);
  font-size: 0.76rem;
  color: rgba(28,28,30,0.5);
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(28,28,30,0.7);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-contact-text {
  font-family: var(--body);
  font-size: 0.8rem;
  color: rgba(28,28,30,0.65);
  line-height: 1.7;
}

.footer-email {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--neon);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.copyright {
  font-family: var(--body);
  font-size: 0.7rem;
  color: rgba(28,28,30,0.45);
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== KEYFRAMES ===== */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes ring-expand {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ===== SECTION TABS (Mystery Boxes / All Products) ===== */
.section-tabs {
  display: flex;
  border-bottom: 2px solid rgba(27,34,82,0.1);
  margin-bottom: 40px;
  gap: 0;
}

.section-tab {
  padding: 13px 32px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dim);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}

.section-tab:hover { color: var(--navy); }

.section-tab.active {
  color: var(--neon-hot);
  border-bottom-color: var(--neon-hot);
  text-shadow: 0 0 8px rgba(245,135,58,0.5), 0 0 16px rgba(245,135,58,0.25);
}

/* ===== MYSTERY BOX GRID (2×2) ===== */
.box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.box-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27,34,82,0.07);
  box-shadow: 0 4px 24px rgba(27,34,82,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.box-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(27,34,82,0.16);
}

/* Large image area — top half of card */
.box-card-visual {
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.box-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.32s ease;
}

.box-card:hover .box-card-visual img {
  transform: scale(1.04);
}

.box-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 5px 13px;
  border-radius: 100px;
  z-index: 1;
}

/* Content area — bottom half */
.box-card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.box-card-name {
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.box-card-items {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dim);
}

.box-card-desc {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--navy-dim);
  line-height: 1.55;
}

.box-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.box-card-price {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.box-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== CATALOG INTRO ===== */
.catalog-intro {
  background: rgba(27,34,82,0.04);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin-bottom: 28px;
}

.catalog-intro p {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--navy-dim);
  line-height: 1.65;
  margin: 0;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(27,34,82,0.15);
  background: transparent;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-dim);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.filter-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--neon);
  text-shadow: 0 0 6px rgba(245,135,58,0.5);
}

/* ===== SHOP LAYOUT ===== */
.shop-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.shop-grid-wrap { flex: 1; min-width: 0; }

/* ===== QTY ROW (on cards) ===== */
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,34,82,0.2);
  background: transparent;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  line-height: 1;
}

.qty-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,135,58,0.06);
}

.qty-val {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 18px;
  text-align: center;
}

.qty-sm {
  width: 22px;
  height: 22px;
  font-size: 0.85rem;
}

/* ===== ADD TO ORDER BUTTON ===== */
.btn-add {
  display: inline-block;
  margin-top: 0;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-add:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,135,58,0.4);
}

/* ===== CART BAR ===== */
.cart-bar {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  white-space: nowrap;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cart-bar-ship {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(135,206,235,0.82);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px 14px;
  width: 100%;
}

.cart-bar-ship-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
  min-width: 80px;
}

.cart-bar-ship-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 99px;
  transition: width 0.45s cubic-bezier(0.22,1,0.36,1), background 0.3s;
}

.cart-bar-ship-fill--done { background: #1a8a52; }

.cart-bar-ship-msg {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.cart-bar-ship-msg--done { color: #4ade80; }

.cart-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(245,135,58,0.45);
}

.cart-bar-btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 32px rgba(245,135,58,0.55);
}
.cart-bar-icon { font-size: 1.1rem; }
.cart-bar-sep { opacity: 0.35; }
.cart-bar-arrow { opacity: 0.6; margin-left: 4px; }
.cart-bar-old { text-decoration: line-through; opacity: 0.5; margin-right: 2px; }

/* ===== CART MODAL ===== */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.cart-modal.open {
  visibility: visible;
  pointer-events: auto;
}

.cart-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.cart-modal.open .cart-modal-overlay { opacity: 1; }

.cart-modal-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}

.cart-modal.open .cart-modal-panel { transform: translateY(0); }

@media (min-width: 700px) {
  .cart-modal-panel {
    left: 50%;
    right: auto;
    bottom: 0;
    margin-left: -240px;
    width: 480px;
    border-radius: 20px 20px 0 0;
  }
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(27,34,82,0.07);
  flex-shrink: 0;
}

.cart-modal-title {
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}

.cart-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(27,34,82,0.07);
  color: var(--navy);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cart-modal-close:hover { background: rgba(27,34,82,0.14); }

.cart-modal .order-items {
  flex: 1;
  overflow-y: auto;
  max-height: none;
  padding: 8px 0;
}

.cart-savings {
  padding: 9px 14px;
  background: rgba(245,135,58,0.09);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
}

.order-item-pack s {
  opacity: 0.45;
  margin-right: 2px;
}

.order-items {
  list-style: none;
  max-height: 340px;
  overflow-y: auto;
  padding: 8px 0;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(27,34,82,0.05);
}

.order-item:last-child { border-bottom: none; }

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-item-pack {
  font-family: var(--body);
  font-size: 0.65rem;
  color: var(--navy-faint);
}

.order-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-item-qty {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 16px;
  text-align: center;
}

.order-item-price {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.order-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(27,34,82,0.07);
}

/* ── SPIN RECALL BUTTON ── */
.spin-recall {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245,135,58,0.4);
  white-space: nowrap;
}
.spin-recall:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 6px 20px rgba(245,135,58,0.55); }

/* ── SPIN MODAL ── */
.spin-modal {
  position: fixed; inset: 0; z-index: 1100;
  visibility: hidden; pointer-events: none;
}
.spin-modal.open { visibility: visible; pointer-events: auto; }

.spin-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0; transition: opacity 0.32s ease;
}
.spin-modal.open .spin-modal-overlay { opacity: 1; }

.spin-modal-panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(calc(-50% - 280px), -50%); opacity: 0;
  transition: transform 0.52s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease;
  width: 92%; max-width: 420px;
  background: #fff; border-radius: 24px; padding: 36px 28px 28px;
  text-align: center; overflow: hidden;
}
.spin-modal.open .spin-modal-panel { transform: translate(-50%, -50%); opacity: 1; }

.spin-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.1rem;
  color: var(--navy-dim); cursor: pointer; padding: 4px 8px; border-radius: 6px;
}
.spin-modal-close:hover { background: rgba(27,34,82,0.08); }

.spin-step { display: flex; flex-direction: column; gap: 0; }

.spin-emoji { font-size: 2.6rem; margin-bottom: 6px; }
.spin-header { margin-bottom: 20px; }
.spin-header h2 {
  font-family: var(--display); font-size: 1.65rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.spin-header p { font-family: var(--body); font-size: 0.84rem; color: var(--navy-dim); line-height: 1.65; }

.spin-form { display: flex; flex-direction: column; gap: 11px; }
.spin-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(27,34,82,0.15); border-radius: 10px;
  font-family: var(--body); font-size: 0.9rem; color: var(--navy);
  outline: none; transition: border-color 0.2s;
}
.spin-input:focus { border-color: var(--orange); }
.spin-form-note { font-size: 0.67rem; color: var(--navy-faint); line-height: 1.5; }
.spin-form-err  { font-size: 0.74rem; color: #c0392b; min-height: 16px; }

.spin-submit {
  margin-top: 4px; padding: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; border: none; border-radius: 10px;
  font-family: var(--body); font-size: 0.92rem; font-weight: 700;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(27,34,82,0.22);
}
.spin-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(27,34,82,0.32); }
.spin-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.spin-wheel-step { align-items: center; gap: 14px; }
.spin-wheel-label { font-family: var(--body); font-size: 0.8rem; color: var(--navy-dim); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.spin-wheel-wrap { position: relative; display: inline-block; }
.spin-pointer {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem; color: var(--navy);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  z-index: 1;
}
#spinCanvas { border-radius: 50%; display: block; box-shadow: 0 8px 36px rgba(0,0,0,0.18); }

.spin-result-step { align-items: center; gap: 14px; padding: 4px 0; }
.spin-result-icon { font-size: 3rem; }
.spin-result-msg {
  font-family: var(--body); font-size: 0.92rem;
  color: var(--navy); line-height: 1.7; text-align: center;
}
.spin-result-code {
  font-family: var(--body); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); background: rgba(27,34,82,0.06);
  padding: 10px 28px; border-radius: 10px;
  letter-spacing: 0.1em; border: 2px dashed rgba(27,34,82,0.2);
}
.spin-again-btn {
  background: none; border: 1.5px solid rgba(27,34,82,0.18);
  border-radius: 8px; padding: 10px 20px;
  color: var(--navy); font-family: var(--body); font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.spin-again-btn:hover { background: rgba(27,34,82,0.06); }
.spin-expiry {
  font-family: var(--body);
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.spin-modal-dismiss {
  background: none; border: none; color: var(--navy-faint);
  font-family: var(--body); font-size: 0.73rem; cursor: pointer;
  text-decoration: underline; margin-top: 2px;
}

/* ── FREE SHIPPING ANNOUNCEMENT STRIP ── */
.shipping-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 101;
}

/* ── CART FREE SHIPPING PROGRESS ── */
.free-ship-progress {
  padding: 12px 20px 8px;
  border-bottom: 1px solid rgba(27,34,82,0.07);
}

.free-ship-track {
  height: 6px;
  background: rgba(27,34,82,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.free-ship-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 99px;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}

.free-ship-fill--done { background: #1a8a52; }

.free-ship-msg {
  font-family: var(--body);
  font-size: 0.72rem;
  color: var(--navy-dim);
  text-align: center;
}

.free-ship-msg--done { color: #1a8a52; font-weight: 700; }

.promo-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.promo-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid rgba(27,34,82,0.18);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--navy);
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  outline: none;
}

.promo-input:focus { border-color: var(--orange); }

.promo-btn {
  padding: 9px 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.promo-btn:hover { background: var(--navy-light); }

.promo-msg {
  font-family: var(--body);
  font-size: 0.72rem;
  min-height: 16px;
  margin-bottom: 10px;
}

.promo-msg--success { color: #1a7a4a; }
.promo-msg--error   { color: #c0392b; }

.order-summary {
  margin-bottom: 14px;
  border-top: 1px solid rgba(27,34,82,0.07);
  padding-top: 12px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--navy-dim);
  padding: 3px 0;
}

.order-line--promo { color: #1a7a4a; font-weight: 600; }

.order-line--total {
  border-top: 1px solid rgba(27,34,82,0.1);
  margin-top: 6px;
  padding-top: 8px;
  font-size: 1rem;
  color: var(--navy);
}

.btn-order {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.btn-order:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.notes-row {
  margin: 14px 0 10px;
}

.notes-label {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.notes-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--navy);
  resize: vertical;
  line-height: 1.5;
  transition: border-color 0.2s;
  background: #fafafa;
}

.notes-input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.notes-hint {
  margin-top: 5px;
  font-family: var(--body);
  font-size: 0.67rem;
  line-height: 1.4;
  min-height: 1em;
}

.order-note {
  margin-top: 10px;
  font-family: var(--body);
  font-size: 0.65rem;
  color: var(--navy-faint);
  text-align: center;
  line-height: 1.5;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
  }
  .shop  { padding: 72px 0 84px; }
  .about { padding: 72px 0; }

  .live-gradient {
    background: linear-gradient(
      180deg,
      rgba(135,206,235,0.55) 0%,
      rgba(135,206,235,0.92) 55%,
      rgba(135,206,235,0.96) 100%
    );
  }
  .live-inner  { padding: 72px 24px; }
  .live-content { max-width: 100%; text-align: center; }
  .live-content p { max-width: 100%; }
}

/* Mobile nav dropdown (≤ 640px) */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  /* Hide brand text — logo alone is enough when space is tight */
  .nav-brand { display: none; }

  .nav-logo img { height: 56px; width: auto; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0 20px;
    background: rgba(253, 246, 228, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 34, 82, 0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    font-size: 0.85rem;
    color: var(--navy-dim);
  }

  .nav-live-link { justify-content: center; }

  /* Box grid: 1 column on tablet */
  .box-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }

  /* Spin modal: tighter on small screens */
  .spin-modal-panel { padding: 28px 20px 22px; }
  #spinCanvas { width: 240px !important; height: 240px !important; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .hero         { padding: 64px 20px 56px; min-height: 80vh; }
  .shop         { padding: 56px 0 64px; }
  .about        { padding: 56px 0; }
  .live-section { padding: 56px 20px; }
  .footer       { padding: 40px 0; }
  .faq          { padding: 56px 0; }

  .section-header    { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.9rem; }
  .section-header p  { font-size: 0.88rem; }

  .hero-inner h1  { letter-spacing: -0.02em; }
  .about-inner h2 { font-size: 1.8rem; }

  /* Logo: match desktop flush proportion (60px in 62px nav) */
  .nav-logo img { height: 60px; width: auto; }
  .nav          { height: 62px; }
  .shipping-bar { font-size: 0.72rem; padding: 8px 16px; }
  .header       { top: 36px; }

  /* Filter tabs scroll horizontally instead of wrapping */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { flex-shrink: 0; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-body { padding: 11px 12px 13px; }
  .product-name { font-size: 0.88rem; }

  .btn        { padding: 13px 28px; }
  .btn-live   { padding: 14px 32px; }
  .btn-tiktok { padding: 14px 32px; }

  .box-grid         { grid-template-columns: 1fr; gap: 16px; }
  .box-card-content { padding: 16px 18px 18px; }
  .box-card-name    { font-size: 1.1rem; }
  .box-card-price   { font-size: 1.55rem; }
  .section-tab      { padding: 11px 18px; font-size: 0.78rem; }

  /* Cart bar: full width on phones */
  .cart-bar {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 20px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Phone live section: full-bleed video, no blue gradient, text on top */
  .live-section {
    padding: 0;
    min-height: 100svh;
  }
  .live-video-container {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  /* Both videos stacked full-screen in portrait so both play.
     First sits on top and covers second — landscape then separates them. */
  .live-video-bg:first-child,
  .live-video-bg:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .live-video-fill { display: none; }
  .live-gradient {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.55) 100%
    );
  }
  .live-inner {
    padding: 80px 28px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
  }
  .live-content {
    text-align: center;
  }

  /* Live section: heading must be white on the dark video overlay */
  .live-content h2 { color: #fff; }

  /* Buttons: full width so they don't fight the narrow phone viewport */
  .btn-live,
  .btn-tiktok { width: 100%; min-width: 0; }

  /* TikTok row: center children to match the rest of the live section */
  .tiktok-row { align-items: center; }

  /* Hero: shrink h1 so "Mystery Boxes of" fits on one line */
  .hero-inner h1 { font-size: 2.6rem; }

  /* About stats: 3 columns is ~103px each — too narrow, stack vertically */
  .about-stats { flex-direction: column; }

  /* Section tabs: horizontal scroll so long labels never clip */
  .section-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-tabs::-webkit-scrollbar { display: none; }
  .section-tab { flex-shrink: 0; }
}

/* Phone landscape: two videos side by side, no blue gradient, text on top */
@media (orientation: landscape) and (max-height: 500px) {
  .live-section { min-height: 100svh; }

  /* Full-width block container — no flex, no grid */
  .live-video-container {
    left: 0;
    display: block;
  }

  /* Video 1 hard-pinned to the left half */
  .live-video-bg:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Video 2 hard-pinned to the right half */
  .live-video-bg:nth-child(2) {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Fill video not needed */
  .live-video-fill { display: none; }

  /* Dark overlay — no blue gradient */
  .live-gradient {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.52) 100%
    );
  }

  .live-inner {
    min-height: 100svh;
    padding: 32px 28px;
  }

  .live-content h2 { color: #fff; }
}
