:root {
  --green: #2f482b;
  --green-deep: #20351e;
  --green-soft: #e4ebdf;
  --gold: #b19846;
  --gold-light: #d8c98e;
  --cream: #f7f2e8;
  --cream-deep: #eee6d7;
  --paper: #fffcf6;
  --ink: #1f291e;
  --muted: #687164;
  --line: rgba(47, 72, 43, 0.15);
  --white: #fff;
  --shadow-soft: 0 18px 45px rgba(43, 53, 37, 0.1);
  --shadow-card: 0 12px 34px rgba(38, 54, 34, 0.09);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Italiana", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.cart-is-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 99px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.splash {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.25rem;
  background: var(--cream);
  pointer-events: none;
  animation: splashSafety 0.01s 4.5s forwards;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.splash img {
  width: clamp(8rem, 20vw, 12rem);
  filter: drop-shadow(0 12px 22px rgba(34, 54, 31, 0.13));
}

.splash-line {
  width: 7.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(47, 72, 43, 0.18);
}

.splash-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform-origin: left;
  animation: splashLine 1.25s ease both;
}

.splash.is-out {
  opacity: 0;
  visibility: hidden;
}

.announcement {
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  color: var(--cream);
  background: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p span {
  padding-inline: 0.25rem;
  color: var(--gold-light);
}

.announcement-dot {
  width: 0.45rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #93bb78;
  box-shadow: 0 0 0 0 rgba(147, 187, 120, 0.5);
  animation: pulseDot 2.2s ease-out infinite;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 1.5rem, 90rem);
  min-height: 4.75rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand-link {
  width: 4.2rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
}

.brand-link img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.cart-trigger {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem 0.45rem 0.8rem;
  color: var(--white);
  border: 0;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 7px 18px rgba(47, 72, 43, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cart-trigger:hover {
  background: var(--green-deep);
  box-shadow: 0 10px 24px rgba(47, 72, 43, 0.24);
  transform: translateY(-1px);
}

.cart-trigger-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.cart-trigger-icon svg {
  width: 100%;
  height: 100%;
}

.cart-trigger-label {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-count {
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  padding-inline: 0.35rem;
  color: var(--green-deep);
  border-radius: 99px;
  background: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(44rem, calc(100svh - 7.15rem));
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 5rem) max(1.25rem, calc((100vw - 90rem) / 2));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(47, 72, 43, 0.08) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(177, 152, 70, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.28rem;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
}

.hero-orbit-one {
  width: 30rem;
  height: 30rem;
  right: -17rem;
  top: 3rem;
  animation: orbitRotate 24s linear infinite;
}

.hero-orbit-two {
  width: 18rem;
  height: 18rem;
  left: -12rem;
  bottom: -4rem;
  animation: orbitRotate 18s linear infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 43rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.85rem;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.how-copy h2,
.final-cta h2 {
  margin-top: 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 13vw, 6.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero h1 em,
.section-heading h2 em,
.how-copy h2 em,
.final-cta h2 em {
  color: var(--green);
  font-weight: 400;
}

.hero-lead {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(47, 72, 43, 0.22);
}

.button-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 14px 30px rgba(47, 72, 43, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 252, 246, 0.6);
}

.button-secondary:hover {
  border-color: rgba(47, 72, 43, 0.35);
  background: var(--paper);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta svg {
  width: 1rem;
  height: 1rem;
  color: var(--green);
}

.hero-visual {
  position: relative;
  width: min(100%, 34rem);
  margin-inline: auto;
  padding: 1.25rem 1.25rem 2rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5% 0 5%;
  z-index: -1;
  border-radius: 46% 54% 49% 51% / 58% 42% 58% 42%;
  background: #dfe5d6;
  transform: rotate(-4deg);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 0.55rem solid rgba(255, 252, 246, 0.9);
  border-radius: min(12vw, 4.5rem) min(8vw, 2.8rem) min(13vw, 5.2rem) min(7vw, 2.5rem);
  box-shadow: 0 32px 65px rgba(38, 54, 34, 0.2);
  transform: rotate(2deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  top: -0.4rem;
  right: 0;
  width: 6.2rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.12rem;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(32, 53, 30, 0.24);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.hero-stamp strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.hero-note {
  position: absolute;
  right: 0.1rem;
  bottom: 0;
  min-width: 9.8rem;
  padding: 0.85rem 1rem;
  color: var(--cream);
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  box-shadow: 0 14px 34px rgba(32, 53, 30, 0.22);
}

.hero-note span,
.hero-note small {
  display: block;
  font-size: 0.62rem;
}

.hero-note span {
  color: var(--gold-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-block: 0.1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.hero-note small {
  color: rgba(255, 255, 255, 0.66);
}

.benefits {
  display: grid;
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.benefits > div {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.25rem max(1.25rem, calc((100vw - 90rem) / 2));
  background: var(--paper);
}

.benefits > div > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.benefits p {
  color: var(--muted);
  font-size: 0.78rem;
}

.benefits strong {
  display: block;
  color: var(--ink);
  font-size: 0.91rem;
}

.catalog-section,
.how-section {
  padding: clamp(4.8rem, 9vw, 8.5rem) max(1.25rem, calc((100vw - 90rem) / 2));
}

.section-heading {
  display: grid;
  gap: 1.2rem;
  align-items: end;
}

.section-heading h2,
.how-copy h2 {
  font-size: clamp(3rem, 9vw, 5.8rem);
}

.section-heading > p {
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.filter-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 2.2rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 252, 246, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-chip span {
  min-width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 0.68rem;
}

.filter-chip:hover {
  border-color: rgba(47, 72, 43, 0.32);
  transform: translateY(-1px);
}

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

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

.product-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 72, 43, 0.1);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.product-card.is-selected {
  border-color: rgba(47, 72, 43, 0.22);
  box-shadow: 0 20px 48px rgba(38, 54, 34, 0.14);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #f1eadf;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 15% 4% 15%;
  height: 10%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(44, 51, 39, 0.13);
  filter: blur(13px);
  pointer-events: none;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.38rem 0.65rem;
  color: var(--green);
  border: 1px solid rgba(47, 72, 43, 0.12);
  border-radius: 99px;
  background: rgba(255, 252, 246, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card-premium .product-badge {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(47, 72, 43, 0.88);
}

.product-content {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem;
}

.product-kicker {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content h3 {
  max-width: 16rem;
  margin-top: 0.28rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-footer > span {
  max-width: 6.5rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.3;
}

.quantity-control {
  flex: 0 0 auto;
  min-width: 7.8rem;
  min-height: 2.55rem;
  display: grid;
  grid-template-columns: 2.45rem 1fr 2.45rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--cream);
}

.quantity-control button {
  height: 100%;
  padding: 0;
  color: var(--green);
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease;
}

.quantity-control button:hover {
  color: var(--white);
  background: var(--green);
}

.quantity-control output {
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.combos-section {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100vw - 90rem) / 2));
  color: var(--cream);
  background: var(--green-deep);
  overflow: hidden;
}

.combos-section::before {
  content: "DM";
  position: absolute;
  z-index: -1;
  top: -3rem;
  right: -2rem;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--font-display);
  font-size: min(48vw, 32rem);
  line-height: 1;
}

.section-heading-light .eyebrow,
.final-cta .eyebrow {
  color: var(--gold-light);
}

.section-heading-light h2 em {
  color: var(--gold-light);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.combo-layout {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.combo-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 4vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.08);
}

.combo-panel-premium {
  border-color: rgba(216, 201, 142, 0.35);
  background: linear-gradient(145deg, rgba(216, 201, 142, 0.13), rgba(255, 255, 255, 0.055));
}

.combo-panel-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.combo-icon {
  width: 3.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-deep);
  border-radius: 50%;
  background: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.combo-panel-head p {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.combo-panel-head h3 {
  margin-top: 0.18rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.13);
}

.price-list span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.price-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.combo-note {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.combo-flavors {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.combo-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.combo-link span {
  transition: transform 180ms ease;
}

.combo-link:hover span {
  transform: translateX(4px);
}

.how-section {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  background: var(--paper);
}

.how-visual {
  position: relative;
  max-width: 38rem;
}

.how-visual::before {
  content: "";
  position: absolute;
  inset: -0.9rem 1.7rem 1.2rem -0.7rem;
  z-index: 0;
  border: 1px solid rgba(177, 152, 70, 0.36);
  border-radius: var(--radius-lg);
}

.how-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 58px rgba(38, 54, 34, 0.17);
}

.how-visual > span {
  position: absolute;
  z-index: 2;
  right: -0.2rem;
  bottom: 1.2rem;
  max-width: 10rem;
  padding: 0.85rem 1rem;
  color: var(--cream);
  border-radius: var(--radius-sm);
  background: var(--green);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.15;
  text-align: center;
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.steps-list > li > span {
  width: 2.7rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(47, 72, 43, 0.24);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.steps-list h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.steps-list p {
  max-width: 32rem;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  padding: clamp(5.5rem, 12vw, 10rem) 1.25rem;
  color: var(--cream);
  background: var(--green);
  text-align: center;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 24rem;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 201, 142, 0.2);
  border-radius: 50%;
}

.final-cta::before {
  left: -15rem;
  top: -8rem;
}

.final-cta::after {
  right: -15rem;
  bottom: -10rem;
}

.final-cta-mark {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: min(45vw, 29rem);
  line-height: 1;
  pointer-events: none;
}

.final-cta h2 {
  max-width: 61rem;
  color: var(--cream);
  font-size: clamp(3rem, 9.5vw, 7rem);
}

.final-cta h2 em {
  color: var(--gold-light);
}

.button-cream {
  color: var(--green-deep);
  background: var(--cream);
}

.button-outline {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-outline:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3.5rem max(1.25rem, calc((100vw - 90rem) / 2)) 1.5rem;
  color: var(--cream);
  background: var(--green-deep);
}

.footer-brand img {
  width: 6rem;
  height: 4.5rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) sepia(0.15);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  transition: color 150ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.cart-drawer {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.cart-drawer::backdrop {
  background: rgba(20, 29, 19, 0.48);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fadeIn 200ms ease both;
}

.cart-shell {
  width: min(100%, 31rem);
  height: 100%;
  margin-left: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--paper);
  box-shadow: -22px 0 60px rgba(22, 31, 21, 0.18);
  animation: slideDrawer 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.cart-head p {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-head h2 {
  margin-top: 0.1rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
}

.cart-close {
  width: 2.65rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.cart-close:hover {
  color: var(--white);
  background: var(--green);
  transform: rotate(5deg);
}

.cart-body {
  min-height: 0;
  overflow-y: auto;
}

.cart-empty {
  min-height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 2rem;
  text-align: center;
}

.cart-empty > span {
  width: 5.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
}

.cart-empty svg {
  width: 3rem;
  height: 3rem;
}

.cart-empty h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
}

.cart-empty p {
  margin: 0.35rem 0 1.3rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-filled {
  padding: 1rem;
}

.cart-items {
  display: grid;
  gap: 0.7rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.cart-item img {
  width: 4.4rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 7px 14px rgba(38, 54, 34, 0.08);
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy span {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item-copy h3 {
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.cart-item-control {
  display: grid;
  grid-template-columns: 1.8rem 1.8rem 1.8rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--cream);
}

.cart-item-control button {
  height: 1.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-item-control button:hover {
  color: var(--white);
  background: var(--green);
}

.cart-item-control strong {
  text-align: center;
  font-size: 0.71rem;
}

.cart-summary {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.category-progress[hidden] {
  display: none;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.progress-track {
  height: 0.4rem;
  margin-top: 0.5rem;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(47, 72, 43, 0.12);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 320ms ease;
}

.category-progress p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.order-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.order-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.order-form input,
.order-form select {
  min-width: 0;
  min-height: 2.85rem;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  font-size: 0.82rem;
}

.order-form input::placeholder {
  color: #a2a79e;
}

.order-form input:focus,
.order-form select:focus {
  border-color: var(--green);
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.cart-total span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-total strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  text-align: right;
}

.cart-pricing-note {
  margin-top: -0.55rem;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: right;
}

.whatsapp-submit {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  border: 0;
  border-radius: 99px;
  background: #2e7d44;
  box-shadow: 0 11px 24px rgba(46, 125, 68, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-submit:hover {
  background: #256a39;
  box-shadow: 0 14px 28px rgba(46, 125, 68, 0.28);
  transform: translateY(-1px);
}

.whatsapp-submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

.order-float {
  position: fixed;
  z-index: 90;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  left: 50%;
  min-width: min(19rem, calc(100vw - 1.7rem));
  display: grid;
  gap: 0.08rem;
  padding: 0.72rem 1.4rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(32, 53, 30, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.order-float:not([hidden]) {
  display: grid;
}

.order-float:hover {
  background: var(--green-deep);
  box-shadow: 0 22px 46px rgba(32, 53, 30, 0.36);
  transform: translateX(-50%) translateY(-2px);
}

.order-float strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.toast {
  position: fixed;
  z-index: 300;
  top: 7.8rem;
  left: 50%;
  max-width: calc(100vw - 2rem);
  padding: 0.65rem 0.95rem;
  color: var(--cream);
  border-radius: 99px;
  background: var(--green-deep);
  box-shadow: var(--shadow-soft);
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.8rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-split] {
  opacity: 1;
  transform: none;
}

@keyframes splashSafety {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes splashLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes pulseDot {
  70% { box-shadow: 0 0 0 0.42rem rgba(147, 187, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(147, 187, 120, 0); }
}

@keyframes orbitRotate {
  to { transform: rotate(1turn); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDrawer {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (min-width: 540px) {
  .nav-shell {
    width: min(100% - 2.5rem, 90rem);
  }

  .cart-trigger-label {
    display: inline;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-layout,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1.3fr 0.75fr 1fr;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 720px) {
  .desktop-nav {
    display: flex;
    justify-self: center;
    gap: 1.65rem;
  }

  .desktop-nav a {
    position: relative;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 600;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-shell {
    grid-template-columns: 1fr auto 1fr;
  }

  .cart-trigger {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
  }

  .hero-visual {
    width: min(100%, 32rem);
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits > div {
    justify-content: center;
    padding: 1.25rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.36fr);
  }

  .how-section {
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  }

  .how-visual {
    width: 90%;
  }

  .cart-head {
    padding: 1.2rem 1.4rem;
  }

  .cart-filled {
    padding: 1.2rem 1.4rem 1.6rem;
  }
}

@media (min-width: 960px) {
  .hero-copy {
    padding-left: 1rem;
  }

  .hero-visual {
    width: min(100%, 35rem);
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .combo-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.2rem;
  }

  .combo-panel {
    min-height: 30rem;
  }

  .combo-panel-premium {
    transform: translateY(2.2rem);
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: min(58rem, calc(100svh - 7.15rem));
  }

  .hero-copy {
    padding-left: 3rem;
  }

  .hero-visual {
    width: min(100%, 39rem);
  }

  .hero-stamp {
    width: 7.2rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .product-content {
    padding: 1.35rem;
  }

  .how-copy {
    padding-right: 4rem;
  }
}

@media (min-width: 1600px) {
  .nav-shell,
  .hero,
  .catalog-section,
  .combos-section,
  .how-section,
  .site-footer {
    --wide-gutter: calc((100vw - 96rem) / 2);
  }

  .hero,
  .catalog-section,
  .combos-section,
  .how-section,
  .site-footer {
    padding-left: var(--wide-gutter);
    padding-right: var(--wide-gutter);
  }

  .nav-shell {
    width: min(100% - 4rem, 96rem);
  }

  .hero-copy {
    padding-left: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-orbit,
  .announcement-dot,
  .splash-line::after {
    animation: none;
  }
}
