:root {
  --ink: #202815;
  --forest: #2e3817;
  --leaf: #709555;
  --fresh: #2e8e3b;
  --sun: #fff42f;
  --cream: #fbfaef;
  --paper: #ffffff;
  --muted: #65705f;
  --line: #e4e6d5;
  --orange: #ff5127;
  --pink: #e91d63;
  --shadow: 0 22px 55px rgba(32, 40, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Rubik", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 239, 0.93);
  border-bottom: 1px solid rgba(46, 56, 23, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--forest);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--forest);
}

.cart-button,
.site-footer button,
.btn,
.product-bottom button,
.location-card a,
.channel-row a,
.floating-cart {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cart-button,
.site-footer button {
  padding: 10px 18px;
  background: var(--forest);
  color: var(--sun);
}

.cart-button span,
.floating-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--forest);
  font-size: 0.82rem;
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  padding: clamp(40px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(115deg, rgba(255, 244, 47, 0.16), transparent 42%),
    linear-gradient(180deg, #fbfaef 0%, #eef3df 100%);
}

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

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--fresh);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
  color: var(--forest);
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: #425033;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.btn {
  padding: 13px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--forest);
  color: var(--sun);
  box-shadow: 0 12px 24px rgba(46, 56, 23, 0.22);
}

.btn-secondary {
  border-color: rgba(46, 56, 23, 0.22);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.6);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 8px 13px;
  border: 1px solid rgba(46, 56, 23, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(86%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.55;
  transform: translate(22px, 24px);
}

.hero-visual img {
  position: relative;
  width: min(86vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.section-kicker),
.benefits-copy p,
.contact p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 1.04rem;
}

.sales-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--forest);
  color: var(--paper);
}

.sales-strip article {
  max-width: 360px;
}

.sales-strip strong {
  display: block;
  color: var(--sun);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.sales-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.channel-row a {
  padding: 10px 16px;
  color: var(--forest);
  background: var(--sun);
}

.channel-row .disabled-link {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.category-grid,
.product-grid,
.step-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.product-card,
.benefit-list article,
.step-grid article,
.location-card,
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(32, 40, 21, 0.07);
}

.category-card {
  min-height: 210px;
  padding: 24px;
}

.category-card span,
.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--forest);
  font-weight: 900;
}

.category-card p,
.product-info p,
.benefit-list p,
.step-grid p,
.location-card p,
.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.product-section {
  background: #eef3df;
}

.product-card {
  overflow: hidden;
}

.product-image {
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.product-image.tea {
  background-image: linear-gradient(rgba(46, 56, 23, 0.1), rgba(46, 56, 23, 0.1)), url("https://images.unsplash.com/photo-1544787219-7f47ccb76574?auto=format&fit=crop&w=900&q=80");
}

.product-image.capsules {
  background-image: linear-gradient(rgba(46, 56, 23, 0.1), rgba(46, 56, 23, 0.1)), url("https://images.unsplash.com/photo-1471864190281-a93a3070b6de?auto=format&fit=crop&w=900&q=80");
}

.product-image.vitamins {
  background-image: linear-gradient(rgba(46, 56, 23, 0.1), rgba(46, 56, 23, 0.1)), url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?auto=format&fit=crop&w=900&q=80");
}

.product-image.herbs {
  background-image: linear-gradient(rgba(46, 56, 23, 0.1), rgba(46, 56, 23, 0.1)), url("https://images.unsplash.com/photo-1515586000433-45406d8e6662?auto=format&fit=crop&w=900&q=80");
}

.product-info {
  padding: 22px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.product-bottom strong {
  color: var(--forest);
  font-size: 1.28rem;
}

.product-bottom button {
  padding: 9px 14px;
  background: var(--forest);
  color: var(--sun);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list article {
  padding: 24px;
}

.steps {
  background: var(--forest);
}

.steps h2,
.steps h3,
.steps .section-kicker {
  color: var(--paper);
}

.step-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.step-grid p {
  color: rgba(255, 255, 255, 0.76);
}

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

.location-card {
  padding: 28px;
}

.location-card a {
  margin-top: 18px;
  padding: 10px 16px;
  background: var(--sun);
  color: var(--forest);
}

.faq {
  background: #f6f5e9;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
}

.channels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background:
    linear-gradient(135deg, rgba(255, 244, 47, 0.32), transparent 38%),
    var(--leaf);
}

.channels h2,
.channels .section-kicker,
.channels p {
  color: var(--paper);
}

.channels .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 84px) 92px;
  background: var(--forest);
  color: var(--paper);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--sun);
  font-weight: 900;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(20, 28, 14, 0.52);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(100vw, 430px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -24px 0 55px rgba(20, 28, 14, 0.24);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.cart-header h2 {
  font-size: 2rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--sun);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.empty-cart {
  margin: 0;
  padding: 20px;
  border: 1px dashed rgba(46, 56, 23, 0.25);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.cart-item h3 {
  font-size: 1rem;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item strong {
  color: var(--forest);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f7ee;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--sun);
  cursor: pointer;
  font-size: 1.1rem;
}

.quantity-control span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.remove-item {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
}

.cart-summary {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--forest);
  font-weight: 900;
}

.cart-total strong {
  font-size: 1.35rem;
}

.cart-summary p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.checkout-link {
  width: 100%;
}

.checkout-link.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  padding: 12px 18px;
  background: var(--forest);
  color: var(--sun);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(72vw, 360px);
  }

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

  .benefits,
  .channels,
  .sales-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .channel-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .hero,
  .section {
    padding-inline: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .step-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 210px;
  }

  .channels {
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
