:root {
  --ink: #12231c;
  --muted: #66736d;
  --cream: #f8f6ef;
  --paper: #fffefa;
  --green: #1e6a4b;
  --green-dark: #104631;
  --lime: #d9ee74;
  --yellow: #f4c84a;
  --line: #dfe4dc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}
.brand strong { color: var(--green); }
.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}
.brand-mark span {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  border-radius: 50%;
}
.desktop-nav { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
.desktop-nav a:hover { color: var(--green); }
.header-cta, .hero-search button {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: white;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}
.header-cta:hover, .hero-search button:hover { background: var(--green-dark); }
.hero-search button:disabled { opacity: .65; cursor: wait; }

.hero {
  position: relative;
  min-height: 610px;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 238, 116, .28), transparent 27%),
    linear-gradient(135deg, #f8f5ea 0%, #fbfaf5 54%, #edf4e9 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -190px;
  border: 1px solid rgba(30, 106, 75, .18);
  border-radius: 50%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.eyebrow i {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--yellow);
}
.hero h1 {
  max-width: 650px;
  margin: 20px 0;
  font: 800 clamp(44px, 5vw, 68px)/1.03 "Manrope", sans-serif;
  letter-spacing: -3.6px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-copy > p {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-search {
  max-width: 600px;
  margin-top: 31px;
  padding: 7px 7px 7px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid #e4e4dc;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(29, 56, 43, .1);
}
.hero-search svg {
  width: 21px;
  fill: none;
  stroke: #819087;
  stroke-width: 1.7;
  stroke-linecap: round;
}
.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.trust-line {
  margin-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  color: #77827c;
  font-size: 10px;
  text-transform: uppercase;
}
.trust-line b { color: #526059; font-size: 11px; }

.hero-visual { position: relative; min-height: 440px; }
.sun-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  top: 30px;
  left: 50%;
  border: 1px solid rgba(30, 106, 75, .18);
  border-radius: 50%;
  transform: translateX(-50%);
}
.sun-orbit::before {
  content: "";
  position: absolute;
  inset: 45px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .43;
}
.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(32, 60, 46, .16);
}
.card-main {
  width: 270px;
  height: 345px;
  left: 50%;
  top: 54px;
  padding: 18px;
  transform: translateX(-50%) rotate(-2deg);
}
.card-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.card-main > div:last-child { display: flex; flex-direction: column; gap: 4px; }
.card-main small { color: var(--green); font-weight: 700; }
.card-main strong { font: 700 18px/1.25 "Manrope"; }
.product-illustration { position: relative; }
.headphones {
  height: 210px;
  margin: 8px 0 2px;
}
.headphones::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 130px;
  left: 50%;
  top: 30px;
  border: 22px solid var(--green-dark);
  border-bottom-color: transparent;
  border-radius: 68px 68px 40px 40px;
  transform: translateX(-50%) rotate(-8deg);
}
.headphones::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 73px;
  left: 45px;
  top: 112px;
  border-radius: 17px;
  background: var(--yellow);
  box-shadow: 114px 4px 0 var(--yellow);
  transform: rotate(-8deg);
}
.mini-card { width: 145px; height: 155px; padding: 12px; }
.mini-card span { font-size: 12px; font-weight: 800; }
.card-top { right: 0; top: 8px; transform: rotate(6deg); }
.card-bottom { left: -5px; bottom: 0; transform: rotate(-7deg); }
.sneaker, .appliance { height: 108px; border-radius: 12px; background: #eef5dd; }
.sneaker::after {
  content: "";
  position: absolute;
  width: 83px;
  height: 38px;
  left: 17px;
  top: 38px;
  border-radius: 70% 20% 40% 30%;
  background: var(--green);
  border-bottom: 8px solid var(--yellow);
  transform: rotate(-8deg);
}
.appliance { background: #f9edca; }
.appliance::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 78px;
  left: 34px;
  top: 14px;
  border-radius: 12px 12px 24px 24px;
  background: var(--green-dark);
  box-shadow: inset 0 27px 0 #dce97b;
}
.rating-badge {
  position: absolute;
  right: 20px;
  bottom: 28px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  background: var(--green-dark);
  color: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(16, 70, 49, .23);
}
.rating-badge strong { font-size: 19px; color: var(--lime); }
.rating-badge span { font-size: 9px; }

.benefits {
  width: min(1180px, calc(100% - 48px));
  margin: -35px auto 0;
  position: relative;
  z-index: 2;
  padding: 25px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid #e4e7df;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(25, 54, 40, .08);
}
.benefits article { padding: 5px 20px; display: flex; gap: 14px; align-items: center; }
.benefits article + article { border-left: 1px solid var(--line); }
.benefit-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #eff6dd;
  border-radius: 50%;
  font-weight: 800;
}
.benefits div { display: flex; flex-direction: column; }
.benefits strong { font-size: 14px; }
.benefits small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.catalog-section, .how-section {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0;
}
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-heading h2, .stores-section h2 {
  margin: 12px 0 0;
  font: 800 clamp(30px, 4vw, 45px)/1.1 "Manrope";
  letter-spacing: -2px;
}
.section-heading > p { max-width: 390px; color: var(--muted); line-height: 1.6; }
.filters { margin: 38px 0 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.filter-button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: #526059;
  background: white;
  cursor: pointer;
  font-weight: 600;
}
.filter-button:hover, .filter-button.active { color: white; background: var(--green); border-color: var(--green); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(25, 54, 40, .1); }
.product-image {
  height: 205px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1f5e5, #faf5e6);
  font-size: 66px;
}
.product-image img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-content { padding: 21px; }
.product-meta { display: flex; justify-content: space-between; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.product-content h3 { min-height: 50px; margin: 11px 0 7px; font: 700 18px/1.35 "Manrope"; }
.product-content p { min-height: 43px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-row { min-height: 52px; margin-top: 13px; display: flex; align-items: baseline; gap: 10px; }
.price-row strong { color: var(--ink); font: 800 21px "Manrope"; }
.price-row del { color: #8b9690; font-size: 12px; }
.product-action {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  display: block;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}
.buy-button { cursor: pointer; background: white; }
.buy-button:disabled { opacity: .65; cursor: wait; }
.product-action:hover { color: white; background: var(--green); }
.product-action.disabled { opacity: .55; cursor: not-allowed; }
.empty-state { padding: 35px; text-align: center; color: var(--muted); background: var(--cream); border-radius: 12px; }

.stores-section {
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
  color: white;
  background: var(--green-dark);
}
.eyebrow.light { color: var(--lime); }
.stores-section p { max-width: 480px; color: #b9c9c0; line-height: 1.7; }
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.store-grid span {
  min-height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  color: white;
  font: 700 18px "Manrope";
  text-transform: capitalize;
}
.store-grid span:last-child { grid-column: 1 / -1; }
.steps { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.steps article { padding-top: 25px; border-top: 2px solid var(--line); }
.steps b { color: var(--green); font-size: 13px; }
.steps h3 { margin: 18px 0 8px; font: 700 20px "Manrope"; }
.steps p { color: var(--muted); line-height: 1.6; }

footer {
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .6fr 1.5fr auto;
  gap: 40px;
  align-items: center;
  color: #aebdb5;
  background: #0b2f21;
  font-size: 11px;
  line-height: 1.6;
}
.footer-brand { color: white; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { min-height: 430px; width: min(520px, 100%); margin: auto; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article + article { border-left: 0; border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stores-section { grid-template-columns: 1fr; gap: 40px; }
  footer { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 32px); height: 72px; }
  .header-cta { display: none; }
  .hero { padding: 55px 20px 75px; }
  .hero h1 { font-size: 43px; letter-spacing: -2.6px; }
  .hero-search button { padding-inline: 14px; }
  .trust-line { gap: 12px; }
  .hero-visual { transform: scale(.87); margin: -20px 0 -40px; width: 100%; }
  .card-top { right: -20px; }
  .card-bottom { left: -20px; }
  .benefits { width: calc(100% - 32px); padding: 18px; }
  .catalog-section, .how-section { width: calc(100% - 32px); padding: 80px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .stores-section { padding: 75px 20px; }
  .store-grid { grid-template-columns: 1fr; }
  .store-grid span:last-child { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
}
