/* Rocka & Billy – place the licensed file in src/assets/fonts/ (any of these names) */
@font-face {
  font-family: "Rocka Billy";
  src: url("/assets/fonts/rocka-billy.woff2") format("woff2"),
       url("/assets/fonts/rocka-billy.woff") format("woff"),
       url("/assets/fonts/rocka-billy.otf") format("opentype"),
       url("/assets/fonts/rocka-billy.ttf") format("truetype");
  font-display: swap;
}

/* =========================================================
   Tropical — design tokens (from logo: forest green + orange)
   ========================================================= */
:root {
  --green-900: #1c3a1f;
  --green-800: #234726;
  --green-700: #2f5d32;   /* logo green */
  --green-600: #3f7a43;
  --green-200: #cfe3c3;
  --green-100: #e4efdb;
  --green-50:  #f3f8ef;
  --orange-500: #f5a21f;  /* logo orange */
  --orange-600: #e08c0b;
  --orange-700: #a86400;  /* orange text on light bg (AA) */
  --orange-100: #fdeccf;
  --orange-50:  #fff7ea;

  --text: #1f2a1f;
  --text-muted: #56635a;
  --surface: #ffffff;
  --bg: #fbfcf9;
  --border: #e4eadf;
  --photo-bg: #f7f7f5;
  --wa: #16803d;          /* WhatsApp green, darkened so white text passes AA */
  --wa-hover: #116a32;
  --tabbar-h: 64px;   /* matches the cleaned product photo backdrop */
  --danger: #c0392b;

  /* Brand script font. Pacifico is the fallback until the Rocka & Billy file is added. */
  --font-script: "Rocka Billy", "Pacifico", cursive;
  --font-body: "Nunito", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(31, 58, 31, .06);
  --shadow: 0 10px 30px rgba(31, 58, 31, .10);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 220ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 150px; }
body {
  margin: 0;
  overflow-x: clip;   /* safety net: decorative bits never cause a sideways scrollbar (clip keeps sticky header working) */
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3 { line-height: 1.2; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1240px, 100% - 32px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; background: var(--green-700); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { top: 12px; }

.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ic-sm { width: 16px; height: 16px; }
.script { font-family: var(--font-script); color: var(--orange-700); }
.text-link { color: var(--green-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; min-height: 48px;
  border-radius: 999px; font-weight: 800; font-size: 15px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--sm { padding: 9px 18px; min-height: 44px; font-size: 14px; }
.btn--primary { background: var(--green-700); color: #fff; }
.btn--primary:hover { background: var(--green-800); box-shadow: 0 8px 20px rgba(47, 93, 50, .25); }
.btn--ghost { border: 2px solid var(--green-700); color: var(--green-700); }
.btn--ghost:hover { background: var(--green-700); color: #fff; }
.btn--dark { background: var(--green-900); color: #fff; }
.btn--dark:hover { background: var(--green-700); }
.btn--light { background: var(--orange-500); color: var(--green-900); }
.btn--light:hover { background: #fff; }
.btn--outline-light { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--green-800); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-hover); }
.btn--wa .ic { width: 20px; height: 20px; }
.btn-row--center { justify-content: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header { background: var(--surface); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.header-top { display: flex; align-items: center; gap: 24px; padding-block: 12px; }
.brand img { width: 64px; height: 64px; border-radius: 50%; }

.search { flex: 1; max-width: 520px; position: relative; }
.search input {
  width: 100%; height: 48px; padding: 0 56px 0 22px;
  border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--green-50); font: inherit; color: var(--text);
  transition: border-color var(--dur), background var(--dur);
}
.search input:focus { outline: none; border-color: var(--green-600); background: #fff; }
.search button {
  position: absolute; right: 5px; top: 5px; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green-700); color: #fff;
}
.search .ic { width: 18px; height: 18px; }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green-50); color: var(--green-700);
  transition: background var(--dur), color var(--dur);
}
.icon-btn:hover { background: var(--green-100); }
.icon-btn .ic { width: 20px; height: 20px; }
.count {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--orange-500); color: var(--green-900);
  font-size: 11px; font-weight: 900; display: grid; place-items: center; border: 2px solid #fff;
}
.count.bump { animation: bump 400ms var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }

.call { display: flex; align-items: center; gap: 10px; margin-left: auto; line-height: 1.25; }
.call__icon { width: 26px; height: 26px; color: var(--orange-600); stroke-width: 1.6; }
.call small { display: block; font-size: 14px; font-weight: 800; color: var(--orange-700); }
.call strong { font-size: 15px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.call:hover strong { color: var(--green-700); }
.menu-toggle { display: none; }

.main-nav { border-top: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding-block: 10px; }
.pill-btn {
  background: var(--green-700); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: 999px; transition: background var(--dur);
}
.pill-btn:hover { background: var(--green-800); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links > li > a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 10px; font-weight: 700; font-size: 15px; color: var(--text);
  transition: color var(--dur);
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 6px; height: 2px; border-radius: 2px;
  background: var(--orange-500); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav-links > li > a:hover { color: var(--green-700); }
.nav-links > li > a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--green-700); }
.has-drop { position: relative; display: flex; align-items: center; }
.has-drop > a { padding-right: 4px !important; }
.drop-toggle { width: 32px; height: 44px; display: grid; place-items: center; border-radius: 999px; color: var(--text); }
.drop-toggle:hover { color: var(--green-700); }
.drop-toggle .ic { transition: transform var(--dur); }
.has-drop.open .drop-toggle .ic { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 210px; padding: 8px; z-index: 5;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--dur), transform var(--dur), visibility var(--dur);
}
.has-drop:hover .dropdown, .has-drop.open .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 600; }
.dropdown a:hover { background: var(--green-50); color: var(--green-700); }

/* =========================================================
   Heroes
   ========================================================= */
/* Botanical line art (shared by home hero and page heroes) */
.botanical {
  position: absolute; bottom: -6px; width: clamp(120px, 17vw, 230px); pointer-events: none;
  fill: none; stroke: var(--green-800); stroke-opacity: .55; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
}
.botanical--l { left: -14px; }
.botanical--r { right: -14px; transform: scaleX(-1); }
.botanical--top { top: -6px; bottom: auto; left: -10px; width: clamp(90px, 12vw, 160px); transform: rotate(180deg) scaleX(-1); }

/* ---------- Home hero: green panel, bowl spilling over the bottom edge ---------- */
.hero { position: relative; margin-top: 24px; padding-bottom: clamp(70px, 9vw, 120px); }
.hero__panel {
  position: relative; overflow: hidden; text-align: center;
  min-height: clamp(420px, 40vw, 500px); padding: clamp(40px, 4.5vw, 60px) 20px 0;
  background: #cfe4bf; border-radius: var(--radius-lg);
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(34px, 4.4vw, 58px); font-weight: 300; color: #2b3a2c; letter-spacing: -.5px;
  line-height: 1.15; text-wrap: balance;
}
/* The real logo wordmark replaces the typed brand name in the headline */
.hero__logo { display: inline-block; height: 1.7em; width: auto; vertical-align: -0.46em; margin-left: .06em; }
.hero__sub { max-width: 560px; margin: 14px auto 0; color: #33452f; font-size: 17px; font-weight: 600; line-height: 1.55; }
.hero__word {
  position: absolute; left: 50%; bottom: 22%; transform: translateX(-50%); z-index: 1;
  font-size: clamp(72px, 13vw, 170px); font-weight: 900; letter-spacing: .04em; line-height: 1; white-space: nowrap;
  color: #b9d7a3; user-select: none;
}
/* The photo is a top-down bowl on white; a circular mask cuts the bowl out cleanly */
.hero__bowl {
  position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%);
  width: clamp(300px, 37vw, 480px); aspect-ratio: 1;
  filter: drop-shadow(0 26px 22px rgba(28, 58, 31, .28)) drop-shadow(0 4px 4px rgba(28, 58, 31, .18));
  pointer-events: none;
}
.hero__bowl img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: radial-gradient(32.9% 32.9% at 51.5% 48%, #000 98.5%, transparent 100%);
          mask-image: radial-gradient(32.9% 32.9% at 51.5% 48%, #000 98.5%, transparent 100%);
  /* shift so the bowl (not the image box) sits centred and low */
  transform: translate(-1.5%, 16%);
}
.hero__nut { position: absolute; z-index: 2; height: auto; transform: rotate(var(--r)); animation: drift 7s ease-in-out infinite alternate; }
@keyframes drift { to { transform: rotate(calc(var(--r) + 12deg)) translateY(-10px); } }

.page-hero {
  position: relative; overflow: hidden; margin-top: 24px; text-align: center;
  background: #cfe4bf; border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px) 20px clamp(40px, 5vw, 60px);
}
.page-hero > :not(.botanical) { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; color: var(--green-900); letter-spacing: -.5px; }
.page-hero__eyebrow { font-size: 22px; margin-top: 14px; }
.page-hero__text { max-width: 640px; margin: 12px auto 0; color: var(--text-muted); font-size: 17px; }
.page-hero--404 { padding-block: 80px; }
.page-hero--404 .btn-row { margin-top: 28px; }

/* Breadcrumbs */
.crumbs ol { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--text-muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--green-700); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--text); }
.product-top { padding-top: 24px; }
.product-top .crumbs ol { justify-content: flex-start; }

/* =========================================================
   Sections
   ========================================================= */
.section { margin-top: clamp(56px, 8vw, 96px); }
.section--tight { margin-top: 32px; }
.section-head { margin-bottom: 28px; }
.section-head h2, .section-title { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--green-900); }
.section-head h2 em, .section-title em { font-style: normal; font-family: var(--font-script); font-weight: 400; color: var(--green-700); }
.section-head p { color: var(--text-muted); margin-top: 6px; }
.section-head--center { text-align: center; }
.section-head--split { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--green-700); padding: 8px 0; }
.link-arrow:hover { color: var(--green-900); }
.link-arrow .ic { transition: transform var(--dur); }
.link-arrow:hover .ic { transform: translateX(3px); }
.panel { background: var(--green-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); }
.panel--orange { background: var(--orange-50); border-color: var(--orange-100); }
.prose p + p { margin-top: 14px; }
.prose { color: var(--text-muted); font-size: 17px; max-width: 68ch; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card__img { aspect-ratio: 7 / 5; overflow: hidden; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__body { position: relative; padding: 40px 26px 26px; text-align: center; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-card__icon {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange-500); color: var(--green-900);
  display: grid; place-items: center; border: 5px solid #fff;
}
.cat-card h3 { font-size: 22px; font-weight: 900; color: var(--green-800); }
.cat-card p { color: var(--text-muted); font-size: 15px; }
.cat-card__link { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-weight: 800; color: var(--green-700); }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.filters--center { justify-content: center; margin-bottom: 28px; }
.filters button, .filters a {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--border); background: #fff; transition: all var(--dur);
}
.filters small { font-size: 12px; font-weight: 800; background: var(--green-50); color: var(--green-700); border-radius: 999px; padding: 0 7px; }
.filters button:hover, .filters a:hover { border-color: var(--green-600); color: var(--green-700); }
.filters button[aria-pressed="true"], .filters a[aria-current="page"] { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.filters a[aria-current="page"] small { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- Catalog ---------- */
.catalog-bar { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.catalog-bar .filters { margin-bottom: 0; }
.catalog-search { position: relative; width: min(320px, 100%); }
.catalog-search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.catalog-search input { width: 100%; height: 44px; padding: 0 16px 0 42px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font: inherit; }
.catalog-search input:focus { outline: none; border-color: var(--green-600); }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 20px 0 16px; }
.catalog-count { font-weight: 600; color: var(--text-muted); font-size: 14px; }
.catalog-count b { color: var(--text); font-variant-numeric: tabular-nums; }
.per-page { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.per-page select {
  height: 40px; padding: 0 34px 0 14px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font: inherit; font-weight: 800; color: var(--green-800);
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%232f5d32' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m3 4.5 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.per-page select:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; }

/* Pagination */
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pager ol { display: flex; gap: 6px; align-items: center; }
.pager a, .pager__step, .pager__gap {
  min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 800; font-variant-numeric: tabular-nums; color: var(--green-800);
}
.pager a { border: 1.5px solid var(--border); background: #fff; transition: border-color var(--dur), background var(--dur), color var(--dur); }
.pager a:hover { border-color: var(--green-600); }
.pager a[aria-current="page"] { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.pager__step[aria-disabled="true"] { color: #b3bab0; border: 1.5px solid var(--border); background: transparent; }
.pager__gap { min-width: 20px; padding: 0; color: var(--text-muted); }
.empty { text-align: center; padding: 56px 20px; background: var(--green-50); border-radius: var(--radius-lg); display: grid; justify-items: center; gap: 10px; }
.empty > .ic { width: 44px; height: 44px; color: var(--green-600); }
.empty h2 { font-size: 22px; color: var(--green-900); }
.empty p { color: var(--text-muted); margin-bottom: 8px; }

/* ---------- Carousel ---------- */
.carousel { position: relative; padding-top: 34px; }
.carousel__band { position: absolute; left: 0; right: 0; top: 0; height: 120px; background: var(--green-700); border-radius: var(--radius-lg); }
.carousel__band::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.04) 22px 44px); }
.carousel__track {
  position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px - 48px) / 4);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 24px;
  padding: 0 24px 16px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
.carousel__nav {
  position: absolute; top: 55%; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--green-700); box-shadow: var(--shadow); display: grid; place-items: center;
  transition: background var(--dur), color var(--dur);
}
.carousel__nav:hover { background: var(--green-700); color: #fff; }
.carousel__nav--prev { left: -18px; }
.carousel__nav--next { right: -18px; }
/* Narrow laptops: the page gutter is only 16px, so keep the side arrows inside it */
@media (max-width: 1320px) {
  .carousel__nav--prev { left: -8px; }
  .carousel__nav--next { right: -8px; }
}
/* Phone-only arrow row (desktop uses the side arrows) */
.carousel__controls { display: none; justify-content: center; align-items: center; gap: 12px; margin-top: 14px; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--border); background: #fff; color: var(--green-700);
  transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur);
}
.carousel__btn:hover { border-color: var(--green-600); }
.carousel__btn:active { transform: scale(.94); }
.carousel__btn .ic { width: 20px; height: 20px; }

/* ---------- Product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product {
  position: relative; background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 16px 16px 18px; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange-500); color: var(--green-900); font-weight: 900; font-size: 12px;
  padding: 3px 10px; border-radius: 999px;
}
.product__wish {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--green-700); display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: color var(--dur), transform var(--dur);
}
.product__wish:hover { transform: scale(1.08); }
.product__wish .ic { width: 20px; height: 20px; }
.wish-btn[aria-pressed="true"] .ic { fill: currentColor; }
.product__wish[aria-pressed="true"] { color: var(--danger); }
/* Product photos are packaging shots on a #f7f7f5 studio backdrop – show them whole */
.product__img { aspect-ratio: 1; width: 100%; border-radius: 14px; overflow: hidden; margin: 0 0 14px; background: var(--photo-bg); }
.product__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 500ms var(--ease); }
.product:hover .product__img img { transform: scale(1.04); }
.product__cat { font-size: 12px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--orange-700); }
.product__name { font-size: 17px; font-weight: 800; color: var(--green-900); margin-top: 2px; }
.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.stretched:focus-visible { outline: none; }
.stretched:focus-visible::after { outline: 3px solid var(--orange-500); outline-offset: 2px; }
.product__short { font-size: 14px; color: var(--text-muted); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product__more { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14px; color: var(--green-700); }
.product:hover .product__more .ic { transform: translateX(3px); }
.product__more .ic { transition: transform var(--dur); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); margin-top: 20px; align-items: start; }
.pdp__main { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--green-50); border: 1px solid var(--border); }
.pdp__main { background: var(--photo-bg); }
.pdp__main img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp__thumbs button { width: 88px; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; border: 3px solid transparent; opacity: .7; transition: border-color var(--dur), opacity var(--dur); }
.pdp__thumbs button:hover { opacity: 1; }
.pdp__thumbs button[aria-pressed="true"] { border-color: var(--orange-500); opacity: 1; }
.pdp__thumbs button { background: var(--photo-bg); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp__info { position: sticky; top: 150px; }
.pdp__cat { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-100); color: var(--orange-700); font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.pdp__cat:hover { background: var(--orange-500); color: var(--green-900); }
.pdp h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: var(--green-900); margin-top: 14px; }
.pdp__lead { font-size: 18px; color: var(--text-muted); margin-top: 10px; }
.pdp__details { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 24px 0; }
.pdp__details div { background: #fff; padding: 14px 18px; }
.pdp__details div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.pdp__details dt { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); }
.pdp__details dd { margin: 2px 0 0; font-weight: 700; color: var(--green-900); }
.wish-btn--big[aria-pressed="true"] { background: var(--orange-500); color: var(--green-900); }
.pdp__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--border); font-size: 14px; font-weight: 700; color: var(--green-800); }
.pdp__trust li { display: inline-flex; align-items: center; gap: 6px; }
.pdp__trust .ic { color: var(--orange-600); }
.pdp-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; }
.pdp-body--single { grid-template-columns: 1fr; }
.pdp-body > article:only-child { grid-column: 1 / -1; }
.stack-lg { display: grid; gap: 24px; align-content: start; }
/* Nutrition table styled like the label on the pack */
.nutrition { background: #fff; }
.nutrition__title { font-size: 20px; font-weight: 900; color: var(--green-900); padding-bottom: 10px; border-bottom: 6px solid var(--green-900); }
.nutrition__title span { font-size: 14px; font-weight: 700; color: var(--text-muted); margin-left: 4px; }
.nutrition table { width: 100%; border-collapse: collapse; font-size: 15px; }
.nutrition th, .nutrition td { padding: 9px 0; border-bottom: 1px solid var(--border); text-align: left; }
.nutrition th { font-weight: 800; color: var(--green-900); }
.nutrition td { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; padding-left: 12px; }
.nutrition tr.sub th { font-weight: 600; color: var(--text-muted); padding-left: 14px; }
.nutrition tr:last-child th, .nutrition tr:last-child td { border-bottom: 0; }
.pdp-body .section-title { margin-bottom: 16px; }
.pdp-body__sub { font-size: 18px; font-weight: 900; color: var(--green-800); margin: 24px 0 8px; }

/* ---------- Why us / split ---------- */
.why, .split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split { grid-template-columns: 1fr 1fr; }
.split .section-title { margin-bottom: 16px; }
.why__text > p { margin-top: 16px; color: var(--text-muted); font-size: 17px; max-width: 60ch; }
.checklist { margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
/* Bullet = the leaf from the logo, no badge behind it */
.checklist li span { flex-shrink: 0; width: 22px; height: 22px; display: grid; place-items: center; margin-top: 1px; color: var(--green-600); }
.checklist .ic { width: 20px; height: 20px; stroke-width: 1.7; }
.checklist--sm { margin: 16px 0 12px; gap: 8px; font-size: 15px; }
.checklist--sm li span { width: 18px; height: 18px; }
.checklist--sm .ic { width: 17px; height: 17px; }
.why__media { position: relative; justify-self: center; width: min(420px, 100%); }
.arch { position: relative; z-index: 1; aspect-ratio: 4 / 5; border-radius: 220px 220px var(--radius-lg) var(--radius-lg); overflow: hidden; background: var(--green-100); border: 8px solid #fff; box-shadow: var(--shadow); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.why__media::before { content: ""; position: absolute; inset: 22px -14px -22px 22px; border-radius: 220px 220px var(--radius-lg) var(--radius-lg); background: var(--green-100); }
.arch__word { position: absolute; z-index: 2; top: 30px; right: -20px; font-size: clamp(48px, 7vw, 84px); font-weight: 900; color: var(--orange-500); letter-spacing: 3px; text-shadow: 0 4px 16px rgba(0,0,0,.12); }
.badge-float { position: absolute; z-index: 2; left: -24px; bottom: 40px; background: #fff; border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow); text-align: center; }
.badge-float strong { display: block; font-size: 30px; font-weight: 900; color: var(--green-700); line-height: 1; }
.badge-float span { font-size: 13px; color: var(--text-muted); font-weight: 700; }

.split__media { position: relative; padding: 0 40px 40px 0; }
.split__media > img:first-child { border-radius: var(--radius-lg); aspect-ratio: 9 / 7; object-fit: cover; width: 100%; }
.split__small { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 8px solid #fff; box-shadow: var(--shadow); }

/* Real shelf photos: keep the Tropical banner at the top in view */
.arch--shelf img { object-position: 50% 12%; }
.why__slogan { font-size: 20px; margin-bottom: 4px; }
.split__media > img:first-child { height: auto; aspect-ratio: 1; object-position: 50% 42%; }
.split__small--pack { height: auto; width: 36%; border-radius: 24px; background: var(--photo-bg); object-fit: contain; padding: 6px; }
.shelf-note { display: flex; align-items: baseline; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; margin-bottom: 28px; color: var(--text-muted); font-weight: 600; }
.shelf-note .script { font-size: 22px; color: var(--green-700); }

/* ---------- 40 g snack band (home) ---------- */
.snack {
  display: grid; grid-template-columns: minmax(240px, 1fr) 2.4fr; gap: 28px; align-items: center;
  background: var(--photo-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
}
.snack__text .script { font-size: 20px; }
.snack__text h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; color: var(--green-900); margin-top: 4px; }
.snack__text h2 span { color: var(--orange-600); }
.snack__text p:not(.script) { color: var(--text-muted); margin: 10px 0 20px; }
.snack__bags { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.snack__bags a { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; font-size: 13px; font-weight: 800; color: var(--green-900); }
.snack__bags img { width: 100%; height: auto; aspect-ratio: 1; margin: 14% 0 16%; object-fit: contain; transform: scale(1.3); transition: transform var(--dur) var(--ease); }
.snack__bags a:hover img { transform: scale(1.3) translateY(-5px) rotate(-2deg); }
.snack__bags span { line-height: 1.25; }

/* ---------- Stats, values, steps ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--green-700); border-radius: var(--radius-lg); padding: 36px 24px; color: #fff; text-align: center; }
.stats div + div { border-left: 1px solid rgba(255,255,255,.18); }
.stats strong { display: block; font-size: clamp(32px, 4vw, 46px); font-weight: 900; color: var(--orange-500); line-height: 1.1; }
.stats span { font-weight: 700; opacity: .9; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; }
.value > span { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; border: 2px dashed var(--orange-500); }
.value h3 { font-size: 21px; font-weight: 900; color: var(--green-900); }
.value p { color: var(--text-muted); margin-top: 8px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps li { position: relative; text-align: center; padding: 0 8px; }
.steps li > span { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--orange-500); color: var(--green-900); font-size: 22px; font-weight: 900; display: grid; place-items: center; position: relative; z-index: 1; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: calc(50% + 36px); right: calc(-50% + 36px); border-top: 2px dashed var(--green-200); }
.steps h3 { font-size: 18px; font-weight: 900; color: var(--green-900); }
.steps p { color: var(--text-muted); font-size: 15px; margin-top: 6px; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; transition: box-shadow var(--dur), transform var(--dur); }
.service:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service:target { border-color: var(--orange-500); box-shadow: 0 0 0 3px var(--orange-100); }
.service__icon { width: 60px; height: 60px; border-radius: 18px; background: var(--green-700); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.service h2 { font-size: 21px; font-weight: 900; color: var(--green-900); }
.service > p { color: var(--text-muted); margin-top: 8px; }
.service .link-arrow { margin-top: auto; }

.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.faq details[open] { border-color: var(--green-200); background: var(--green-50); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 800; color: var(--green-900); display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { transition: transform var(--dur); color: var(--green-700); }
.faq details[open] summary .ic { transform: rotate(180deg); }
.faq details p { padding: 0 22px 20px; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery { columns: 3 280px; column-gap: 18px; }
.gallery li { break-inside: avoid; margin-bottom: 18px; }
.gallery__item { position: relative; display: block; width: 100%; border-radius: var(--radius); overflow: hidden; }
.gallery__item img { width: 100%; height: auto; transition: transform 600ms var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__zoom { position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--green-700); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: opacity var(--dur), transform var(--dur); }
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: none; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 100vw - 32px); max-height: 100vh; overflow: visible; }
.lightbox::backdrop { background: rgba(18, 36, 20, .9); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 12px; font-weight: 700; }
.lightbox__close, .lightbox__nav { position: fixed; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--green-800); display: grid; place-items: center; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--orange-500); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.contact-card--wa > span { background: #e3f4e8; color: var(--wa); }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: grid; gap: 4px; transition: box-shadow var(--dur), border-color var(--dur); }
a.contact-card:hover { box-shadow: var(--shadow); border-color: var(--green-200); }
.contact-card > span { width: 48px; height: 48px; border-radius: 50%; background: var(--orange-100); color: var(--orange-700); display: grid; place-items: center; margin-bottom: 8px; }
.contact-card h2 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); }
.contact-card p { font-weight: 800; color: var(--green-900); overflow-wrap: anywhere; }
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.form-note { color: var(--text-muted); font-size: 14px; margin-top: -8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 800; font-size: 14px; color: var(--green-900); }
.field label span { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; font: inherit; color: var(--text); transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px var(--green-100); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: 14px; font-weight: 700; min-height: 0; }
.field__error:empty { display: none; }
.form-error-summary { background: #fdecea; border: 1.5px solid var(--danger); color: #7d1f15; padding: 14px 18px; border-radius: 12px; font-weight: 700; }
.form-error-summary ul { margin-top: 6px; padding-left: 18px; list-style: disc; }
.form-error-summary a { text-decoration: underline; }
.contact-form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-weight: 700; color: var(--green-700); }
.form-status:empty { display: none; }
.contact__side { display: grid; gap: 24px; }
.contact__side .panel p { color: var(--text-muted); margin: 10px 0 6px; }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; background: var(--green-50); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Promo ---------- */
.promo { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; }
.promo__card { display: flex; align-items: center; gap: 20px; border-radius: var(--radius-lg); padding: 30px; overflow: hidden; min-height: 240px; }
.promo__card > div { flex: 1; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.promo__card .script { font-size: 20px; }
.promo__card h2 { font-size: 26px; font-weight: 900; color: var(--green-900); }
.promo__card p:not(.script) { color: var(--text); opacity: .8; font-size: 15px; margin-bottom: 8px; }
.promo__card img { width: 170px; height: 170px; object-fit: cover; border-radius: 50%; border: 6px solid #fff; box-shadow: var(--shadow); flex-shrink: 0; }
.promo__card--green { background: var(--green-100); }
.promo__card--orange { background: linear-gradient(120deg, var(--orange-100), #fbd79a); }
.promo__card--orange .script { color: var(--green-700); }
.promo__card--orange img { width: 200px; height: 200px; }

/* ---------- Round strip ---------- */
.round-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.round-strip a { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-weight: 800; font-size: 14px; color: var(--green-900); }
/* Circle frame; the photo inside is zoomed so the pack fills it instead of floating in white */
.round-strip__img {
  display: block; width: 100%; max-width: 110px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--photo-bg);
  border: 4px solid #fff; box-shadow: 0 0 0 2px var(--green-200), var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.round-strip img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.3); }
.round-strip a:hover .round-strip__img { transform: translateY(-4px); box-shadow: 0 0 0 3px var(--orange-500), var(--shadow); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 8px; }
.feature { display: flex; gap: 14px; align-items: center; }
.feature > span { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; border: 2px dashed var(--orange-500); color: var(--green-700); display: grid; place-items: center; }
.feature h3 { font-size: 16px; font-weight: 900; color: var(--green-900); }
.feature p { font-size: 14px; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--green-800); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 56px);
}
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; border: 18px solid var(--orange-500); opacity: .25; }
.cta-band > div { position: relative; }
.cta-band .script { color: var(--orange-500); font-size: 20px; }
.cta-band h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; margin-top: 2px; }
.cta-band p:not(.script) { opacity: .85; margin-top: 6px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { margin-top: clamp(56px, 8vw, 96px); padding-bottom: 20px; }
.footer {
  position: relative; background: var(--green-700); color: #eaf3e4; border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px;
}
.footer__title { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.footer__brand img { width: 84px; height: 84px; border-radius: 50%; border: 3px solid var(--orange-500); }
.footer__brand p { margin-top: 16px; font-size: 15px; opacity: .9; }
.footer__list { display: grid; gap: 8px; font-size: 15px; }
.footer__list a { opacity: .9; }
.footer__list a:hover { opacity: 1; color: var(--orange-500); }
.contact-list { display: grid; gap: 12px; font-size: 15px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; overflow-wrap: anywhere; }
.contact-list .ic { color: var(--orange-500); margin-top: 4px; }
.contact-list a:hover { color: var(--orange-500); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; transition: background var(--dur), color var(--dur); }
.socials a:hover { background: var(--orange-500); color: var(--green-900); }
.to-top {
  position: absolute; right: 24px; bottom: -22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-500); color: var(--green-900); display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform var(--dur);
}
.to-top:hover { transform: translateY(-3px); }
.copyright { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 28px 8px 0; font-size: 14px; color: var(--text-muted); }
.copyright .credit { font-weight: 800; color: var(--green-700); text-decoration: underline; text-decoration-color: var(--orange-500); text-underline-offset: 3px; }
.copyright .credit:hover { color: var(--green-900); text-decoration-thickness: 2px; }

/* ---------- WhatsApp floating button (tablet/desktop) ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(22, 128, 61, .35); transition: transform var(--dur) var(--ease), background var(--dur);
}
.wa-float:hover { background: var(--wa-hover); transform: translateY(-2px); }
.wa-float .ic { width: 28px; height: 28px; }

/* ---------- App-style tab bar (phones) ---------- */
.tabbar { display: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 100;
  background: var(--green-900); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 700;
  box-shadow: var(--shadow); max-width: calc(100% - 32px);
  visibility: hidden; transform: translate(-50%, calc(100% + 40px));
  transition: transform 300ms var(--ease), visibility 300ms;
}
.toast.show { transform: translate(-50%, 0); visibility: visible; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .call { display: none; }
  .nav-inner { gap: 16px; }
  .carousel__track { grid-auto-columns: calc((100% - 2 * 20px - 48px) / 3); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .snack { grid-template-columns: 1fr; }
  .snack__bags { grid-template-columns: repeat(3, minmax(0, 140px)); justify-content: center; gap: 28px 36px; }
  .round-strip { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .promo { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr 1fr; }
  .nav-links > li > a { padding-inline: 10px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 900px) {
  body { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
  .wa-float { display: none; }
  .tabbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    height: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, .97); border-top: 1px solid var(--border);
    box-shadow: 0 -6px 20px rgba(31, 58, 31, .06);
  }
  .tabbar__item {
    position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-width: 0; font-size: 11px; font-weight: 700; color: var(--text-muted); -webkit-tap-highlight-color: transparent;
  }
  .tabbar__item .ic { width: 22px; height: 22px; }
  .tabbar__item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; padding-inline: 2px; }
  .tabbar__item:active { transform: scale(.94); }
  .tabbar__item[aria-current="page"] { color: var(--green-700); }
  .tabbar__item[aria-current="page"]::before { content: ""; position: absolute; top: 0; left: 30%; right: 30%; height: 3px; border-radius: 0 0 3px 3px; background: var(--orange-500); }
  .tabbar__item .count { top: 6px; left: calc(50% + 4px); right: auto; }
  /* WhatsApp sits raised in the middle */
  .tabbar__wa { color: var(--wa); }
  .tabbar__wa .ic { width: 26px; height: 26px; color: #fff; background: var(--wa); box-sizing: content-box; padding: 11px; border-radius: 50%; margin-top: -26px; border: 4px solid #fff; box-shadow: 0 6px 16px rgba(22, 128, 61, .35); }
  .toast { bottom: calc(var(--tabbar-h) + 16px + env(safe-area-inset-bottom)); }
  .to-top { display: none; }
  .header-top { flex-wrap: wrap; gap: 12px; }
  .brand img { width: 52px; height: 52px; }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .menu-toggle { display: grid; }
  .main-nav { display: none; }
  .main-nav.open { display: block; max-height: calc(100dvh - 130px); overflow-y: auto; }
  .nav-inner { flex-direction: column; align-items: stretch; gap: 10px; padding-block: 14px; }
  .nav-links { flex-direction: column; align-items: stretch; }
  .nav-links > li > a { width: 100%; }
  .has-drop { flex-wrap: wrap; }
  .has-drop > a { flex: 1; }
  .drop-toggle { width: 44px; }
  .dropdown { position: static; flex-basis: 100%; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 14px; }
  .has-drop.open .dropdown { display: block; }
  .has-drop:hover .dropdown { display: none; }
  .has-drop.open:hover .dropdown { display: block; }
  .pill-btn { text-align: center; }
  .call { display: flex; margin: 4px 0 0; padding: 8px 10px; }
  .nav-links > li > a::after { display: none; }
  .cat-grid, .value-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .why, .split, .pdp, .pdp-body, .contact { grid-template-columns: 1fr; }
  .why__media { order: -1; width: min(340px, 90%); }
  .pdp__info { position: static; }
  .carousel__track { grid-auto-columns: calc((100% - 20px - 48px) / 2); }
  .carousel__nav { display: none; }
  .carousel__controls { display: flex; }
  .carousel__btn--step { background: var(--green-700); border-color: var(--green-700); color: #fff; }
  .carousel__btn--step:hover { background: var(--green-800); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .steps li::after { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stats div:nth-child(3) { border-left: 0; }
}

@media (max-width: 560px) {
  .carousel__track { grid-auto-columns: 78%; padding-inline: 16px; gap: 14px; }
  .product-grid { gap: 12px; }
  .product { padding: 12px 10px 14px; }
  .product__name { font-size: 15px; }
  .product__short { font-size: 13px; }
  .product__wish { top: 6px; right: 6px; }
  .product__badge { top: 10px; left: 10px; }
  .round-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .round-strip__img { max-width: 136px; }
  .round-strip a { font-size: 14px; }
  .features, .service-grid, .steps, .steps--3, .field-row { grid-template-columns: 1fr; }
  .promo__card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .promo__card--orange { flex-direction: column-reverse; }
  .promo__card img, .promo__card--orange img { width: 130px; height: 130px; }
  .footer { grid-template-columns: 1fr; }
  .hero__panel { min-height: 540px; padding-inline: 18px; }
  /* Phones: the sentence stays on one line, the logo gets its own larger line */
  .hero__lead { white-space: nowrap; font-size: min(38px, 9.4vw); }
  .hero__logo { display: block; height: 3.3em; margin: 4px auto 0; }
  .hero__sub { font-size: 16px; }
  .hero__word { bottom: 26%; }
  .hero__nut--top { display: none; }
  .hero__nut { scale: .8; }
  .botanical--top { display: none; }
  .botanical { width: 110px; stroke-opacity: .4; }
  .badge-float { left: -8px; }
  .arch__word { right: -4px; }
  .copyright { justify-content: center; text-align: center; }
  .pdp__details { grid-template-columns: 1fr; }
  .pdp__thumbs button { width: 72px; }
  .pdp .btn-row .btn { flex: 1 1 100%; }
  .split__media { padding: 0 20px 20px 0; }
  .catalog-search { width: 100%; }
  .pager__step span { display: none; }
  .pager__step { padding: 0; }
  .lightbox__nav { top: auto; bottom: 16px; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__nut { animation: none !important; }
}
