/* ============================================
   CHOCOLATE!?!?!!! — Bikini Bottom Brand Site
   ============================================ */

:root {
  /* Episode-accurate chocolate wrapper colors */
  --wrap-yellow: #f7c52b;        /* gold/yellow band */
  --wrap-yellow-deep: #d99c12;   /* shadow on yellow */
  --wrap-red: #c8262b;           /* wrapper red */
  --wrap-red-deep: #8e1418;
  --wrap-purple: #4a3a86;        /* wrapper purple/indigo */
  --wrap-purple-deep: #2c2358;

  /* Bikini Bottom palette */
  --water-top: #4ec3e8;
  --water-mid: #2aa6d9;
  --water-bot: #1d6fa8;
  --sand: #e9d27a;
  --sand-deep: #c9a94a;
  --sponge: #ffe14a;
  --patrick: #ff8aa7;
  --ink: #1b1b1b;
  --paper: #fff8e6;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--water-mid);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ============================================
   Underwater background
   ============================================ */
.ocean-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      var(--water-top) 0%,
      var(--water-mid) 45%,
      var(--water-bot) 100%);
  overflow: hidden;
}

.flowers { position: absolute; inset: 0; }
.flower {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: transparent;
  opacity: 0.55;
  filter: blur(0.3px);
}
.flower::before, .flower::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.flower::after {
  transform: rotate(60deg);
}
.flower.f1 { top: 8%;  left: 5%;  width: 220px; height: 220px; }
.flower.f2 { top: 15%; left: 70%; width: 160px; height: 160px; opacity: 0.45; }
.flower.f3 { top: 50%; left: 12%; width: 200px; height: 200px; opacity: 0.4; }
.flower.f4 { top: 60%; left: 80%; width: 240px; height: 240px; opacity: 0.5; }
.flower.f5 { top: 30%; left: 45%; width: 130px; height: 130px; opacity: 0.35; }
.flower.f6 { top: 80%; left: 55%; width: 190px; height: 190px; opacity: 0.45; }

.bubbles { position: absolute; inset: 0; }
.bubbles span {
  position: absolute;
  bottom: -50px;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 60%, transparent 70%);
  border-radius: 50%;
  animation: rise linear infinite;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
}
.bubbles span:nth-child(1)  { left:  5%; width: 22px; height: 22px; animation-duration: 14s; animation-delay:  0s; }
.bubbles span:nth-child(2)  { left: 12%; width: 14px; height: 14px; animation-duration: 11s; animation-delay:  2s; }
.bubbles span:nth-child(3)  { left: 22%; width: 28px; height: 28px; animation-duration: 16s; animation-delay:  1s; }
.bubbles span:nth-child(4)  { left: 30%; width: 12px; height: 12px; animation-duration:  9s; animation-delay:  4s; }
.bubbles span:nth-child(5)  { left: 40%; width: 20px; height: 20px; animation-duration: 13s; animation-delay:  3s; }
.bubbles span:nth-child(6)  { left: 50%; width: 16px; height: 16px; animation-duration: 12s; animation-delay:  5s; }
.bubbles span:nth-child(7)  { left: 58%; width: 24px; height: 24px; animation-duration: 15s; animation-delay:  6s; }
.bubbles span:nth-child(8)  { left: 66%; width: 14px; height: 14px; animation-duration: 10s; animation-delay:  2s; }
.bubbles span:nth-child(9)  { left: 74%; width: 18px; height: 18px; animation-duration: 13s; animation-delay:  7s; }
.bubbles span:nth-child(10) { left: 82%; width: 26px; height: 26px; animation-duration: 17s; animation-delay:  1s; }
.bubbles span:nth-child(11) { left: 90%; width: 12px; height: 12px; animation-duration: 11s; animation-delay:  3s; }
.bubbles span:nth-child(12) { left: 95%; width: 20px; height: 20px; animation-duration: 14s; animation-delay:  0s; }
.bubbles span:nth-child(13) { left: 18%; width: 16px; height: 16px; animation-duration: 12s; animation-delay:  6s; }
.bubbles span:nth-child(14) { left: 36%; width: 22px; height: 22px; animation-duration: 15s; animation-delay:  4s; }
.bubbles span:nth-child(15) { left: 70%; width: 14px; height: 14px; animation-duration: 10s; animation-delay:  5s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0)   scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(20px) scale(1.05); }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(-15px) scale(0.9); opacity: 0; }
}

.sand {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background:
    radial-gradient(circle at 5% 50%,  #fff 1px, transparent 2px),
    radial-gradient(circle at 18% 30%, #fff 1px, transparent 2px),
    radial-gradient(circle at 35% 70%, #4a2e1f 1px, transparent 2px),
    radial-gradient(circle at 55% 40%, #fff 1px, transparent 2px),
    radial-gradient(circle at 75% 60%, #4a2e1f 1px, transparent 2px),
    radial-gradient(circle at 92% 35%, #fff 1px, transparent 2px),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  background-size: 80px 80px, 80px 80px, 80px 80px, 80px 80px, 80px 80px, 80px 80px, 100% 100%;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 4px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bangers', cursive;
}

.brand-name {
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--ink);
  line-height: 1;
}
.brand-punc {
  color: var(--wrap-red);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 17px;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--wrap-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ============================================
   Brand bar — EPISODE-ACCURATE wrapper
   ============================================
   Layout: yellow band, red/purple diagonal middle, yellow band.
   The middle is a single rectangle split by a diagonal stripe
   from upper-left to lower-right, red on top, purple on bottom.
*/
.brand-bar {
  display: inline-block;
  width: 56px;
  height: 36px;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background:
    /* yellow top band */
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    /* middle: diagonal split, red over purple */
    linear-gradient(135deg,
      var(--wrap-red) 0%,
      var(--wrap-red) 50%,
      var(--wrap-purple) 50%,
      var(--wrap-purple) 100%);
  background-size: 100% 100%, 100% 100%;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18), 0 2px 0 rgba(0,0,0,0.25);
}
/* Yellow band inner shadow lines */
.brand-bar::before,
.brand-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--wrap-yellow-deep);
}
.brand-bar::before { top: 22%; }
.brand-bar::after  { bottom: 22%; }

.brand-bar.small {
  width: 44px; height: 28px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--sponge);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 22px;
}

.scream {
  font-family: 'Luckiest Guy', 'Bangers', cursive;
  font-size: clamp(60px, 14vw, 180px);
  line-height: 0.95;
  margin: 0;
  color: #fff;
  text-shadow:
    0 0 0 var(--ink),
    -3px 0 0 var(--ink),
    3px 0 0 var(--ink),
    0 -3px 0 var(--ink),
    0 3px 0 var(--ink),
    -3px -3px 0 var(--ink),
    3px 3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px -3px 0 var(--ink),
    8px 8px 0 var(--wrap-red);
  letter-spacing: 2px;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: transform 0.08s ease;
}
.scream-line { display: block; }
.scream-punc {
  display: block;
  color: var(--wrap-yellow);
  text-shadow:
    -3px 0 0 var(--ink),
    3px 0 0 var(--ink),
    0 -3px 0 var(--ink),
    0 3px 0 var(--ink),
    -3px -3px 0 var(--ink),
    3px 3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px -3px 0 var(--ink),
    8px 8px 0 var(--wrap-purple);
}

.scream.shake {
  animation: scream-shake 0.45s ease-in-out;
}
@keyframes scream-shake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  10% { transform: translate(-6px, -3px) rotate(-2deg) scale(1.04); }
  20% { transform: translate(7px, 2px) rotate(2deg)   scale(1.06); }
  30% { transform: translate(-5px, 4px) rotate(-1deg) scale(1.05); }
  40% { transform: translate(6px, -2px) rotate(1.5deg) scale(1.07); }
  50% { transform: translate(-4px, 3px) rotate(-2deg) scale(1.05); }
  60% { transform: translate(5px, -3px) rotate(1deg)  scale(1.06); }
  70% { transform: translate(-3px, 2px) rotate(-1deg) scale(1.04); }
  80% { transform: translate(2px, -1px) rotate(0.5deg) scale(1.02); }
}

.hero-sub {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: 20px;
  color: var(--paper);
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}
.hero-sub em {
  background: var(--wrap-yellow);
  color: var(--ink);
  padding: 0 8px;
  font-style: normal;
  border-radius: 3px;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-tip {
  margin-top: 28px;
  color: var(--paper);
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.hero-bars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-bars .bar {
  position: absolute;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,0.2));
  animation: float 6s ease-in-out infinite;
}
.hero-bars .bar-tilt-l { top: 8%;  left: 4%;  transform: rotate(-18deg); animation-delay: 0s; }
.hero-bars .bar-tilt-r { top: 12%; right: 6%; transform: rotate(22deg);  animation-delay: 1.5s; }
.hero-bars .bar-flat   { bottom: 6%; left: 50%; transform: translateX(-50%) rotate(-4deg); animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.hero-bars .bar-tilt-l { --r: -18deg; }
.hero-bars .bar-tilt-r { --r: 22deg; }
.hero-bars .bar-flat   { --r: -4deg; }

/* Decorative bars (same wrapper recipe, larger) */
.bar {
  width: 130px; height: 80px;
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      var(--wrap-red) 0%,
      var(--wrap-red) 50%,
      var(--wrap-purple) 50%,
      var(--wrap-purple) 100%);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.18);
}
.bar::before,
.bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--wrap-yellow-deep);
}
.bar::before { top: 22%; }
.bar::after  { bottom: 22%; }

.bar-stripe { display: none; } /* stripe is now part of the gradient itself */

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 1.5px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 5px 0 var(--ink);
  text-transform: uppercase;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--ink);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--ink);
}
.btn-primary {
  background: var(--wrap-yellow);
  color: var(--ink);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
}
.btn-big {
  font-size: 28px;
  padding: 18px 40px;
}

/* ============================================
   Ticker
   ============================================ */
.ticker {
  background: var(--ink);
  color: var(--sponge);
  padding: 16px 0;
  overflow: hidden;
  border-top: 4px solid var(--wrap-red);
  border-bottom: 4px solid var(--wrap-red);
  margin: 40px 0;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  animation: scroll-x 22s linear infinite;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   Sections (cards / featured / quote / cta)
   ============================================ */
main { position: relative; z-index: 1; }

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(34px, 5vw, 56px);
  text-align: center;
  color: #fff;
  text-shadow:
    -2px 0 0 var(--ink), 2px 0 0 var(--ink),
    0 -2px 0 var(--ink), 0 2px 0 var(--ink),
    4px 4px 0 var(--wrap-red);
  margin: 0 0 12px;
  letter-spacing: 1.5px;
}
.section-title .hl { color: var(--wrap-yellow); }
.section-lede {
  text-align: center;
  font-size: 19px;
  color: var(--paper);
  margin: 0 0 40px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-4px) rotate(-0.5deg); }
.card-emoji {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
}
.card h3 {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: var(--wrap-red);
}
.card p { margin: 0; font-size: 16px; line-height: 1.5; }

/* Featured products grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.prod {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: 0 8px 0 var(--ink);
  position: relative;
  transition: transform 0.15s ease;
  cursor: pointer;
}
.prod:hover { transform: translateY(-6px) rotate(-1deg); }
.prod-feature {
  background: var(--sponge);
  transform: rotate(-1.5deg);
}
.prod-feature:hover { transform: translateY(-6px) rotate(-2deg); }

.prod-bar {
  width: 220px;
  height: 130px;
  margin: 0 auto 18px;
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      var(--wrap-red) 0%,
      var(--wrap-red) 50%,
      var(--wrap-purple) 50%,
      var(--wrap-purple) 100%);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.18);
}
.prod-bar::before,
.prod-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--wrap-yellow-deep);
}
.prod-bar::before { top: 22%; }
.prod-bar::after  { bottom: 22%; }

.prod-stripe { display: none; }

.prod-nuts .nut {
  position: absolute;
  color: #5a3a1c;
  font-size: 14px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.prod-nuts .n1 { top: 30%; left: 18%; }
.prod-nuts .n2 { top: 40%; left: 60%; }
.prod-nuts .n3 { top: 60%; left: 35%; }

.prod-stack {
  box-shadow:
    inset 0 -4px 0 rgba(0,0,0,0.18),
    -8px 8px 0 -2px var(--wrap-purple),
    -16px 16px 0 -4px var(--wrap-red);
}

.prod h3 {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0 0 6px;
  color: var(--ink);
}
.prod-tag {
  font-style: italic;
  margin: 0 0 12px;
  color: var(--wrap-red);
  font-weight: 600;
}
.prod-price {
  display: inline-block;
  font-family: 'Bangers', cursive;
  font-size: 28px;
  background: var(--wrap-red);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  border: 3px solid var(--ink);
}
.prod-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--wrap-red);
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  transform: rotate(8deg);
}

/* Quote */
.quote {
  text-align: center;
  padding: 80px 24px;
}
.quote blockquote {
  margin: 0;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 0 var(--ink);
  position: relative;
}
.quote blockquote::before {
  content: """;
  position: absolute;
  top: -30px; left: 20px;
  font-family: 'Bangers', cursive;
  font-size: 120px;
  color: var(--wrap-red);
  line-height: 1;
}
.quote blockquote p {
  font-family: 'Bangers', cursive;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: 1px;
}
.quote blockquote footer {
  font-size: 16px;
  color: #555;
}

/* CTA */
.cta {
  text-align: center;
  background: var(--wrap-yellow);
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
  padding: 80px 24px;
  margin: 60px 0 0;
  max-width: none;
}
.cta h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 1.5px;
}
.cta p {
  font-size: 19px;
  margin: 0 0 30px;
  color: var(--ink);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand strong {
  display: block;
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  margin-top: 6px;
}
.footer-tag {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 540px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
.footer-cols h4 {
  font-family: 'Bangers', cursive;
  letter-spacing: 1.5px;
  font-size: 16px;
  color: var(--wrap-yellow);
  margin: 0 0 10px;
}
.footer-cols a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--paper);
  opacity: 0.85;
}
.footer-cols a:hover { opacity: 1; color: var(--wrap-yellow); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 12px;
  opacity: 0.6;
}

/* ============================================
   Products page
   ============================================ */
.page-header {
  text-align: center;
  padding: 80px 24px 40px;
  position: relative;
}
.page-header h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(48px, 9vw, 96px);
  color: #fff;
  text-shadow:
    -3px 0 0 var(--ink), 3px 0 0 var(--ink),
    0 -3px 0 var(--ink), 0 3px 0 var(--ink),
    6px 6px 0 var(--wrap-red);
  margin: 0;
  letter-spacing: 2px;
}
.page-header p {
  color: var(--paper);
  font-size: 19px;
  max-width: 640px;
  margin: 14px auto 0;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

.product-list {
  display: grid;
  gap: 30px;
  padding: 30px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 0 var(--ink);
  align-items: center;
}
.product-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
  background: var(--sponge);
}
.product-row:nth-child(even) .product-visual { order: 2; }
.product-row:nth-child(even) .product-body   { order: 1; }
@media (max-width: 720px) {
  .product-row,
  .product-row:nth-child(even) { grid-template-columns: 1fr; }
  .product-row:nth-child(even) .product-visual { order: 0; }
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-visual .bar-big {
  width: 320px;
  height: 200px;
  border: 5px solid var(--ink);
  border-radius: 12px;
  position: relative;
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      var(--wrap-red) 0%,
      var(--wrap-red) 50%,
      var(--wrap-purple) 50%,
      var(--wrap-purple) 100%);
  box-shadow: inset 0 -5px 0 rgba(0,0,0,0.18), 0 6px 0 rgba(0,0,0,0.25);
  transform: rotate(-3deg);
}
.product-visual .bar-big::before,
.product-visual .bar-big::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--wrap-yellow-deep);
}
.product-visual .bar-big::before { top: 22%; }
.product-visual .bar-big::after  { bottom: 22%; }

.product-body h2 {
  font-family: 'Bangers', cursive;
  font-size: 40px;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
  color: var(--wrap-red);
}
.product-body .muted {
  font-style: italic;
  color: #444;
  margin: 0 0 14px;
}
.product-body .desc {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}
.product-body .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.tag {
  background: var(--ink);
  color: var(--wrap-yellow);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================
   About page
   ============================================ */
.story {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 24px 60px;
}
.story-block {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 24px;
  box-shadow: 0 8px 0 var(--ink);
}
.story-block h2 {
  font-family: 'Bangers', cursive;
  letter-spacing: 1.5px;
  font-size: 32px;
  color: var(--wrap-red);
  margin: 0 0 12px;
}
.story-block p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 17px;
}
.story-block p:last-child { margin-bottom: 0; }
.story-block.alt {
  background: var(--sponge);
  transform: rotate(-0.3deg);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-left: 4px solid var(--wrap-red);
  margin-left: 8px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 16px;
  width: 16px; height: 16px;
  background: var(--wrap-yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.timeline li strong { color: var(--wrap-purple); }

/* ============================================
   Contact / Buy page
   ============================================ */
.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}
.form-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 10px 0 var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--wrap-purple);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px var(--wrap-yellow);
  transform: translateY(-1px);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-card .btn { width: 100%; margin-top: 8px; }

.fineprint {
  text-align: center;
  font-size: 13px;
  color: var(--paper);
  margin-top: 18px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

/* ============================================
   Scream overlay (logo click)
   ============================================ */
.scream-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(247, 197, 43, 0.35),
    rgba(200, 38, 43, 0.45) 60%,
    rgba(0,0,0,0.55) 100%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
  animation: flash 0.45s ease-out;
}
.scream-overlay.show { display: flex; }
.scream-overlay span {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(60px, 18vw, 240px);
  color: #fff;
  text-shadow:
    -4px 0 0 var(--ink), 4px 0 0 var(--ink),
    0 -4px 0 var(--ink), 0 4px 0 var(--ink),
    10px 10px 0 var(--wrap-red);
  letter-spacing: 4px;
  animation: pop 0.45s cubic-bezier(.36,1.56,.64,1);
}
@keyframes flash {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes pop {
  0%   { transform: scale(0.4) rotate(-10deg); }
  60%  { transform: scale(1.1) rotate(3deg); }
  100% { transform: scale(0.95) rotate(-1deg); }
}

/* ============================================
   Elevated typography accents
   ============================================ */
.kicker {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wrap-red);
  margin: 0 0 10px;
  padding: 4px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.kicker.light {
  color: var(--wrap-yellow);
  border-color: var(--wrap-yellow);
}

/* Refine page-header for elevated look */
.page-header h1 + p,
.page-header > p:not(.kicker) {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
.page-header .kicker {
  margin-bottom: 16px;
}

/* ============================================
   Awards / press strip
   ============================================ */
.awards {
  max-width: none;
  background: rgba(255, 248, 230, 0.96);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 28px 24px;
  margin: 40px 0 0;
}
.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 720px) {
  .awards-inner { grid-template-columns: repeat(2, 1fr); }
}
.award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  position: relative;
}
.award + .award::before {
  content: "";
  position: absolute;
  left: -12px; top: 12%; bottom: 12%;
  width: 1px;
  background: rgba(0,0,0,0.18);
}
@media (max-width: 720px) {
  .award + .award::before { display: none; }
}
.award strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--wrap-red);
  letter-spacing: 0.5px;
}
.award span {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--ink);
  opacity: 0.85;
  max-width: 240px;
  line-height: 1.4;
}

/* ============================================
   Craft section
   ============================================ */
.craft {
  padding: 70px 24px;
}
.craft-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 50px 40px;
  box-shadow: 0 10px 0 var(--ink);
}
@media (max-width: 760px) {
  .craft-grid { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
}
.craft-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.craft-text p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.craft-text .btn { margin-top: 8px; }

.craft-figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bar-big-feature {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border: 5px solid var(--ink);
  border-radius: 12px;
  position: relative;
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      var(--wrap-red) 0%,
      var(--wrap-red) 50%,
      var(--wrap-purple) 50%,
      var(--wrap-purple) 100%);
  box-shadow: inset 0 -5px 0 rgba(0,0,0,0.18), 0 10px 0 rgba(0,0,0,0.25);
  transform: rotate(-4deg);
}
.bar-big-feature::before,
.bar-big-feature::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--wrap-yellow-deep);
}
.bar-big-feature::before { top: 22%; }
.bar-big-feature::after  { bottom: 22%; }

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
  padding: 40px 24px 60px;
}
.newsletter-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: 22px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  border: 4px solid var(--ink);
  box-shadow: 0 10px 0 var(--wrap-red);
  position: relative;
  overflow: hidden;
}
.newsletter-card::after {
  content: "!?!?!!!";
  position: absolute;
  right: -10px; top: -22px;
  font-family: 'Luckiest Guy', cursive;
  font-size: 110px;
  color: rgba(247, 197, 43, 0.12);
  letter-spacing: 4px;
  pointer-events: none;
}
@media (max-width: 720px) {
  .newsletter-card { grid-template-columns: 1fr; padding: 28px; }
}
.newsletter-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 8px;
  color: var(--wrap-yellow);
}
.newsletter-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}
.news-form {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.news-form input {
  flex: 1;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 3px solid var(--paper);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.news-form input:focus {
  border-color: var(--wrap-yellow);
  box-shadow: 0 0 0 3px rgba(247, 197, 43, 0.4);
}
.news-form .btn {
  font-size: 16px;
  padding: 12px 18px;
}
.news-status {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--wrap-yellow);
  min-height: 22px;
}

/* ============================================
   Product page enhancements
   ============================================ */
.product-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wrap-purple);
  margin: 0 0 6px;
  opacity: 0.9;
}

.product-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin: 0 0 6px;
}

/* Bar variants on product page */
.bar-big.bar-with-nuts {
  position: relative;
}
.bar-big.bar-with-nuts .nut-big {
  position: absolute;
  color: #4a2e15;
  font-size: 22px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.bar-big.bar-with-nuts .nb1 { top: 30%; left: 20%; }
.bar-big.bar-with-nuts .nb2 { top: 38%; left: 55%; }
.bar-big.bar-with-nuts .nb3 { top: 52%; left: 35%; }
.bar-big.bar-with-nuts .nb4 { top: 60%; left: 70%; }

.bar-big.bar-stack-big {
  box-shadow:
    inset 0 -5px 0 rgba(0,0,0,0.18),
    -10px 10px 0 -3px var(--wrap-purple),
    -20px 20px 0 -6px var(--wrap-red),
    -30px 30px 0 -9px var(--wrap-purple);
}

.bar-big.bar-dark {
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      #5a1a1d 0%,
      #5a1a1d 50%,
      #1f1640 50%,
      #1f1640 100%);
}

.bar-big.bar-white {
  background:
    linear-gradient(180deg,
      var(--wrap-yellow) 0%,
      var(--wrap-yellow) 22%,
      transparent 22%,
      transparent 78%,
      var(--wrap-yellow) 78%,
      var(--wrap-yellow) 100%),
    linear-gradient(135deg,
      #f4e3d1 0%,
      #f4e3d1 50%,
      #d9c0b0 50%,
      #d9c0b0 100%);
}

/* ============================================
   FAQ (about page)
   ============================================ */
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 14px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid rgba(0,0,0,0.15); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  position: relative;
  padding-right: 32px;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bangers', cursive;
  font-size: 28px;
  color: var(--wrap-red);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%);
}
.faq-item p {
  margin: 10px 0 6px;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

/* Section title variant for story blocks (more refined) */
.story-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.5px;
  color: var(--ink);
}

/* ============================================
   Contact extras
   ============================================ */
.contact-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 640px) { .contact-extras { grid-template-columns: 1fr; } }
.extra-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 0 var(--ink);
}
.extra-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}
.extra-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
}
.extra-card a {
  color: var(--wrap-red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.extra-card a:hover { text-decoration: underline; }

.form-status {
  display: none;
  text-align: center;
  margin-top: 18px;
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: var(--wrap-red);
  letter-spacing: 1px;
}
.form-status.show { display: block; }

/* ============================================
   Reduce motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
