/** Shopify CDN: Minification failed

Line 857:14 Expected identifier but found whitespace
Line 857:16 Unexpected "{"
Line 857:32 Expected ":"

**/
/* ============================================================
   FLIPSIDE HERO â€” Enhanced Animation CSS
   ============================================================ */

/* ---------- Base & Background ---------- */
.flipside-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #ff9edb;
}

.flipside-hero__inner {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FLOATING PARTICLES
   ============================================================ */
.flipside-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.flipside-hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}

/* Generate varied sizes, positions, colours & timings */
.flipside-hero__particle--1  { width: 6px;  height: 6px;  left: 5%;   background: #fff;    animation-duration: 8s;  animation-delay: 0s;   }
.flipside-hero__particle--2  { width: 4px;  height: 4px;  left: 12%;  background: #fff;    animation-duration: 11s; animation-delay: 1.2s; }
.flipside-hero__particle--3  { width: 8px;  height: 8px;  left: 20%;  background: #ee86b4; animation-duration: 9s;  animation-delay: 2s;   }
.flipside-hero__particle--4  { width: 5px;  height: 5px;  left: 30%;  background: #fff;    animation-duration: 13s; animation-delay: 0.4s; }
.flipside-hero__particle--5  { width: 3px;  height: 3px;  left: 42%;  background: #bceff9; animation-duration: 7s;  animation-delay: 3.5s; }
.flipside-hero__particle--6  { width: 7px;  height: 7px;  left: 55%;  background: #fff;    animation-duration: 10s; animation-delay: 1s;   }
.flipside-hero__particle--7  { width: 4px;  height: 4px;  left: 65%;  background: #ee86b4; animation-duration: 12s; animation-delay: 2.8s; }
.flipside-hero__particle--8  { width: 6px;  height: 6px;  left: 72%;  background: #fff;    animation-duration: 8.5s;animation-delay: 0.7s; }
.flipside-hero__particle--9  { width: 3px;  height: 3px;  left: 80%;  background: #bceff9; animation-duration: 14s; animation-delay: 4s;   }
.flipside-hero__particle--10 { width: 5px;  height: 5px;  left: 88%;  background: #fff;    animation-duration: 9.5s;animation-delay: 1.5s; }
.flipside-hero__particle--11 { width: 8px;  height: 8px;  left: 94%;  background: #ee86b4; animation-duration: 11s; animation-delay: 3s;   }
.flipside-hero__particle--12 { width: 4px;  height: 4px;  left: 8%;   background: #fff;    animation-duration: 16s; animation-delay: 5s;   }
.flipside-hero__particle--13 { width: 6px;  height: 6px;  left: 25%;  background: #bceff9; animation-duration: 7.5s;animation-delay: 2.2s; }
.flipside-hero__particle--14 { width: 3px;  height: 3px;  left: 38%;  background: #fff;    animation-duration: 10s; animation-delay: 0.9s; }
.flipside-hero__particle--15 { width: 5px;  height: 5px;  left: 50%;  background: #ee86b4; animation-duration: 12.5s;animation-delay:3.8s; }
.flipside-hero__particle--16 { width: 7px;  height: 7px;  left: 60%;  background: #fff;    animation-duration: 8s;  animation-delay: 1.8s; }
.flipside-hero__particle--17 { width: 4px;  height: 4px;  left: 76%;  background: #bceff9; animation-duration: 15s; animation-delay: 0.3s; }
.flipside-hero__particle--18 { width: 5px;  height: 5px;  left: 97%;  background: #fff;    animation-duration: 9s;  animation-delay: 4.5s; }

@keyframes particleDrift {
  0%   { transform: translateY(100vh) scale(0.6); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-120px) scale(1.1); opacity: 0; }
}

/* ============================================================
   HERO ZONE
   ============================================================ */
.flipside-hero__zone--hero {
  padding: 120px 0 80px;
}

.flipside-hero__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.flipside-hero__hero-cans {
  position: relative;
  min-height: 280px;
}

.flipside-hero__hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Entrance: content reveals ---------- */
[data-reveal] [data-reveal-child],
[data-scroll-reveal] [data-reveal-child] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-revealed [data-reveal-child],
[data-scroll-reveal].is-revealed [data-reveal-child] {
  opacity: 1;
  transform: none;
}

/* Staggered delays for sequential children */
[data-reveal-child]:nth-child(1),
[data-reveal-child][data-reveal-delay="0"]   { transition-delay: 0.05s; }
[data-reveal-child]:nth-child(2),
[data-reveal-child][data-reveal-delay="80"]  { transition-delay: 0.15s; }
[data-reveal-child]:nth-child(3),
[data-reveal-child][data-reveal-delay="160"] { transition-delay: 0.26s; }
[data-reveal-child]:nth-child(4),
[data-reveal-child][data-reveal-delay="240"] { transition-delay: 0.37s; }
[data-reveal-child]:nth-child(5)             { transition-delay: 0.48s; }

/* ---------- Typography ---------- */
.flipside-hero__hero-heading-top {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.18em;
  font-size: clamp(3.5rem, 5.6vw, 5.6rem);
  line-height: 0.88;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
}

.flipside-hero__hero-heading-bottom {
  margin-top: -0.8em;
}

/* ---------- Highlight badge: wobble + shimmer ---------- */
.flipside-highlight {
  display: inline-block;
  background: #111;
  color: #fff;
  border: 3px solid #ee86b4;
  padding: 0.15em 0.35em;
  transform: rotate(-2.5deg);
  line-height: 0.9;
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0em;
  box-shadow: 8px 8px 0 #000;
  position: relative;
  overflow: hidden;
  animation: highlightWobble 6s ease-in-out infinite;
}

.flipside-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: highlightShimmer 4s ease-in-out infinite;
}

@keyframes highlightWobble {
  0%, 100% { transform: rotate(-2.5deg) scale(1); }
  25%       { transform: rotate(-3.2deg) scale(1.015); }
  75%       { transform: rotate(-1.8deg) scale(0.99); }
}

@keyframes highlightShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.flipside-highlight--welcome {
  font-size: inherit;
  padding: 0.08em 0.22em;
  position: relative;
  top: -0.03em;
}

/* ---------- Body copy ---------- */
.flipside-hero__hero-body,
.flipside-hero__welcome-body {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1f1f1f;
}

.flipside-hero__hero-body p,
.flipside-hero__welcome-body p {
  margin: 0;
}



/* ---------- CTA Button ---------- */
.btn-flipside {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.9rem 2rem;
  background: #fff;
  color: #111;
  border: 3px solid #000;
  border-radius: 22px 0 22px 0;
  box-shadow: 6px 6px 0 #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transform-style: flat;
  position: relative;
  z-index: 10;
}

.btn-flipside:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 #000;
}

.btn-flipside:active {
  transform: translate(6px, 6px);
  box-shadow: none;
}

/* ============================================================
   CAN ENTRANCE ANIMATIONS
   ============================================================ */
.flipside-hero__can {
  position: absolute;
  width: 30%;
  height: auto;
  /* Cans are visible by default â€” JS entrance is progressive enhancement */
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
}

/* JS adds --animate class via data-delay; only those start hidden */
.flipside-hero__can--animate {
  opacity: 0;
  transform: translateX(-60px);
}

.flipside-hero__can.is-visible {
  opacity: 1;
}

/* LEFT SIDE â€” fan in from left */
.flipside-hero__can--left-1 { left: 20%; top: 18%; transform: rotate(-25deg) translateX(-60px); z-index: 5;  }
.flipside-hero__can--left-2 { left: 30%; top: 16%; transform: rotate(-18deg) translateX(-50px); z-index: 10; }
.flipside-hero__can--left-3 { left: 40%; top: 14%; transform: rotate(-10deg) translateX(-40px); z-index: 15; }
.flipside-hero__can--left-4 { left: 50%; top: 12%; transform: rotate(-5deg)  translateX(-30px); z-index: 20; }

.flipside-hero__can--left-1.is-visible { transform: rotate(-25deg) translateX(0); }
.flipside-hero__can--left-2.is-visible { transform: rotate(-18deg) translateX(0); }
.flipside-hero__can--left-3.is-visible { transform: rotate(-10deg) translateX(0); }
.flipside-hero__can--left-4.is-visible { transform: rotate(-5deg)  translateX(0); }

/* RIGHT SIDE â€” fan in from right */
.flipside-hero__can--right-1 { right: 20%; top: 18%; transform: rotate(25deg) translateX(60px); z-index: 5;  }
.flipside-hero__can--right-2 { right: 30%; top: 16%; transform: rotate(18deg) translateX(50px); z-index: 10; }
.flipside-hero__can--right-3 { right: 40%; top: 14%; transform: rotate(10deg) translateX(40px); z-index: 15; }
.flipside-hero__can--right-4 { right: 50%; top: 12%; transform: rotate(5deg)  translateX(30px); z-index: 20; }

.flipside-hero__can--right-1.is-visible { transform: rotate(25deg) translateX(0); }
.flipside-hero__can--right-2.is-visible { transform: rotate(18deg) translateX(0); }
.flipside-hero__can--right-3.is-visible { transform: rotate(10deg) translateX(0); }
.flipside-hero__can--right-4.is-visible { transform: rotate(5deg)  translateX(0); }

/* Drop shadows */
.flipside-hero__hero-cans--left .flipside-hero__can {
  filter: drop-shadow(-20px 40px 50px rgba(0, 0, 0, 0.35));
}

.flipside-hero__hero-cans--right .flipside-hero__can {
  filter: drop-shadow(20px 40px 50px rgba(0, 0, 0, 0.35));
}

/* NOTE: canGroupFloat CSS animation removed â€” the JS RAF loop drives
   translateZ + mouse parallax on these groups. A CSS animation on the
   same element would fight the JS transform and cause jitter. */

/* ============================================================
   3D PERFORMANCE HINTS
   All zones that receive JS 3D transforms get will-change and
   backface-visibility so the browser promotes them to their
   own compositing layer.
   ============================================================ */
.flipside-hero__zone--hero,
.flipside-hero__zone--welcome,
.flipside-hero__zone--flavours,
.flipside-hero__zone--marquee,
.flipside-hero__hero-cans--left,
.flipside-hero__hero-cans--right,
.flipside-hero__flavours-cans {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Welcome and flavours: JS drives opacity via scroll progress once
   .is-revealed is added. We do NOT start at opacity:0 in CSS â€” that
   causes a flash-of-invisible if JS is slow or the IntersectionObserver
   threshold isn't met. Instead we use a pre-reveal class added by JS. */
.flipside-hero__zone--welcome.pre-reveal,
.flipside-hero__zone--flavours.pre-reveal {
  opacity: 0;
}

/* Once JS has revealed them, opacity is fully JS-driven */
.flipside-hero__zone--welcome.is-revealed,
.flipside-hero__zone--flavours.is-revealed {
  /* opacity driven by JS in RAF loop */
}

/* ============================================================
   WELCOME ZONE
   ============================================================ */
.flipside-hero__zone--welcome {
  padding: 100px 0 100px;
  text-align: center;
}

.flipside-hero__welcome-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
}

.flipside-hero__welcome-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.18em;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0em;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
}

/* ============================================================
   FLAVOURS ZONE
   ============================================================ */
.flipside-hero__zone--flavours {
  padding: 60px 0 260px;
  position: relative;
}

.flipside-hero__flavours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.flipside-hero__flavours-cans {
  position: relative;
  min-height: 520px;
}

.flipside-hero__flavours-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flipside-hero__flavours-heading-top,
.flipside-hero__flavours-heading-bottom {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #111;
}

.flipside-hero__flavours-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.75rem 0;
}

/* ---------- Flavour labels: slide + hover lift ---------- */
.flipside-hero__flavour-label {
  display: inline-block;
  padding: 0.08em 0.28em;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  border: 2px solid #bceff9;
  color: #fff;
  cursor: default;
  transition: transform 0.1s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s ease,
              filter 0.2s ease;
}

.flipside-hero__flavour-label:hover {
  transform: rotate(4deg) scale(1.06) !important;
  box-shadow: 6px 6px 0 #000;
  filter: brightness(1.12);
  z-index: 99;
  position: relative;
}

.flipside-hero__flavour-label + .flipside-hero__flavour-label {
  margin-top: -0.18em;
}

.flipside-hero__flavour-label--1 {
  background: #ff88b9;
  transform: rotate(-3deg) !important;
}
.flipside-hero__flavour-label--2 {
  background: #a76de6;
  transform: rotate(2.5deg) !important;
}
.flipside-hero__flavour-label--3 {
  background: #d5497e;
  transform: rotate(-2.5deg) !important;
}
.flipside-hero__flavour-label--4 {
  background: #8ec13a;
  color: #111;
  transform: rotate(3.5deg) !important;
}

/* ---------- Flavour can positions â€” JS drives all transforms ---------- */
/* Bobbing animation removed. Scroll-driven rotation + parallax lift
   is handled entirely in JS (see section 4b in flipside-hero.js).     */
.flipside-hero__flavour-can {
  position: absolute;
  height: auto;
  will-change: transform;
}

.flipside-hero__flavour-can--1 {
  width: 120px;
  left: -2%;
  top: 6%;
  filter: blur(6px);
  opacity: 0.55;
  z-index: 8;
}

.flipside-hero__flavour-can--2 {
  width: 210px;
  left: 58%;
  top: -2%;
  filter: none;
  z-index: 30;
}

.flipside-hero__flavour-can--3 {
  width: 120px;
  left: 42%;
  top: 30%;
  filter: blur(4px);
  opacity: 0.82;
  z-index: 14;
}

.flipside-hero__flavour-can--4 {
  width: 180px;
  left: 23%;
  top: 40%;
  filter: blur(1px);
  z-index: 22;
}

.flipside-hero__flavour-can--5 {
  width: 160px;
  left: 32%;
  top: 74%;
  filter: blur(7px);
  opacity: 0.68;
  z-index: 10;
}


/* ============================================================
   MARQUEE ZONE
   ============================================================ */
.flipside-hero__zone--marquee {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

/* Pulsing glow behind marquee */
.flipside-hero__zone--marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(238, 134, 180, 0.12);
  animation: marqueeGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes marqueeGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.flipside-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.flipside-marquee__track {
  display: flex;
  width: max-content;
  animation: flipsideMarquee 22s linear infinite;
}

.flipside-marquee__track:hover {
  animation-play-state: paused;
}

.flipside-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flipside-marquee__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-right: 2.5rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.flipside-marquee__item:hover {
  color: #111;
  text-shadow: 3px 3px 0 #ee86b4;
  cursor: default;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (min-width: 990px) {
  .flipside-hero__hero-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .flipside-hero__flavours-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flipside-hero__hero-cans {
    min-height: 560px;
  }
}

/* ============================================================
   RESPONSIVE â€” tablet (max 989px)
   ============================================================ */
@media screen and (max-width: 989px) {

  /* Hero zone */
  .flipside-hero__zone--hero {
    padding: 60px 0 48px;
  }

  /* Stack: cans left / content / cans right â†’ content on top, cans row below */
  .flipside-hero__hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  /* Hide side can groups on tablet â€” content is the hero */
  .flipside-hero__hero-cans--left,
  .flipside-hero__hero-cans--right {
    display: none;
  }

  .flipside-hero__hero-content {
    padding: 0 20px;
  }

  /* Welcome zone */
  .flipside-hero__zone--welcome {
    padding: 48px 20px 56px;
  }

  .flipside-hero__welcome-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  /* Flavours zone */
  .flipside-hero__zone--flavours {
    padding: 80px 0 80px;
  }

  .flipside-hero__flavours-grid {
    grid-template-columns: 1fr;
  }

  /* Cans stacked above content on tablet */
  .flipside-hero__flavours-cans {
    min-height: 280px;
    order: -1;
  }

  .flipside-hero__flavours-content {
    padding: 50 20px;
  }

  .flipside-hero__flavour-can--1 { width: 90px; }
  .flipside-hero__flavour-can--2 { width: 130px; }
  .flipside-hero__flavour-can--3 { width: 80px; }
  .flipside-hero__flavour-can--4 { width: 140px; }
  .flipside-hero__flavour-can--5 { width: 95px; }

  /* Body copy + button */
  .flipside-hero__hero-body,
  .flipside-hero__welcome-body {
    font-size: 0.8rem;
  }

  .btn-flipside {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }

  /* Marquee */
  .flipside-hero__zone--marquee { padding: 20px 0; }

  .flipside-marquee__item {
    font-size: clamp(1.2rem, 5vw, 2rem);
    margin-right: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE â€” mobile (max 749px)
   ============================================================ */
@media screen and (max-width: 749px) {

  /* Hero zone */
  .flipside-hero__zone--hero {
    padding: 150px 0 36px;
  }

  .flipside-hero__hero-content {
    padding: 0px 20px;
  }

  /* On mobile show a single row of cans BELOW the content */
  .flipside-hero__hero-cans--left,
  .flipside-hero__hero-cans--right {
  display: block;
  min-height: 140px;
  width: 100%;
  position: relative;
}

  /* Lay out: content full-width top, then cans side by side below */
  .flipside-hero__hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .flipside-hero__hero-content {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .flipside-hero__hero-cans--left  {
    grid-column: 1;
    grid-row: 2;
  }

  .flipside-hero__hero-cans--right {
    grid-column: 2;
    grid-row: 2;
  }

  /* Shrink cans so they fit in half-width columns */
  .flipside-hero__can { width: 55%; }

  /* Tighten can fan positions for smaller container */
  .flipside-hero__can--left-1  { left: 10%; top: 15%; transform: rotate(-25deg) translateX(-60px); }
  .flipside-hero__can--left-2  { left: 24%; top: 10%; transform: rotate(-15deg) translateX(-50px); }
  .flipside-hero__can--left-3  { left: 40%; top:  5%; transform: rotate(-7deg)  translateX(-40px); }
  .flipside-hero__can--left-4  { left: 52%; top:  2%; transform: rotate(-3deg)  translateX(-30px); }

  .flipside-hero__can--left-1.is-visible  { transform: rotate(-25deg) translateX(0); }
  .flipside-hero__can--left-2.is-visible  { transform: rotate(-15deg) translateX(0); }
  .flipside-hero__can--left-3.is-visible  { transform: rotate(-7deg)  translateX(0); }
  .flipside-hero__can--left-4.is-visible  { transform: rotate(-3deg)  translateX(0); }

  .flipside-hero__can--right-1 { right: 10%; top: 15%; transform: rotate(25deg) translateX(60px); }
  .flipside-hero__can--right-2 { right: 24%; top: 10%; transform: rotate(15deg) translateX(50px); }
  .flipside-hero__can--right-3 { right: 40%; top:  5%; transform: rotate(7deg)  translateX(40px); }
  .flipside-hero__can--right-4 { right: 52%; top:  2%; transform: rotate(3deg)  translateX(30px); }

  .flipside-hero__can--right-1.is-visible { transform: rotate(25deg) translateX(0); }
  .flipside-hero__can--right-2.is-visible { transform: rotate(15deg) translateX(0); }
  .flipside-hero__can--right-3.is-visible { transform: rotate(7deg)  translateX(0); }
  .flipside-hero__can--right-4.is-visible { transform: rotate(3deg)  translateX(0); }

  /* Welcome zone */
  .flipside-hero__zone--welcome {
    padding: 175px 20px 75px;
  }

  /* Flavours zone â€” tighter on mobile */
  .flipside-hero__zone--flavours {
    padding: 32px 0 40px;
  }

  .flipside-hero__flavours-cans {
    min-height: 220px;
  }

  .flipside-hero__flavours-content {
    padding: 70px 16px;
    z-index: 99;
  }

  .flipside-hero__flavour-can--1 { width: 70px;  }
  .flipside-hero__flavour-can--2 { width: 100px; }
  .flipside-hero__flavour-can--3 { width: 65px;  }
  .flipside-hero__flavour-can--4 { width: 105px; }
  .flipside-hero__flavour-can--5 { width: 75px;  }

  /* Stack flavour labels tighter */
  .flipside-hero__flavour-label {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .flipside-hero__flavours-heading-top,
  .flipside-hero__flavours-heading-bottom {
    font-size: clamp(2rem, 9vw, 4rem);
  }

  /* Body + button */
  .flipside-hero__hero-body,
  .flipside-hero__welcome-body {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .btn-flipside {
    font-size: 0.8rem;
    padding: 0.7rem 1.3rem;
    margin-top: 1.2rem;
  }

  /* Marquee */
  .flipside-hero__zone--marquee { padding: 5px 0; }

  .flipside-marquee__item {
    font-size: clamp(1rem, 6vw, 1.6rem);
    margin-right: 1.2rem;
  }

  /* Reduce particles on mobile for perf */
  .flipside-hero__particle:nth-child(n+10) {
    display: none;
  }
}

.flipside-hero__hero-cans--left .flipside-hero__can {
  filter: drop-shadow(-8px 12px 16px rgba(0, 0, 0, 0.18));
}

.flipside-hero__hero-cans--right .flipside-hero__can {
  filter: drop-shadow(8px 12px 16px rgba(0, 0, 0, 0.18));
}


/* ============================================================
   REDUCED MOTION â€” honour user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .flipside-hero__particle,
  .flipside-hero__hero-cans--left,
  .flipside-hero__hero-cans--right,
  .flipside-highlight,
  .flipside-highlight::after,
  .btn-flipside,
  .flipside-marquee__track,
  .flipside-hero__zone--marquee::before {
    animation: none !important;
  }

  [data-reveal] [data-reveal-child],
  [data-scroll-reveal] [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Reset all 3D scroll effects */
  .flipside-hero__zone--hero,
  .flipside-hero__zone--welcome,
  .flipside-hero__zone--flavours,
  .flipside-hero__zone--marquee,
  .flipside-hero__hero-cans--left,
  .flipside-hero__hero-cans--right,
  .flipside-hero__flavours-cans {
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}

.flipside-hero__welcome-title,
.flipside-hero__flavours-heading-top,
.flipside-hero__flavours-heading-bottom {
  font-family: {{font-stack-body}};
}