:root {
  --green: #0f7f43;
  --green-dark: #0c3d28;
  --lime: #a8d73b;
  --yellow: #ffd64f;
  --orange: #ff8a2b;
  --red: #f1464f;
  --cream: #fff8e7;
  --mint: #e8f7ea;
  --ink: #173226;
  --muted: #667a70;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(23, 50, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 214, 79, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(168, 215, 59, 0.24), transparent 22rem),
    #fffdf5;
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-pad {
  padding: 96px clamp(20px, 5vw, 72px);
}

.site-header {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-height: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 127, 67, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(23, 50, 38, 0.12);
  transform: none;
  transition: width 360ms cubic-bezier(0.18, 0.86, 0.2, 1), min-height 320ms ease, background 220ms ease, box-shadow 220ms ease, top 220ms ease, right 360ms cubic-bezier(0.18, 0.86, 0.2, 1), padding 320ms ease, transform 360ms cubic-bezier(0.18, 0.86, 0.2, 1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 48px rgba(23, 50, 38, 0.18);
}

.site-header.is-open {
  right: 50%;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  width: min(820px, calc(100vw - 32px));
  min-height: 76px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  transform: translateX(50%);
}

.brand {
  border: 0;
  background: transparent;
  padding: 0;
}

.brand img {
  width: 154px;
  height: auto;
}

.brand-collapser {
  display: grid;
  place-items: center;
  width: 120px;
  height: 56px;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(15, 127, 67, 0.1);
  transition: transform 220ms ease;
}

.brand-collapser img {
  width: 104px;
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(23, 50, 38, 0.12));
}

.brand-collapser:hover {
  transform: scale(1.04);
}

.brand-home,
.site-nav {
  display: none;
}

.site-header.is-open .brand-collapser {
  display: none;
}

.site-header.is-open .brand-home {
  display: block;
  cursor: pointer;
}

.site-nav {
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 280ms ease 90ms, transform 320ms cubic-bezier(0.18, 0.86, 0.2, 1) 70ms;
}

.site-header.is-open .site-nav {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.site-nav a {
  border-radius: 999px;
  padding: 12px 16px;
  color: #365549;
  font-size: 0.92rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-nav .header-cta {
  width: auto;
  margin-top: 0;
  background: rgba(15, 127, 67, 0.08);
  color: var(--green-dark);
  box-shadow: none;
}

.header-cta,
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(15, 127, 67, 0.24);
}

.btn-primary:hover,
.header-cta:hover {
  background: #0b6937;
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15, 127, 67, 0.3);
}

.site-header .site-nav .header-cta {
  background: rgba(15, 127, 67, 0.08);
  color: var(--green-dark);
  box-shadow: none;
}

.site-nav .header-cta:hover {
  background: var(--mint);
  color: var(--green-dark);
  box-shadow: none;
  transform: none;
}

.btn-ghost {
  border: 2px solid rgba(15, 127, 67, 0.18);
  background: var(--white);
  color: var(--green-dark);
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  padding-top: 150px;
  background:
    linear-gradient(112deg, rgba(255, 248, 231, 0.95) 0%, rgba(255, 253, 245, 0.92) 45%, rgba(232, 247, 234, 0.82) 100%),
    url("assets/YESS_Drink_1700x900_new.jpg") center/cover;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -15vw;
  bottom: -22vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: rgba(255, 138, 43, 0.12);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

h2 {
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 5.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 580px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
}

.paint-splash {
  position: absolute;
  inset: 12% 4% 5% 2%;
  border-radius: 43% 57% 48% 52% / 54% 40% 60% 46%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.72) 0 11%, transparent 12%),
    radial-gradient(circle at 74% 24%, rgba(255, 138, 43, 0.34) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--yellow), #f9ee7a 42%, var(--lime));
  box-shadow: var(--shadow);
  transform: rotate(-7deg) translateZ(-30px);
  animation: blob 9s ease-in-out infinite;
}

.stage-ring {
  position: absolute;
  right: 8%;
  bottom: 11%;
  width: 78%;
  height: 24%;
  border: 2px solid rgba(12, 61, 40, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.14);
  transform: rotateX(72deg);
}

.hero-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(23, 50, 38, 0.24));
  transform-style: preserve-3d;
}

.hero-product-water {
  left: 30%;
  bottom: 9%;
  z-index: 4;
  width: min(35vw, 360px);
  animation: floatMain 5.5s ease-in-out infinite;
}

.hero-product-mango {
  left: 6%;
  bottom: 18%;
  z-index: 3;
  width: min(25vw, 260px);
  transform: rotate(-10deg);
  animation: floatLeft 6.5s ease-in-out infinite;
}

.hero-product-energy {
  right: 2%;
  bottom: 19%;
  z-index: 2;
  width: min(26vw, 270px);
  transform: rotate(9deg);
  animation: floatRight 6s ease-in-out infinite;
}

.fresh-badge {
  position: absolute;
  right: 6%;
  top: 18%;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 42px rgba(241, 70, 79, 0.28);
  transform: rotate(10deg);
}

.fresh-badge span {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.fresh-badge small {
  display: block;
  max-width: 70px;
  font-weight: 900;
  line-height: 1.05;
}

.produce {
  position: absolute;
  pointer-events: none;
}

.produce-lemon {
  left: 7vw;
  top: 132px;
  width: 70px;
  height: 70px;
  border: 8px solid #fff2ae;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--yellow) 0 48%, #fff7c9 49% 58%, transparent 59%);
  opacity: 0.9;
}

.produce-kiwi {
  right: 9vw;
  top: 116px;
  width: 86px;
  height: 86px;
  border: 10px solid #b76b35;
  border-radius: 50%;
  background: radial-gradient(circle, #f8fbdd 0 10%, #9ad54b 11% 54%, #6faa33 55% 100%);
  opacity: 0.9;
}

.produce-leaf {
  width: 72px;
  height: 42px;
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #4aa345, #176e36);
}

.produce-leaf-a {
  left: 46%;
  top: 136px;
  transform: rotate(28deg);
}

.produce-leaf-b {
  right: 38%;
  bottom: 52px;
  transform: rotate(-142deg);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b2d1d;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
  padding: 138px clamp(20px, 5vw, 72px) 92px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  overflow: hidden;
  transition: opacity 800ms ease, transform 1000ms ease, visibility 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8000ms ease;
}

.hero-slide.is-active .hero-banner {
  transform: scale(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.98) 0%, rgba(255, 253, 245, 0.9) 42%, rgba(255, 253, 245, 0.22) 70%, rgba(12, 61, 40, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 253, 245, 0.12), rgba(12, 61, 40, 0.18));
  backdrop-filter: blur(1.5px) saturate(0.95);
}

.hero-slide[data-theme="water"] .hero-scrim,
.hero-slide[data-theme="gofresh-water"] .hero-scrim {
  background:
    linear-gradient(90deg, rgba(229, 249, 255, 0.98) 0%, rgba(229, 249, 255, 0.9) 42%, rgba(229, 249, 255, 0.22) 70%, rgba(4, 35, 68, 0.3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(4, 35, 68, 0.16));
}

.hero-slide[data-theme="fruta"] .hero-scrim,
.hero-slide[data-theme="ready"] .hero-scrim {
  background:
    linear-gradient(90deg, rgba(255, 249, 234, 0.99) 0%, rgba(255, 249, 234, 0.92) 42%, rgba(255, 249, 234, 0.18) 70%, rgba(15, 127, 67, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(12, 61, 40, 0.16));
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.hero-content .eyebrow {
  color: var(--green);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
  color: #082f22;
  text-shadow: 0 8px 34px rgba(255, 255, 255, 0.74);
}

.hero-content .hero-text {
  max-width: 540px;
  color: #2d5244;
  font-weight: 800;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.82);
}

.hero-slide[data-theme="water"] .hero-content h1,
.hero-slide[data-theme="gofresh-water"] .hero-content h1 {
  color: #073c5a;
}

.elevation-stage {
  position: relative;
  z-index: 3;
  min-height: min(64vh, 620px);
  overflow: visible;
  min-width: 0;
  pointer-events: none;
  perspective: 1200px;
  transform: translateX(-3vw);
}

.halo {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.82;
  transform: translate(-50%, -50%) rotateX(64deg);
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, 0.18),
    0 38px 80px rgba(23, 50, 38, 0.18);
}

.halo-blue {
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9), rgba(112, 203, 255, 0.62) 38%, rgba(24, 133, 207, 0.18) 68%, transparent 70%);
}

.halo-green {
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.85), rgba(160, 226, 83, 0.68) 42%, rgba(31, 122, 70, 0.2) 70%, transparent 72%);
}

.halo-orange {
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.88), rgba(255, 168, 65, 0.65) 40%, rgba(241, 70, 79, 0.16) 70%, transparent 72%);
}

.halo-lime {
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.88), rgba(168, 215, 59, 0.7) 42%, rgba(15, 127, 67, 0.17) 70%, transparent 72%);
}

.halo-yellow {
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9), rgba(255, 214, 79, 0.72) 42%, rgba(255, 138, 43, 0.22) 70%, transparent 72%);
}

.water-ripple {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: min(32vw, 390px);
  height: min(8vw, 92px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9), rgba(66, 181, 255, 0.36) 42%, transparent 72%);
  filter: blur(2px);
  transform: translateX(-50%);
}

.elevated-product {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 5%;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  filter:
    drop-shadow(0 34px 28px rgba(5, 32, 42, 0.34))
    drop-shadow(0 70px 54px rgba(5, 32, 42, 0.2));
  transform-style: preserve-3d;
  will-change: translate, rotate, scale, opacity;
}

.hero-slide.is-active[data-theme="water"] .elevated-product {
  animation: heroWaterDropRoll 1700ms cubic-bezier(0.16, 0.84, 0.22, 1) both;
}

.hero-slide.is-active[data-theme="gofresh-water"] .elevated-product {
  animation: heroForestSweep 1600ms cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

.hero-slide.is-active[data-theme="fruta"] .elevated-product {
  animation: heroFruitCascade 1450ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

.hero-slide.is-active[data-theme="ready"] .elevated-product {
  animation: heroShelfSlide 1500ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

.hero-slide.is-active[data-theme="original"] .elevated-product {
  animation: heroOriginalBounce 1500ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

.hero-slide.is-active .elevated-fruta-a,
.hero-slide.is-active .elevated-ready-a,
.hero-slide.is-active .elevated-original-a {
  animation-delay: 70ms;
}

.hero-slide.is-active .elevated-fruta-b,
.hero-slide.is-active .elevated-ready-b,
.hero-slide.is-active .elevated-original-b {
  animation-delay: 180ms;
}

.hero-slide.is-active .elevated-fruta-c,
.hero-slide.is-active .elevated-ready-c,
.hero-slide.is-active .elevated-original-c {
  animation-delay: 290ms;
}

.hero-slide.is-active .elevated-fruta-d,
.hero-slide.is-active .elevated-ready-d,
.hero-slide.is-active .elevated-original-d {
  animation-delay: 400ms;
}

.elevated-water {
  width: min(26vw, 350px);
  max-height: 74vh;
  transform: translateX(-20%) rotateY(-8deg) rotateZ(0deg);
}

.elevated-gofresh-water {
  width: min(29vw, 370px);
  max-height: 74vh;
  transform: translateX(-24%) rotateY(-8deg) rotateZ(2deg);
}

.elevation-group .halo {
  top: 56%;
  width: min(58vw, 760px);
  height: min(33vw, 440px);
  border-radius: 42% 58% 48% 52% / 56% 45% 55% 44%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.elevated-fruta-a,
.elevated-fruta-b,
.elevated-fruta-c,
.elevated-fruta-d,
.elevated-ready-a,
.elevated-ready-b,
.elevated-ready-c,
.elevated-ready-d,
.elevated-original-a,
.elevated-original-b,
.elevated-original-c,
.elevated-original-d {
  width: min(18vw, 260px);
  max-height: 62vh;
}

.elevated-fruta-a,
.elevated-ready-a,
.elevated-original-a {
  left: 10%;
  bottom: 7%;
  z-index: 7;
  transform: translateX(-50%) rotate(-8deg);
}

.elevated-fruta-b,
.elevated-ready-b,
.elevated-original-b {
  left: 36%;
  bottom: 11%;
  z-index: 8;
  width: min(19vw, 278px);
  transform: translateX(-50%) rotate(1deg);
}

.elevated-fruta-c,
.elevated-ready-c,
.elevated-original-c {
  left: 62%;
  bottom: 9%;
  z-index: 7;
  transform: translateX(-50%) rotate(5deg);
}

.elevated-fruta-d,
.elevated-ready-d,
.elevated-original-d {
  left: 88%;
  bottom: 8%;
  z-index: 6;
  transform: translateX(-50%) rotate(11deg);
}

.elevated-fruta-b,
.elevated-ready-b {
  left: 34%;
}

.elevated-fruta-c,
.elevated-ready-c {
  left: 63%;
}

.elevated-fruta-a,
.elevated-ready-a {
  left: 9%;
}

.elevated-fruta-d,
.elevated-ready-d {
  left: 89%;
}

.hero-controls {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 28px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 8px;
  box-shadow: 0 18px 48px rgba(23, 50, 38, 0.14);
  transform: none;
  backdrop-filter: blur(16px);
}

.hero-arrow,
.hero-dot {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--white);
  font-size: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 14px;
  background: url("assets/acacia_leaf_white.png") center center / contain no-repeat;
  transform-origin: center;
}

.hero-arrow:hover {
  transform: translateY(-2px);
}

.logo-roller {
  position: relative;
  z-index: 4;
  padding: 22px 0 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 10% 50%, rgba(255, 214, 79, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 50%, rgba(168, 215, 59, 0.2), transparent 22rem);
  box-shadow:
    inset 0 1px 0 rgba(15, 127, 67, 0.1),
    inset 0 -1px 0 rgba(15, 127, 67, 0.08);
}

.logo-roller::before,
.logo-roller::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: min(18vw, 220px);
  height: 100%;
  pointer-events: none;
}

.logo-roller::before {
  left: 0;
  background: linear-gradient(90deg, #fffdf5 0%, rgba(255, 253, 245, 0) 100%);
}

.logo-roller::after {
  right: 0;
  background: linear-gradient(270deg, #fffdf5 0%, rgba(255, 253, 245, 0) 100%);
}

.logo-roller-shell {
  width: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: logoRollerArrival 980ms cubic-bezier(0.18, 0.92, 0.22, 1) both;
}

.logo-roller-track {
  display: flex;
  width: max-content;
  gap: 0;
  transform-style: preserve-3d;
  animation: logoSlowScroll 34s linear 1s infinite;
  will-change: transform;
}

.logo-roller-set {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-inline: 11px;
}

.logo-roller figure {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(150px, 13vw, 230px);
  height: 92px;
  margin: 0;
  border: 1px solid rgba(15, 127, 67, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 54px rgba(23, 50, 38, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transform: rotateY(-9deg) translateZ(0);
  transform-style: preserve-3d;
  overflow: hidden;
}

.logo-roller figure::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(168, 215, 59, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(255, 214, 79, 0.12), rgba(232, 247, 234, 0.36));
  transform: translateZ(-1px);
}

.logo-roller img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 66px;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 14px rgba(23, 50, 38, 0.15))
    saturate(1.05);
  transform: translateZ(34px);
}

.brand-leaf-motion {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(120px, 16vw, 270px);
  aspect-ratio: 2.12;
  background: linear-gradient(135deg, rgba(15, 143, 72, 0.34), rgba(167, 211, 30, 0.18));
  filter: drop-shadow(0 24px 42px rgba(23, 50, 38, 0.14));
  mask: url("assets/acacia_leaf_icon.svg") center / contain no-repeat;
  -webkit-mask: url("assets/acacia_leaf_icon.svg") center / contain no-repeat;
  pointer-events: none;
}

.brand-leaf-motion.leaf-large {
  right: clamp(18px, 7vw, 126px);
  bottom: clamp(70px, 12vh, 145px);
  opacity: 0.46;
  animation: leafGlide 8s ease-in-out infinite;
}

.brand-leaf-motion.leaf-small {
  right: clamp(190px, 31vw, 540px);
  top: clamp(110px, 19vh, 190px);
  width: clamp(70px, 9vw, 150px);
  opacity: 0.28;
  transform: scaleX(-1) rotate(-9deg);
  animation: leafDrift 6.5s ease-in-out infinite;
}

.hero-leaf {
  z-index: -1;
}

.hero-leaf.leaf-large {
  left: clamp(300px, 36vw, 620px);
  right: auto;
  bottom: clamp(96px, 20vh, 210px);
  width: clamp(150px, 17vw, 300px);
  opacity: 0.2;
  rotate: -10deg;
}

.hero-leaf.leaf-small {
  left: clamp(160px, 24vw, 420px);
  right: auto;
  top: clamp(150px, 25vh, 260px);
  width: clamp(76px, 8vw, 135px);
  opacity: 0.16;
  transform: rotate(12deg);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  background: rgba(12, 61, 40, 0.32);
  color: transparent;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--green);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  background: var(--white);
}

.intro-copy p {
  max-width: 690px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(15, 127, 67, 0.11);
  border-radius: 8px;
  background: #fffefa;
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  margin-bottom: 0;
}

.intro-media {
  position: relative;
  min-height: 570px;
}

.intro-media > img:first-of-type {
  position: absolute;
  inset: 6% 0 0 8%;
  width: 86%;
  height: 82%;
  border-radius: 42% 58% 54% 46% / 44% 42% 58% 56%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.media-splash {
  position: absolute;
  inset: 0 14% 11% 0;
  border-radius: 54% 46% 45% 55% / 40% 48% 52% 60%;
  background: linear-gradient(135deg, var(--lime), var(--yellow));
}

.cert {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 116px;
  border-radius: 50%;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 18px 42px rgba(23, 50, 38, 0.16);
}

.featured {
  background: linear-gradient(180deg, #fffdf5, #f4fbf1);
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 700px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  perspective: 1400px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 300px auto auto;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 38, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    var(--white);
  padding: 24px;
  box-shadow: 0 20px 58px rgba(23, 50, 38, 0.08);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 86px;
  width: min(62%, 230px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-8deg);
  opacity: 0.94;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.16),
    0 28px 60px rgba(23, 50, 38, 0.09);
  animation: labelHaloPulse 4.8s ease-in-out infinite;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 276px;
  width: 48%;
  height: 24px;
  border-radius: 50%;
  background: rgba(23, 50, 38, 0.1);
  filter: blur(13px);
  transform: translateX(-50%);
}

.product-card:hover {
  box-shadow: 0 24px 72px rgba(23, 50, 38, 0.18);
  transform: translateY(-10px) rotateX(2deg);
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  object-fit: contain;
  align-self: end;
  margin: 34px auto 16px;
  filter:
    drop-shadow(0 20px 22px rgba(23, 50, 38, 0.15))
    drop-shadow(0 46px 34px rgba(23, 50, 38, 0.08));
  transform: translateZ(44px);
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: translateZ(54px) translateY(-10px) scale(1.035);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.product-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #6d8078;
  font-size: 0.95rem;
  font-weight: 700;
}

.size-badge {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: #f6f8ef;
  padding: 0 15px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(15, 127, 67, 0.04);
  animation: labelPop 880ms cubic-bezier(0.18, 0.9, 0.22, 1.16) both;
}

.card-green::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #bdeeff 35%, #dff8ff 68%);
}

.card-green .size-badge {
  background: #eef9ff;
  color: #075d82;
}

.card-orange::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #ffd1a1 35%, #fff0d6 68%);
}

.card-orange .size-badge {
  background: #fff0df;
  color: #9a4a05;
}

.card-red::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #ffc9ce 35%, #fff0f1 68%);
}

.card-red .size-badge {
  background: #fff0f1;
  color: #9f2430;
}

.card-yellow::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #fff0a6 35%, #fff8d5 68%);
}

.card-yellow .size-badge {
  background: #fff8d8;
  color: #7a6200;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 28px;
  background: var(--green-dark);
}

.story-panel {
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
}

.story-panel-dark {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 214, 79, 0.18), transparent 18rem),
    #102e20;
  color: var(--white);
}

.story-panel-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.story-panel-dark .eyebrow {
  color: var(--yellow);
}

.banner-stack {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 520px;
}

.banner-stack img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 8px;
  object-fit: cover;
}

.banner-stack img:first-child {
  grid-row: 1 / 3;
}

.quality {
  background:
    radial-gradient(circle at 12% 80%, rgba(255, 138, 43, 0.1), transparent 21rem),
    var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quality-grid article {
  min-height: 280px;
  border: 1px solid rgba(23, 50, 38, 0.1);
  border-radius: 8px;
  background: #fffefa;
  padding: 32px;
}

.icon-dot {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 900;
}

.catalog {
  background: #f6fbef;
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.catalog-list article {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(23, 50, 38, 0.1);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 22px 16px 12px;
  box-shadow: 0 14px 40px rgba(23, 50, 38, 0.08);
}

.catalog-list img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 12px;
}

.catalog-list h3,
.catalog-list p {
  margin-bottom: 0;
}

.products-hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  padding: 150px clamp(20px, 5vw, 72px) 84px;
  background: #dff4e5;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.96) 0%, rgba(255, 253, 245, 0.8) 45%, rgba(255, 253, 245, 0.2) 100%),
    linear-gradient(180deg, transparent 30%, rgba(255, 253, 245, 0.96) 100%);
  backdrop-filter: blur(1.2px);
}

.products-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.products-hero-copy h1 {
  margin-bottom: 18px;
  color: #082f22;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.products-hero-copy p {
  max-width: 640px;
  margin-bottom: 24px;
  color: #31594a;
  font-weight: 800;
}

.product-spotlight-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(440px, 57vw, 650px);
  place-items: center;
  perspective: 1000px;
}

.product-spotlight-stage::before {
  content: "";
  position: absolute;
  inset: 9% 4% 3% 16%;
  border-radius: 52% 48% 46% 54% / 40% 55% 45% 60%;
  background:
    radial-gradient(circle at 43% 44%, rgba(255, 255, 255, 0.76), transparent 32%),
    linear-gradient(135deg, rgba(119, 215, 244, 0.42), rgba(255, 218, 89, 0.38));
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.18), 0 38px 94px rgba(23, 50, 38, 0.16);
  transform: rotate(-8deg);
}

.spotlight-ring {
  position: absolute;
  width: min(48vw, 620px);
  aspect-ratio: 1.9;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 127, 67, 0.05);
  transform: rotate(-10deg);
  filter: drop-shadow(0 26px 50px rgba(23, 50, 38, 0.1));
}

.product-spotlight-stage img {
  position: relative;
  z-index: 2;
  width: min(30vw, 430px);
  max-height: 620px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 20px rgba(23, 50, 38, 0.2))
    drop-shadow(0 70px 44px rgba(23, 50, 38, 0.12));
  transform: translateZ(80px) rotate(-2deg);
}

.product-spotlight-stage img.blend-artwork {
  width: min(34vw, 500px);
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(1.06);
}

.products-hero.is-switching .product-spotlight-stage img {
  animation: spotlightBottleIn 780ms cubic-bezier(0.18, 0.9, 0.2, 1.08) both;
}

.products-hero.is-switching .products-hero-copy {
  animation: spotlightTextIn 620ms ease-out both;
}

.product-listing {
  position: relative;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 214, 79, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(93, 190, 236, 0.16), transparent 22rem),
    #fffdf5;
}

.filter-bar {
  position: fixed;
  top: 92px;
  right: 20px;
  z-index: 28;
  display: block;
  width: 330px;
  height: 404px;
  max-height: none;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  pointer-events: none;
}

.filter-bar::before {
  content: "";
  position: absolute;
  right: -182px;
  top: -8px;
  width: 392px;
  height: 392px;
  border-radius: 50%;
  border: 1px solid rgba(15, 127, 67, 0.11);
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.86) 0 18%, transparent 19%),
    conic-gradient(from 142deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 234, 0.58), rgba(255, 255, 255, 0.05), transparent 58%);
  box-shadow: 0 24px 70px rgba(23, 50, 38, 0.09);
  clip-path: inset(0 50% 0 0);
  backdrop-filter: blur(14px);
}

.filter-chip {
  position: absolute;
  right: 12px;
  top: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #365549;
  cursor: pointer;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 35px rgba(23, 50, 38, 0.12);
  pointer-events: auto;
  opacity: 0;
  transform: translate(0, 0) scale(0.82);
  animation: roulettePop 520ms cubic-bezier(0.2, 0.9, 0.22, 1.18) both;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-chip:hover {
  background: var(--mint);
  box-shadow: 0 18px 42px rgba(23, 50, 38, 0.16);
}

.filter-chip.is-active {
  background: var(--green);
  color: var(--white);
}

.filter-chip:nth-child(1) {
  --x: -72px;
  --y: -128px;
  animation-delay: 20ms;
}

.filter-chip:nth-child(2) {
  --x: -132px;
  --y: -82px;
  animation-delay: 70ms;
}

.filter-chip:nth-child(3) {
  --x: -166px;
  --y: -22px;
  animation-delay: 120ms;
}

.filter-chip:nth-child(4) {
  --x: -158px;
  --y: 44px;
  animation-delay: 170ms;
}

.filter-chip:nth-child(5) {
  --x: -116px;
  --y: 100px;
  animation-delay: 220ms;
}

.filter-chip:nth-child(6) {
  --x: -58px;
  --y: 136px;
  animation-delay: 270ms;
}

.filter-chip:nth-child(7) {
  --x: -10px;
  --y: 154px;
  animation-delay: 320ms;
}

.product-count {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin: 0 0 24px max(0px, calc((100% - 1260px) / 2));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0 16px;
  color: var(--green-dark);
  text-align: left;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow:
    0 16px 38px rgba(23, 50, 38, 0.1),
    inset 0 0 0 1px rgba(15, 127, 67, 0.1);
  backdrop-filter: blur(12px);
}

.product-count::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 127, 67, 0.08);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
  padding-right: 280px;
  perspective: 1400px;
}

@keyframes logoRollerArrival {
  0% {
    opacity: 0;
    transform: translateX(-118vw) rotateY(-32deg) rotateZ(-2deg) scale(0.84);
  }
  68% {
    opacity: 1;
    transform: translateX(18px) rotateY(8deg) rotateZ(0.5deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

@keyframes logoSlowScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes roulettePop {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.42);
  }
  100% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1);
  }
}

@keyframes spotlightBottleIn {
  0% {
    opacity: 0;
    transform: translate3d(-42vw, 0, 80px) rotate(-540deg) scale(1);
  }
  68% {
    opacity: 1;
    transform: translate3d(3vw, 0, 80px) rotate(-20deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 80px) rotate(-2deg) scale(1);
  }
}

@keyframes spotlightTextIn {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leafGlide {
  0%,
  100% {
    translate: 0 0;
    rotate: -7deg;
  }
  50% {
    translate: -26px -18px;
    rotate: 4deg;
  }
}

@keyframes leafDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 18px 14px;
  }
}

@keyframes labelPop {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.72);
  }
  70% {
    opacity: 1;
    transform: translateY(2px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes labelHaloPulse {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.035;
  }
}

@keyframes galleryLifestyleDrift {
  0% {
    transform: scale(1.02) translate3d(-8px, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(10px, -8px, 0);
  }
}

.catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: 330px 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 38, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    #fff;
  box-shadow: 0 22px 60px rgba(23, 50, 38, 0.09);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(54px) rotateX(8deg);
  transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.catalog-card.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.catalog-card.is-hidden {
  display: none;
}

.certificate-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  min-height: 520px;
  padding: 34px 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 127, 67, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(232, 247, 234, 0.94), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 245, 0.9));
  box-shadow: 0 22px 60px rgba(23, 50, 38, 0.09);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(54px) rotateX(8deg);
  text-align: center;
  transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.certificate-card.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.certificate-card.is-hidden {
  display: none;
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: rgba(15, 127, 67, 0.08);
  filter: blur(18px);
}

.certificate-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 0 16px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(15, 127, 67, 0.22);
  opacity: 0;
}

.certificate-card a {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(72%, 220px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
  box-shadow:
    0 24px 54px rgba(23, 50, 38, 0.14),
    inset 0 0 0 1px rgba(15, 127, 67, 0.1);
  transform: translate3d(0, -145%, 44px) scale(0.98);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.certificate-card a:hover {
  transform: translateZ(54px) translateY(-10px) scale(1.04);
  box-shadow:
    0 30px 70px rgba(23, 50, 38, 0.18),
    inset 0 0 0 1px rgba(15, 127, 67, 0.14);
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.05;
  opacity: 0;
}

.certificate-card.is-visible .certificate-label,
.certificate-card.is-visible h2 {
  animation: detailsFade 660ms ease-out calc(var(--drop-delay, 0ms) + 220ms) both;
}

.certificate-card.is-visible a {
  animation: bottleDrop 900ms cubic-bezier(0.18, 0.92, 0.24, 1.12) var(--drop-delay, 0ms) both;
}

.certificate-card:hover {
  box-shadow: 0 30px 80px rgba(23, 50, 38, 0.18);
}

.catalog-card::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(62%, 250px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  opacity: 0.92;
  transform: translateX(-50%) rotate(-8deg) translateZ(4px);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.16),
    0 28px 60px rgba(23, 50, 38, 0.1);
  animation: labelHaloPulse 4.8s ease-in-out infinite;
}

.catalog-card::after {
  content: "";
  position: absolute;
  top: 286px;
  left: 50%;
  width: 48%;
  height: 24px;
  border-radius: 50%;
  background: rgba(23, 50, 38, 0.11);
  filter: blur(13px);
  transform: translateX(-50%);
}

.catalog-card:hover {
  box-shadow: 0 30px 80px rgba(23, 50, 38, 0.18);
}

.featured-product {
  grid-column: span 1;
  grid-template-columns: 1fr;
  grid-template-rows: 330px 1fr;
  min-height: 520px;
}

.featured-product::before {
  top: 80px;
  width: min(62%, 250px);
  height: auto;
}

.featured-product::after {
  top: 286px;
  bottom: auto;
  width: 48%;
}

.catalog-image {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 72px 32px 18px;
  overflow: hidden;
}

.catalog-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 245px;
  object-fit: contain;
  filter:
    drop-shadow(0 26px 24px rgba(23, 50, 38, 0.2))
    drop-shadow(0 56px 42px rgba(23, 50, 38, 0.12));
  transform: translate3d(0, -145%, 44px) scale(0.98);
  transition: transform 240ms ease;
}

.catalog-image img.blend-artwork {
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(1.06);
}

.catalog-card.is-visible .catalog-image img {
  animation: bottleDrop 900ms cubic-bezier(0.18, 0.92, 0.24, 1.12) var(--drop-delay, 0ms) both;
}

.catalog-card:hover .catalog-image img {
  transform: translateZ(54px) translateY(-10px) scale(1.04);
}

.featured-product .catalog-image img {
  height: 245px;
}

.catalog-badge {
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 3;
  max-width: min(260px, calc(100% - 36px));
  border-radius: 999px;
  background: rgba(15, 127, 67, 0.08);
  color: var(--green-dark);
  padding: 8px 12px;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.catalog-copy {
  position: static;
  z-index: 2;
  padding: 0 26px 28px;
  opacity: 0;
  transform: none;
}

.catalog-card.is-visible .catalog-copy {
  animation: detailsFade 660ms ease-out calc(var(--drop-delay, 0ms) + 220ms) both;
}

.featured-product .catalog-copy {
  align-self: center;
  padding: 0 26px 28px;
}

.catalog-copy span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 0;
  border-radius: 999px;
  background: rgba(15, 127, 67, 0.07);
  color: var(--green-dark);
  padding: 0 15px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(15, 127, 67, 0.04);
  animation: labelPop 880ms cubic-bezier(0.18, 0.9, 0.22, 1.16) var(--drop-delay, 0ms) both;
}

.catalog-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.28rem, 1.7vw, 1.75rem);
  line-height: 1.05;
}

.catalog-copy p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 84px;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.96rem;
}

.catalog-copy a {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 900;
}

.catalog-copy a::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.catalog-copy a:hover::after {
  transform: translateX(4px);
}

.gallery-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 72vh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 74px;
  background: #102e20;
}

.gallery-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.96), rgba(255, 253, 245, 0.72) 42%, rgba(255, 253, 245, 0.08)),
    linear-gradient(180deg, transparent 25%, rgba(255, 253, 245, 0.95));
  backdrop-filter: blur(1px);
}

.gallery-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.gallery-hero-copy h1 {
  color: #082f22;
}

.gallery-hero-copy p {
  max-width: 620px;
  color: #31594a;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 79, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(93, 190, 236, 0.15), transparent 24rem),
    #fffdf5;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(23, 50, 38, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(23, 50, 38, 0.11);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  box-shadow: 0 30px 80px rgba(23, 50, 38, 0.18);
  transform: translateY(-8px) rotateX(2deg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.gallery-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 18px;
  backdrop-filter: blur(14px);
}

.gallery-card span {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h2 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.gallery-featured {
  grid-column: span 2;
  min-height: 520px;
}

.gallery-featured img {
  min-height: 520px;
}

.gallery-lifestyle {
  isolation: isolate;
}

.gallery-lifestyle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.28), transparent 18rem),
    linear-gradient(180deg, transparent 46%, rgba(12, 61, 40, 0.46));
  pointer-events: none;
}

.gallery-lifestyle img {
  animation: galleryLifestyleDrift 9s ease-in-out infinite alternate;
}

.gallery-lifestyle div {
  z-index: 2;
}

.tone-water::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #bdeeff 35%, #dff8ff 68%);
}

.tone-yellow::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #fff0a6 35%, #fff8d5 68%);
}

.tone-orange::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #ffd1a1 35%, #fff0d6 68%);
}

.tone-red::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #ffc9ce 35%, #fff0f1 68%);
}

.tone-pink::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #ffd0e7 35%, #fff0f7 68%);
}

.tone-green::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #c4f2cb 35%, #ecffef 68%);
}

.tone-blue::before {
  background: radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.78), #cce9ff 35%, #eef8ff 68%);
}

.tone-water .catalog-copy span,
.tone-blue .catalog-copy span {
  background: #eef9ff;
  color: #075d82;
}

.tone-yellow .catalog-copy span {
  background: #fff8d8;
  color: #7a6200;
}

.tone-orange .catalog-copy span {
  background: #fff0df;
  color: #9a4a05;
}

.tone-red .catalog-copy span {
  background: #fff0f1;
  color: #9f2430;
}

.tone-pink .catalog-copy span {
  background: #fff0f7;
  color: #9d2769;
}

.tone-green .catalog-copy span {
  background: #effbec;
  color: #176e36;
}

.contact {
  background:
    linear-gradient(rgba(15, 61, 40, 0.84), rgba(15, 61, 40, 0.88)),
    url("assets/YESS_GoFresh_1700x900.png") center/cover;
}

.answer-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 214, 79, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(15, 127, 67, 0.12), transparent 24rem),
    #fffdf5;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.answer-grid article {
  border: 1px solid rgba(15, 127, 67, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(23, 50, 38, 0.08);
}

.answer-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.answer-grid p {
  margin: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 50, 38, 0.16);
  border-radius: 8px;
  background: var(--white);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 127, 67, 0.12);
}

textarea {
  resize: vertical;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 20px;
  background: #0a2619;
  color: var(--white);
  text-align: center;
}

.footer-logo {
  width: 190px;
  max-width: calc(100vw - 48px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 13px 20px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(15, 127, 67, 0.12);
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.copyright {
  font-size: 0.9rem;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 43% 57% 48% 52% / 54% 40% 60% 46%;
    transform: rotate(-7deg) scale(1);
  }
  50% {
    border-radius: 53% 47% 57% 43% / 44% 54% 46% 56%;
    transform: rotate(-3deg) scale(1.02);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes floatLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(15px) rotate(-14deg);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(0) rotate(9deg);
  }
  50% {
    transform: translateY(-14px) rotate(13deg);
  }
}

@keyframes heroWaterDropRoll {
  0% {
    opacity: 0;
    translate: -96vw 0;
    rotate: -720deg;
    scale: 1;
  }
  58% {
    opacity: 1;
    translate: -24vw 0;
    rotate: -220deg;
    scale: 1;
  }
  82% {
    translate: 2vw 0;
    rotate: -18deg;
    scale: 1;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes heroForestSweep {
  0% {
    opacity: 0;
    translate: 32vw -100vh;
    rotate: 38deg;
    scale: 0.9;
  }
  45% {
    opacity: 1;
    translate: 8vw 18px;
    rotate: -20deg;
    scale: 1.05;
  }
  72% {
    translate: -2vw -9px;
    rotate: 8deg;
    scale: 1.02;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes heroFruitCascade {
  0% {
    opacity: 0;
    translate: 0 -112vh;
    rotate: -10deg;
    scale: 0.9;
  }
  54% {
    opacity: 1;
    translate: 0 20px;
    rotate: 6deg;
    scale: 1.04;
  }
  78% {
    translate: 0 -8px;
    rotate: -2deg;
    scale: 1.01;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes heroShelfSlide {
  0% {
    opacity: 0;
    translate: -20vw -90vh;
    rotate: -22deg;
    scale: 0.92;
  }
  48% {
    opacity: 1;
    translate: -8vw 16px;
    rotate: 11deg;
    scale: 1.04;
  }
  76% {
    translate: 3vw -6px;
    rotate: -5deg;
    scale: 1.01;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes heroOriginalBounce {
  0% {
    opacity: 0;
    translate: 0 -124vh;
    rotate: 16deg;
    scale: 0.88;
  }
  46% {
    opacity: 1;
    translate: 0 26px;
    rotate: -9deg;
    scale: 1.07;
  }
  68% {
    translate: 0 -16px;
    rotate: 4deg;
    scale: 1.02;
  }
  84% {
    translate: 0 7px;
    rotate: -2deg;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes bottleDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -145%, 44px) scale(0.96);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, 12px, 54px) scale(1.04);
  }
  78% {
    transform: translate3d(0, -8px, 54px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 54px) scale(1);
  }
}

@keyframes detailsRise {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes detailsFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .elevated-product,
  .brand-leaf-motion,
  .gallery-lifestyle img,
  .logo-roller-shell,
  .logo-roller-track,
  .products-hero.is-switching .product-spotlight-stage img,
  .products-hero.is-switching .products-hero-copy,
  .catalog-card.is-visible .catalog-image img,
  .catalog-card.is-visible .catalog-copy {
    animation: none;
  }

  .elevated-product,
  .catalog-card.is-visible,
  .catalog-card.is-visible .catalog-copy {
    opacity: 1;
  }

  .logo-roller-track {
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header.is-open {
    width: min(720px, calc(100vw - 32px));
  }

  .site-header.is-open .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 10px 11px;
    font-size: 0.86rem;
  }

  .hero,
  .hero-slide,
  .intro,
  .story-split,
  .contact-card,
  .products-hero,
  .featured-product {
    grid-template-columns: 1fr;
  }

  .products-hero {
    align-items: end;
  }

  .product-spotlight-stage {
    min-height: 520px;
  }

  .product-spotlight-stage img {
    width: min(46vw, 360px);
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-slide {
    position: absolute;
    min-height: 100vh;
    padding-top: 122px;
    padding-bottom: 92px;
  }

  .hero-content {
    max-width: 720px;
  }

  .elevation-stage {
    min-height: 38vh;
  }

  .product-row,
  .quality-grid,
  .answer-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-bar {
    width: 280px;
    right: 16px;
  }

  .products-grid {
    padding-right: 250px;
  }

  .featured-product {
    grid-column: span 1;
  }

  .featured-product .catalog-copy {
    padding: 0 24px 28px;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 72px 18px;
  }

  .site-header {
    right: 16px;
    width: 132px;
    min-height: 70px;
  }

  .brand-collapser {
    width: 112px;
    height: 52px;
  }

  .brand-collapser img {
    width: 96px;
  }

  .site-header.is-open {
    top: 10px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 8px;
    width: auto;
    min-height: 0;
    padding: 10px 12px 12px;
    border-radius: 28px;
    transform: none;
  }

  .brand img {
    width: 118px;
  }

  .site-header.is-open .brand-home {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .site-header.is-open .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-width: 0;
    gap: 8px;
    padding: 2px 0 4px;
    scroll-padding-inline: 8px;
    scrollbar-width: none;
  }

  .site-header.is-open .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .site-nav .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-slider {
    min-height: 980px;
  }

  .hero-slide {
    align-content: start;
    gap: 18px;
    min-height: 980px;
    padding: 122px 18px 92px;
  }

  .hero-banner {
    object-position: center top;
  }

  .hero-scrim,
  .hero-slide[data-theme="water"] .hero-scrim,
  .hero-slide[data-theme="gofresh-water"] .hero-scrim,
  .hero-slide[data-theme="fruta"] .hero-scrim,
  .hero-slide[data-theme="ready"] .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 253, 245, 0.96) 0%, rgba(255, 253, 245, 0.86) 39%, rgba(255, 253, 245, 0.22) 72%, rgba(12, 61, 40, 0.36) 100%);
  }

  .hero-content .hero-text {
    font-size: 1rem;
  }

  .logo-roller {
    padding: 16px 0 18px;
  }

  .logo-roller::before,
  .logo-roller::after {
    width: 62px;
  }

  .logo-roller-track {
    animation-duration: 24s;
  }

  .logo-roller-set {
    gap: 14px;
    padding-inline: 7px;
  }

  .logo-roller figure {
    width: 132px;
    height: 72px;
    border-radius: 22px;
  }

  .logo-roller figure::before {
    inset: 6px;
    border-radius: 18px;
  }

  .logo-roller img {
    height: 48px;
    width: 80%;
  }

  .hero-leaf.leaf-large {
    left: auto;
    right: -34px;
    bottom: 42%;
    width: min(44vw, 210px);
    opacity: 0.13;
  }

  .hero-leaf.leaf-small {
    left: auto;
    right: 22px;
    top: 170px;
    width: min(24vw, 120px);
    opacity: 0.12;
    transform: rotate(12deg);
  }

  .elevation-stage {
    min-height: 420px;
  }

  .halo {
    width: min(86vw, 420px);
    height: min(86vw, 420px);
  }

  .water-ripple {
    width: min(70vw, 320px);
    height: 70px;
  }

  .elevated-water {
    width: min(66vw, 270px);
    max-height: 470px;
  }

  .elevated-gofresh-water {
    width: min(62vw, 250px);
    max-height: 430px;
  }

  .elevation-group .halo {
    width: min(86vw, 430px);
    height: min(58vw, 300px);
  }

  .elevated-fruta-a,
  .elevated-fruta-b,
  .elevated-fruta-c,
  .elevated-fruta-d,
  .elevated-ready-a,
  .elevated-ready-b,
  .elevated-ready-c,
  .elevated-ready-d,
  .elevated-original-a,
  .elevated-original-b,
  .elevated-original-c,
  .elevated-original-d {
    width: min(24vw, 126px);
    max-height: 330px;
  }

  .elevated-fruta-b,
  .elevated-ready-b,
  .elevated-original-b {
    width: min(26vw, 136px);
  }

  .elevated-fruta-a,
  .elevated-ready-a,
  .elevated-original-a {
    left: 9%;
  }

  .elevated-fruta-c,
  .elevated-ready-c,
  .elevated-original-c {
    left: 64%;
  }

  .elevated-fruta-d,
  .elevated-ready-d,
  .elevated-original-d {
    left: 90%;
  }

  .hero-stage {
    min-height: 410px;
  }

  .paint-splash {
    inset: 14% 1% 0;
  }

  .hero-product-water {
    left: 31%;
    width: 46vw;
  }

  .hero-product-mango {
    left: 1%;
    width: 34vw;
  }

  .hero-product-energy {
    right: -3%;
    width: 34vw;
  }

  .fresh-badge {
    top: 9%;
    width: 102px;
    height: 102px;
  }

  .intro-media {
    min-height: 430px;
  }

  .product-row,
  .quality-grid,
  .answer-grid,
  .catalog-list,
  .banner-stack,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    min-height: 620px;
    padding: 126px 18px 58px;
  }

  .gallery-featured {
    grid-column: span 1;
    min-height: 360px;
  }

  .gallery-featured img {
    min-height: 360px;
  }

  .products-hero {
    min-height: 620px;
    padding: 126px 18px 58px;
  }

  .products-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .product-spotlight-stage {
    min-height: 390px;
  }

  .product-spotlight-stage::before {
    inset: 10% 3% 4%;
  }

  .spotlight-ring {
    width: min(86vw, 420px);
  }

  .product-spotlight-stage img {
    width: min(60vw, 260px);
    max-height: 390px;
  }

  .filter-bar {
    position: fixed;
    top: 116px;
    right: 8px;
    z-index: 28;
    display: block;
    width: 214px;
    height: 292px;
    max-width: none;
    max-height: none;
    overflow: visible;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    pointer-events: none;
  }

  .filter-bar::before {
    display: block;
    right: -150px;
    top: -18px;
    width: 294px;
    height: 294px;
    opacity: 0.9;
  }

  .filter-chip {
    position: absolute;
    right: 2px;
    top: 118px;
    flex: initial;
    min-width: 84px;
    min-height: 34px;
    max-width: 126px;
    padding: 0 12px;
    font-size: 0.68rem;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transform: translate(0, 0) scale(0.82);
    animation: roulettePop 520ms cubic-bezier(0.2, 0.9, 0.22, 1.18) both;
    pointer-events: auto;
  }

  .filter-chip:nth-child(1) {
    --x: -42px;
    --y: -96px;
  }

  .filter-chip:nth-child(2) {
    --x: -88px;
    --y: -66px;
  }

  .filter-chip:nth-child(3) {
    --x: -120px;
    --y: -24px;
  }

  .filter-chip:nth-child(4) {
    --x: -126px;
    --y: 24px;
  }

  .filter-chip:nth-child(5) {
    --x: -94px;
    --y: 70px;
  }

  .filter-chip:nth-child(6) {
    --x: -50px;
    --y: 104px;
  }

  .filter-chip:nth-child(7) {
    --x: -4px;
    --y: 112px;
  }

  .products-grid {
    padding-right: 0;
  }

  .product-count {
    margin-left: 0;
  }

  .featured-product {
    grid-column: span 1;
  }

  .catalog-card {
    min-height: 500px;
  }

  .featured-product .catalog-image img {
    height: 245px;
  }

  .banner-stack img:first-child {
    grid-row: auto;
  }

  .product-card {
    min-height: 420px;
  }

  .catalog-list article {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .catalog-list img {
    width: 96px;
    height: 96px;
  }

  .produce-lemon,
  .produce-kiwi,
  .produce-leaf {
    display: none;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.82rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .catalog-list article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .catalog-list img {
    margin: 0 auto;
  }

  .filter-bar {
    top: 108px;
    right: 4px;
    width: 198px;
    height: 278px;
    border-radius: 0;
    padding: 0;
  }

  .filter-bar::before {
    right: -146px;
    width: 282px;
    height: 282px;
  }

  .filter-chip {
    min-width: 78px;
    min-height: 32px;
    max-width: 112px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .product-count {
    margin-bottom: 24px;
  }
}
