/*
Theme Name: Lombrices Vitacura Custom
Theme URI: https://www.lombricesvitacura.cl
Author: Custom Dev
Description: One-page WordPress theme for Lombrices Vitacura, optimized for WhatsApp, Instagram and WooCommerce transfer orders.
Version: 3.2.0
Text Domain: lombrices-vitacura
*/

:root {
  --forest: #0f2d1f;
  --forest-2: #164631;
  --leaf: #4f8f4c;
  --moss: #91a95f;
  --soil: #3b2a1f;
  --clay: #bd5f3d;
  --sun: #f2c34e;
  --sky: #9dc8c2;
  --paper: #f7f1e4;
  --cream: #fffaf0;
  --white: #fffdf8;
  --ink: #172119;
  --muted: #657064;
  --line: rgba(23, 33, 25, 0.14);
  --line-strong: rgba(23, 33, 25, 0.22);
  --shadow: 0 24px 70px rgba(24, 20, 14, 0.18);
  --shadow-soft: 0 14px 34px rgba(24, 20, 14, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.7), rgba(247, 241, 228, 1) 34rem),
    var(--paper);
  font-family: var(--font-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--forest);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-sm);
}

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

h1,
h2,
h3 {
  color: var(--forest);
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.9rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  width: min(calc(100% - 1.5rem), 1260px);
  margin: 0.75rem auto -5.4rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 45, 31, 0.62);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(23, 33, 25, 0.12);
  box-shadow: 0 18px 48px rgba(24, 20, 14, 0.14);
}

.header-shell,
.hero-shell,
.section,
.footer-shell,
.proof-ribbon,
.final-cta {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 68px;
  padding-inline: 0.55rem;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 253, 248, 0.82);
  border-radius: 50%;
  overflow: hidden;
  background: var(--leaf);
  box-shadow: 0 12px 26px rgba(15, 45, 31, 0.2);
  flex: 0 0 auto;
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 0.03rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.03rem;
  line-height: 1.1;
}

.brand-text span {
  color: currentColor;
  opacity: 0.74;
  font-size: 0.78rem;
  white-space: nowrap;
}

.main-navigation {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  padding: 0.28rem;
  border: 1px solid currentColor;
  border-color: rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
}

.site-header.is-scrolled .main-navigation {
  border-color: rgba(23, 33, 25, 0.08);
  background: rgba(15, 45, 31, 0.045);
}

.main-navigation a {
  padding: 0.52rem 0.68rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  color: var(--forest);
  background: var(--sun);
  transform: translateY(-1px);
}

.header-cta,
.btn,
.pack-link,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  color: var(--forest);
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.header-cta:hover,
.btn:hover,
.pack-link:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 253, 248, 0.12);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(820px, calc(100svh - 36px));
  padding: 9.5rem 0 2.4rem;
  color: var(--white);
  background: var(--forest);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  display: none;
  background:
    linear-gradient(90deg, rgba(15, 45, 31, 0.98) 0%, rgba(15, 45, 31, 0.78) 38%, rgba(15, 45, 31, 0.2) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(15, 45, 31, 0.74) 88%);
}

.hero-section::after {
  display: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.065) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.045) 0 1px, transparent 1px 104px);
  mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 78%, transparent);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.soil-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 160px;
  border: 1px solid rgba(242, 195, 78, 0.22);
  border-color: transparent transparent rgba(242, 195, 78, 0.24) transparent;
  border-radius: 0 0 50% 50%;
  transform: rotate(-2deg);
}

.soil-line-one {
  top: 36%;
}

.soil-line-two {
  top: 54%;
  border-color: transparent transparent rgba(157, 200, 194, 0.22) transparent;
  transform: rotate(2deg);
}

.seed {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.75;
  animation: floatSeed 7s ease-in-out infinite;
}

.seed-one {
  top: 20%;
  left: 7%;
}

.seed-two {
  top: 24%;
  right: 13%;
  background: var(--sky);
  animation-delay: -2s;
}

.seed-three {
  right: 24%;
  bottom: 18%;
  background: var(--clay);
  animation-delay: -4s;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.055) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.038) 0 1px, transparent 1px 104px),
    linear-gradient(90deg, rgba(15, 45, 31, 0.98) 0%, rgba(15, 45, 31, 0.78) 38%, rgba(15, 45, 31, 0.2) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(15, 45, 31, 0.74) 88%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  min-height: min(600px, calc(100svh - 240px));
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 780px;
  padding-top: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow,
.process-section .eyebrow,
.delivery-panel .eyebrow {
  color: var(--sun);
}

.eyebrow::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(242, 195, 78, 0.2);
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.65rem;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  min-height: 52px;
  padding: 0.9rem 1.28rem;
}

.btn-primary {
  color: var(--forest);
  background: var(--sun);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(12px);
}

.section .btn-secondary,
.final-cta .btn-secondary {
  color: var(--forest);
  border-color: rgba(15, 45, 31, 0.18);
  background: rgba(255, 253, 248, 0.78);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 1.35rem;
}

.trust-strip span,
.proof-ribbon span,
.order-proof span {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.product-orbit {
  position: absolute;
  z-index: 2;
  right: 8vw;
  bottom: 14vh;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.product-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
}

.product-orbit span:nth-child(1) {
  top: 6px;
  left: 50%;
}

.product-orbit span:nth-child(2) {
  right: 22px;
  bottom: 45px;
  background: var(--sky);
}

.product-orbit span:nth-child(3) {
  left: 24px;
  bottom: 58px;
  background: var(--clay);
}

.live-badge,
.hero-metric {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(15, 45, 31, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.live-badge {
  top: 9rem;
  right: min(6vw, 4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  font-weight: 900;
}

.live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ff071;
  box-shadow: 0 0 0 0 rgba(143, 240, 113, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}

.hero-metric {
  display: grid;
  gap: 0.18rem;
  max-width: 178px;
  padding: 0.9rem;
}

.hero-metric strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-metric span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-metric-left {
  top: 13.4rem;
  right: min(6vw, 4rem);
  bottom: auto;
}

.hero-metric-right {
  top: 20.1rem;
  right: min(6vw, 4rem);
  bottom: auto;
}

.proof-ribbon {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.proof-ribbon span {
  display: grid;
  place-items: center;
  min-height: 50px;
  text-align: center;
}

.section {
  padding: 5.2rem 0;
}

.snap-section {
  padding-top: 4rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2.1rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p,
.order-story p,
.seo-copy p,
.delivery-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 1.07rem;
}

.benefit-grid,
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article,
.care-grid article,
.pack-card,
.faq-list details,
.process-step,
.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.benefit-grid article {
  position: relative;
  min-height: 260px;
  padding: 1.1rem;
  overflow: hidden;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 64px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--clay));
  transition: width 220ms ease;
}

.benefit-grid article:hover::after {
  width: calc(100% - 2rem);
}

.benefit-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sun);
  font-weight: 950;
}

.benefit-grid p,
.care-grid p,
.pack-card p,
.faq-list p,
.process-step p,
.order-card p {
  color: var(--muted);
}

.order-section {
  width: 100%;
  max-width: none;
  padding: 5.5rem 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 45, 31, 0.98), rgba(59, 42, 31, 0.96)),
    var(--forest);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.58fr);
  gap: 2rem;
  align-items: start;
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.order-story h2,
.order-story .eyebrow {
  color: var(--white);
}

.order-story p {
  color: rgba(255, 253, 248, 0.78);
}

.order-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.72fr);
  gap: 1rem;
  max-width: 720px;
  margin-top: 1.6rem;
  align-items: end;
}

.order-image-stack img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.2);
}

.order-image-stack img:first-child {
  aspect-ratio: 4 / 3;
}

.order-image-stack img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(2rem);
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 760px;
  margin-top: 3.2rem;
}

.mini-proof div {
  display: grid;
  gap: 0.15rem;
  min-height: 92px;
  padding: 0.95rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
}

.mini-proof strong {
  color: var(--sun);
}

.mini-proof span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
}

.order-card {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.26);
}

.pack-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.pack-topline span,
.pack-topline small {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
}

.pack-topline span {
  color: var(--soil);
  background: rgba(242, 195, 78, 0.34);
}

.pack-topline small {
  color: var(--forest);
  background: rgba(79, 143, 76, 0.12);
}

.quantity-control {
  display: grid;
  gap: 0.48rem;
  color: var(--forest);
  font-weight: 950;
}

.quantity-control input {
  width: 100%;
  min-height: 56px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 45, 31, 0.2);
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--paper);
  font-size: 1.2rem;
  font-weight: 950;
}

.quantity-control input:focus {
  outline: 3px solid rgba(242, 195, 78, 0.35);
  border-color: var(--forest);
}

.quantity-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.quantity-presets button {
  min-height: 44px;
  border: 1px solid rgba(15, 45, 31, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(79, 143, 76, 0.1);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quantity-presets button:hover,
.quantity-presets button:focus-visible,
.quantity-presets button.is-selected {
  border-color: rgba(15, 45, 31, 0.28);
  background: var(--sun);
  transform: translateY(-1px);
}

.order-total {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 143, 76, 0.13), rgba(242, 195, 78, 0.24)),
    var(--cream);
}

.order-total span,
.order-total small,
.cart-resume {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.order-total strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.order-submit {
  width: 100%;
}

.cart-resume {
  justify-self: center;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.25em;
}

.order-microcopy {
  margin-bottom: 0;
  font-size: 0.86rem;
  text-align: center;
}

.price-section {
  padding-bottom: 4rem;
}

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

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 1.15rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--clay), var(--sky));
}

.pack-card:hover,
.pack-card.is-featured {
  border-color: rgba(15, 45, 31, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pack-card.is-featured {
  background: var(--cream);
}

.pack-card.is-featured::after {
  content: "PREFERIDO ★";
  position: absolute;
  top: 18px;
  right: -28px;
  z-index: 3;
  padding: 0.32rem 2.4rem;
  background: var(--clay);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: rotate(30deg);
  pointer-events: none;
}

.worm-pack {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 92px;
  margin: 0.85rem 0 1.15rem;
  padding: 0.8rem;
  border: 1px solid rgba(15, 45, 31, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 25%, rgba(242, 195, 78, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(79, 143, 76, 0.11), rgba(157, 200, 194, 0.16));
}

.worm-pack::after {
  content: attr(data-worm-count) "x núcleo vivo";
  position: absolute;
  right: 0.7rem;
  bottom: 0.55rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 950;
}

.worm-cluster {
  position: relative;
  display: block;
  width: 54px;
  height: 42px;
  filter: drop-shadow(0 8px 10px rgba(59, 42, 31, 0.16));
}

.worm-cluster i {
  position: absolute;
  display: block;
  width: 42px;
  height: 13px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 253, 248, 0.22) 7px 9px),
    linear-gradient(90deg, #9d4431, var(--clay), #df8a53);
  transform-origin: center;
  animation: wormWiggle 2.8s ease-in-out infinite;
}

.worm-cluster i:nth-child(1) {
  top: 6px;
  left: 2px;
  transform: rotate(-12deg);
}

.worm-cluster i:nth-child(2) {
  top: 18px;
  left: 10px;
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 253, 248, 0.2) 7px 9px),
    linear-gradient(90deg, #7f382c, #c86f45, #ef9a58);
  animation-delay: -0.65s;
  transform: rotate(16deg);
}

.worm-cluster i:nth-child(3) {
  top: 27px;
  left: 0;
  width: 36px;
  animation-delay: -1.15s;
  transform: rotate(-4deg);
}

.pack-price {
  display: grid;
  gap: 0.1rem;
  margin-top: auto;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 950;
}

.pack-price span {
  font-family: var(--font-main);
  color: var(--muted);
  font-size: 0.82rem;
}

.pack-link {
  width: 100%;
  min-height: 48px;
  margin-top: 1rem;
  color: var(--white);
  background: var(--forest);
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 5.8rem 0;
  background:
    linear-gradient(135deg, rgba(15, 45, 31, 0.97), rgba(22, 70, 49, 0.96)),
    var(--forest);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  align-items: start;
}

.process-section h2,
.process-section .text-link {
  color: var(--white);
}

.process-section .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.text-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--forest);
  font-weight: 950;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.25em;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: rgba(255, 253, 248, 0.18);
}

.process-step {
  position: relative;
  padding: 1.15rem;
  background: rgba(255, 253, 248, 0.92);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.process-step.is-active {
  border-color: rgba(242, 195, 78, 0.85);
  background: var(--white);
  transform: translateY(-4px);
}

.process-step span,
.care-icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 42px;
  margin-bottom: 1rem;
  padding: 0 0.62rem;
  border-radius: 999px;
  color: var(--forest);
  background: var(--sun);
  font-size: 0.8rem;
  font-weight: 950;
}

.care-grid article {
  min-height: 260px;
  padding: 1.15rem;
}

.care-icon {
  background: var(--cream);
}

.delivery-section {
  padding-top: 2rem;
}

.delivery-panel {
  display: grid;
  grid-template-columns: 0.9fr 0.65fr 0.72fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 45, 31, 0.95), rgba(59, 42, 31, 0.9)),
    var(--forest);
  box-shadow: var(--shadow);
}

.delivery-panel h2 {
  color: var(--white);
}

.delivery-panel p {
  color: rgba(255, 253, 248, 0.78);
}

.delivery-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.delivery-list {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  position: relative;
  padding: 0.92rem 0.92rem 0.92rem 2.2rem;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
}

.delivery-list li::before {
  content: "";
  position: absolute;
  top: 1.22rem;
  left: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sun);
}

.seo-section {
  padding-top: 2rem;
}

.seo-copy {
  max-width: 940px;
  padding: 2rem;
  border-left: 6px solid var(--clay);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.faq-section {
  padding-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  padding: 0.2rem 1rem;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  color: var(--forest);
  font-weight: 950;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.final-cta {
  margin: 2rem auto 5rem;
  padding: 3.1rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(242, 195, 78, 0.2), rgba(157, 200, 194, 0.28)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.final-cta > div {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.woocommerce-page .site-main,
.woocommerce .site-main {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.page-section {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.page-content {
  max-width: 980px;
  margin-inline: auto;
}

.page-title {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.woocommerce-page .page-title,
.woocommerce .page-title,
.woocommerce-page .entry-title,
.woocommerce .entry-title,
.wp-block-woocommerce-checkout .wp-block-post-title,
.wp-block-woocommerce-cart .wp-block-post-title {
  max-width: none;
  color: var(--forest) !important;
  text-shadow: none;
}

.woocommerce .woocommerce-notices-wrapper,
.woocommerce .cart-empty,
.woocommerce .return-to-shop,
.woocommerce form.checkout,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-order,
.lv-order-whatsapp {
  max-width: 980px;
  margin-inline: auto;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  min-height: 50px;
  border: 1px solid rgba(15, 45, 31, 0.18);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 0.75rem 0.85rem;
}

.woocommerce form .form-row label,
.woocommerce table.shop_table th,
.woocommerce-checkout h3 {
  color: var(--forest);
  font-weight: 900;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order,
.woocommerce-order,
.lv-order-whatsapp {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.woocommerce table.shop_table {
  overflow: hidden;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: var(--line);
}

.woocommerce #payment {
  border-radius: var(--radius);
  background: rgba(242, 195, 78, 0.14);
}

.woocommerce #payment #place_order,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 999px;
  color: var(--forest);
  background: var(--sun);
  font-weight: 900;
}

.woocommerce #payment #place_order:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--forest);
  background: #ffd866;
}

.woocommerce #payment #place_order {
  width: 100%;
  min-height: 62px;
  padding: 1rem 1.4rem;
  font-size: 1.08rem;
  box-shadow: 0 16px 34px rgba(59, 42, 31, 0.2);
}

.wc-block-checkout,
.wc-block-cart {
  color: var(--ink);
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-sidebar-layout .wc-block-components-totals-wrapper,
.wc-block-components-order-summary__button-text,
.wp-block-woocommerce-checkout h1,
.wp-block-woocommerce-cart h1 {
  color: var(--forest) !important;
}

.wc-block-checkout__main,
.wc-block-components-sidebar,
.wc-block-cart-items,
.wc-block-components-order-summary,
.wc-block-components-panel,
.wc-block-components-checkout-step {
  border-color: var(--line) !important;
}

.wc-block-components-sidebar {
  border-radius: 16px !important;
  border: 1px solid rgba(15, 45, 31, 0.1) !important;
  background: var(--white) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08) !important;
  padding: 1.5rem !important;
}

.wc-block-components-sidebar::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--clay));
  border-radius: 16px 16px 0 0;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}

.wc-block-components-checkout-order-summary__title {
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  color: var(--forest) !important;
  margin-bottom: 1.5rem !important;
  border-bottom: 2px solid rgba(242, 195, 78, 0.4);
  padding-bottom: 0.5rem;
  display: inline-block !important;
}

.wc-block-components-checkout-order-summary__content {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.wc-block-components-sidebar .wc-block-components-order-summary,
.wc-block-components-sidebar .wc-block-components-panel {
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 !important;
}

.wc-block-components-order-summary-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 1.5rem 1rem !important;
  border-top: none !important;
  border-bottom: 1px dashed rgba(15, 45, 31, 0.1) !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.wc-block-components-order-summary-item::after {
  display: none !important;
}

.wc-block-components-order-summary-item__image {
  float: none !important;
  width: 75px !important;
  height: 75px !important;
  min-width: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06) !important;
  position: relative !important;
  margin: 0 0 1.2rem 0 !important;
  padding: 0 !important;
  background: var(--white) !important;
  border: 1px solid rgba(15, 45, 31, 0.08) !important;
}

.wc-block-components-order-summary-item__image img,
.wc-block-components-order-summary-item__image > * {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 11px !important;
  border: none !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wc-block-components-order-summary-item__quantity {
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border: 2px solid var(--white) !important;
  border-radius: 50% !important;
  color: var(--forest) !important;
  background: var(--sun) !important;
  font-size: 0.9rem !important;
  font-weight: 950 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
  line-height: 1 !important;
}

.wc-block-components-order-summary-item__description {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  overflow: visible !important;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  width: 100% !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: var(--forest) !important;
  line-height: 1.3 !important;
  margin: 0 0 0.5rem 0 !important;
  display: block !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
  text-align: left !important;
}

.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-product-price {
  width: 100% !important;
  font-size: 1.05rem !important;
  color: var(--muted) !important;
  margin: 0 0 0.8rem 0 !important;
  display: flex !important;
  gap: 0.5rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.wc-block-components-order-summary-item__metadata {
  clear: none !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  color: var(--muted) !important;
  padding: 0 !important;
  background: transparent !important;
  margin: 0 0 1.2rem 0 !important;
  border: none !important;
  text-align: left !important;
}

.lv-price-tag {
  display: inline-block !important;
  background: rgba(15, 45, 31, 0.08) !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  color: var(--forest) !important;
  margin-top: 0.4rem !important;
}

.wc-block-components-product-metadata__item dt,
.wc-block-components-product-details__name {
  display: none !important;
}

.wc-block-components-order-summary-item__prices,
.wc-block-components-order-summary-item__total-price {
  clear: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  font-size: 1.6rem !important;
  font-weight: 950 !important;
  color: var(--forest) !important;
  text-align: right !important;
  margin-top: 0 !important;
  padding-top: 1.2rem !important;
  border-top: 1px dashed rgba(15, 45, 31, 0.08) !important;
  width: 100% !important;
}

.wc-block-components-sale-badge {
  display: none !important;
}

.wc-block-components-panel__button,
.wc-block-components-totals-coupon__button,
.wc-block-components-panel__button:hover,
.wc-block-components-panel__button:focus,
.wc-block-components-totals-coupon__button:hover,
.wc-block-components-totals-coupon__button:focus {
  color: var(--forest) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  padding: 0 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.wc-block-components-totals-coupon {
  margin: 0 !important;
  padding: 1.2rem 1rem !important;
  border-top: 1px solid rgba(15, 45, 31, 0.08) !important;
  border-bottom: 1px solid rgba(15, 45, 31, 0.08) !important;
  background: transparent !important;
}

.wc-block-components-totals-wrapper {
  padding: 1.5rem 0 0 0 !important;
  border-top: none !important;
}

.wc-block-components-sidebar .wc-block-components-totals-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 1.05rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
}

.wc-block-components-sidebar .wc-block-components-totals-item__label {
  color: var(--muted) !important;
  font-weight: 600;
}

.wc-block-components-sidebar .wc-block-components-totals-item__value {
  color: var(--forest) !important;
  font-weight: 800;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item {
  background: linear-gradient(135deg, rgba(242, 195, 78, 0.15), rgba(79, 143, 76, 0.05)) !important;
  border: 1px dashed rgba(242, 195, 78, 0.5) !important;
  border-radius: 12px;
  padding: 2rem 1.5rem !important;
  margin: 0.5rem 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 1.15rem !important;
  color: var(--muted) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem !important;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 2.8rem !important;
  font-family: var(--font-display);
  color: var(--forest) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

@media (max-width: 480px) {
  .wc-block-components-sidebar {
    padding: 1.2rem !important;
  }
  .wc-block-components-sidebar::before {
    margin: -1.2rem -1.2rem 1.2rem -1.2rem;
  }
  .wc-block-components-order-summary-item {
    gap: 1rem !important;
  }
  .wc-block-components-order-summary-item__image {
    width: 65px !important;
    min-width: 65px !important;
    height: 65px !important;
  }
  .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 2.3rem !important;
  }
}

.wc-block-components-checkout-step__description,
.wc-block-components-validation-error,
.wc-block-components-totals-item__description,
.wc-block-components-checkbox__label,
.wc-block-components-text-input label,
.wc-block-components-address-form__address_2-toggle,
.wc-block-checkout__terms {
  color: var(--muted) !important;
}

.wc-block-components-text-input input,
.wc-block-components-select .wc-block-components-select__container,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"] {
  min-height: 54px;
  border: 1px solid rgba(15, 45, 31, 0.22) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--ink) !important;
  background: var(--white) !important;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wp-block-button__link.add_to_cart_button {
  min-height: 62px !important;
  border-radius: 999px !important;
  color: var(--forest) !important;
  background: var(--sun) !important;
  box-shadow: 0 18px 38px rgba(59, 42, 31, 0.22);
  font-size: 1.08rem !important;
  font-weight: 950 !important;
}

.wc-block-components-button .wc-block-components-button__text,
.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  color: var(--forest) !important;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  color: var(--forest) !important;
  background: #ffd866 !important;
}

.lv-order-whatsapp {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5.5rem;
  color: rgba(255, 253, 248, 0.78);
  background:
    linear-gradient(135deg, #0a1f15, var(--forest) 58%, #243221);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 253, 248, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.footer-shell p {
  max-width: 640px;
  margin-bottom: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1rem;
}

.footer-columns div {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
}

.footer-columns strong {
  color: var(--white);
}

.footer-columns a,
.footer-columns span {
  color: rgba(255, 253, 248, 0.76);
  text-decoration: none;
}

.footer-actions {
  display: grid;
  gap: 0.7rem;
}

.footer-actions a {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  font-size: 0.9rem;
}

.lv-product-thumb {
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.lv-checkout-product {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 42px rgba(18, 140, 76, 0.38);
}

.floating-cta svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-cta:hover {
  background: #1fbd5a;
  box-shadow: 0 22px 48px rgba(18, 140, 76, 0.46);
}

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

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.8%, -1%, 0);
  }
}

@keyframes floatSeed {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.18);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(143, 240, 113, 0.62);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(143, 240, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(143, 240, 113, 0);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06) rotate(6deg);
    opacity: 0.95;
  }
}

@keyframes wormWiggle {
  0%,
  100% {
    border-radius: 999px 70% 999px 60%;
    translate: 0 0;
  }
  50% {
    border-radius: 60% 999px 70% 999px;
    translate: 2px -1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1120px) {
  .hero-shell,
  .order-layout,
  .process-layout,
  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 560px;
  }

  .hero-metric-left {
    top: 13.2rem;
    right: 1rem;
    left: auto;
    bottom: auto;
  }

  .hero-metric-right {
    right: 1rem;
    top: 19.9rem;
    bottom: auto;
  }

  .order-card {
    position: static;
  }

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

@media (max-width: 920px) {
  .header-shell {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    position: relative;
    top: 0;
    right: 0;
    z-index: 120;
    flex: 0 0 auto;
    color: var(--forest);
    background: var(--sun);
    border-color: rgba(15, 45, 31, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .nav-toggle span:not(.screen-reader-text) {
    display: none;
  }

  .nav-toggle span:not(.screen-reader-text):nth-child(2) {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
    margin: 0;
    box-shadow: 0 -5px 0 0 currentColor, 0 5px 0 0 currentColor;
  }

  .main-navigation {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-bottom: 2px solid var(--forest);
    border-radius: 0 0 1.5rem 1.5rem;
    color: var(--forest);
    background-color: var(--white) !important;
    background: var(--white) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-125%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .main-navigation.is-open {
    transform: translateY(0);
  }

  .main-navigation a {
    width: 100%;
    padding: 0.88rem;
    border-radius: var(--radius);
  }

  .header-cta {
    display: none;
  }

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

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

  .footer-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .header-shell,
  .hero-shell,
  .section,
  .footer-shell,
  .proof-ribbon,
  .final-cta {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header {
    top: 0.5rem;
    width: min(calc(100% - 1rem), 1260px);
    margin-top: 0.5rem;
    margin-bottom: -5.4rem;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    right: 0;
    z-index: 120;
    color: var(--forest);
    background: var(--sun);
  }

  .hero-section {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 12rem;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(15, 45, 31, 0.94) 0%, rgba(15, 45, 31, 0.72) 50%, rgba(15, 45, 31, 0.92) 100%);
  }

  .hero-photo {
    object-position: 64% center;
  }

  .hero-shell {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-section .eyebrow {
    margin-bottom: 0.5rem;
  }

  .hero-lead,
  .section-heading p,
  .order-story p,
  .seo-copy p,
  .delivery-panel p,
  .final-cta p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .live-badge,
  .product-orbit {
    display: none;
  }

  .hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
    z-index: 10;
  }

  .hero-metric {
    position: static;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
    background: rgba(15, 45, 31, 0.45);
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
  }

  .hero-metric strong {
    font-size: 1.4rem;
    color: var(--sun);
  }

  .hero-metric span {
    font-size: 0.72rem;
    line-height: 1.2;
    opacity: 0.9;
  }

  .hero-metric-left,
  .hero-metric-right {
    position: static;
  }

  .hero-actions,
  .hero-actions a,
  .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    width: 100%;
    text-align: center;
  }

  .section,
  .process-section,
  .order-section {
    padding: 3.7rem 0;
  }

  .benefit-grid,
  .care-grid,
  .pricing-grid,
  .timeline,
  .proof-ribbon,
  .mini-proof,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 1rem;
    bottom: 1rem;
    left: 22px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .order-image-stack {
    grid-template-columns: 1fr;
  }

  .order-image-stack img:last-child {
    transform: none;
  }

  .mini-proof {
    margin-top: 1rem;
  }

  .delivery-panel,
  .seo-copy,
  .final-cta {
    padding: 1.25rem;
  }

  .floating-cta {
    right: 0.65rem;
    bottom: 0.65rem;
  }
}

@media (max-width: 430px) {
  .brand-text span {
    display: none;
  }

  .trust-strip span {
    flex-basis: 100%;
  }

  .proof-ribbon span {
    min-height: 44px;
  }
}

/* --- GENERIC PAGES (T&C) --- */
.page-section {
  padding: 8rem 1rem 4rem;
  background: var(--paper);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(15, 45, 31, 0.08);
}

body.woocommerce-checkout .page-section,
body.woocommerce-cart .page-section {
  background: transparent !important;
  padding: 2rem 1rem 4rem !important;
}

body.woocommerce-checkout .page-content,
body.woocommerce-cart .page-content {
  max-width: var(--container) !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title {
  display: none !important;
}

.page-content .page-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--forest);
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--sun);
  padding-bottom: 1rem;
}

.page-content h2 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--forest);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .page-section {
    padding: 6rem 1rem 3rem;
  }
  .page-content {
    padding: 2.5rem 1.5rem;
  }
  .page-content .page-title {
    font-size: 2.2rem;
  }
}



