:root {
  --leaf: #3f7444;
  --leaf-dark: #24472d;
  --mint: #edf7ee;
  --sage: #dbe9d6;
  --sun: #f5b53f;
  --tomato: #d94a35;
  --ink: #17211b;
  --muted: #66736a;
  --line: #dbe2dc;
  --paper: #ffffff;
  --soft: #f7f8f3;
  --shadow: 0 20px 60px rgba(36, 71, 45, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 86px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

body.is-locked {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 86px;
}

#accueil {
  scroll-margin-top: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 226, 220, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 138px;
  min-width: 118px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--leaf-dark);
}

.header-buy {
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(245, 181, 63, 0.78);
  border-radius: 8px;
  padding: 5px 12px;
  color: #16231a;
  background: linear-gradient(135deg, #fff6d8, #ffd56b);
  box-shadow: 0 8px 22px rgba(245, 181, 63, 0.18);
  cursor: pointer;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  animation: offerNudge 5.5s ease-in-out infinite;
}

.header-buy span {
  color: #9c2f21;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.header-buy strong {
  font-size: 0.94rem;
  line-height: 1;
}

.header-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(245, 181, 63, 0.24);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: var(--paper);
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--tomato);
  font-size: 0.72rem;
  font-weight: 800;
}

.cart-button.is-pulsing {
  animation: cartPulse 520ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 70px));
  align-items: end;
  overflow: hidden;
  background: #101a14;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 28, 17, 0.94), rgba(13, 28, 17, 0.66) 46%, rgba(13, 28, 17, 0.24)),
    linear-gradient(180deg, rgba(13, 28, 17, 0.18), rgba(13, 28, 17, 0.48));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 82px) clamp(16px, 2vw, 28px);
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions,
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #122018;
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(245, 181, 63, 0.26);
}

.button.primary:hover {
  box-shadow: 0 16px 34px rgba(245, 181, 63, 0.34);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost {
  color: var(--leaf-dark);
  border-color: rgba(63, 116, 68, 0.22);
  background: white;
}

.button.dark {
  color: white;
  background: var(--leaf-dark);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 20px;
}

.hero-proof span {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-proof span + span::before {
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.55);
  content: "·";
}

.offer-ribbon,
.purchase-band,
.how-it-works,
.benefits,
.lifestyle-band,
.specs-band,
.guarantees,
.reviews,
.faq,
.final-cta {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px);
}

.offer-ribbon {
  display: grid;
  grid-template-columns: auto minmax(0, max-content);
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #213125;
  background:
    linear-gradient(90deg, rgba(245, 181, 63, 0.28), rgba(255, 247, 223, 0.96) 45%, rgba(237, 247, 238, 0.95)),
    #fff7df;
  border-top: 1px solid rgba(245, 181, 63, 0.42);
  border-bottom: 1px solid rgba(245, 181, 63, 0.45);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
  text-align: left;
}

.offer-badge {
  display: inline-grid;
  width: max-content;
  min-width: 0;
  min-height: 38px;
  place-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(217, 74, 53, 0.3);
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #d94a35, #b83a27);
  box-shadow: 0 10px 24px rgba(217, 74, 53, 0.2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-copy {
  display: grid;
  min-width: 0;
  max-width: 780px;
  gap: 6px;
}

.offer-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.offer-price-line strong {
  color: var(--leaf-dark);
  font-size: clamp(1.34rem, 2.7vw, 2rem);
  line-height: 1;
}

.old-price {
  color: rgba(33, 49, 37, 0.5);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.saving {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #9c2f21;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
}

.offer-ribbon p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.offer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.offer-perks span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(63, 116, 68, 0.16);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.purchase-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  background: var(--paper);
}

.gallery,
.buy-panel,
.feature-grid article,
.package,
.review-grid article,
.faq-list details,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.gallery {
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 68px rgba(36, 71, 45, 0.18);
}

.main-image {
  aspect-ratio: 1.22;
  background: #f8faf7;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 220ms ease;
}

.main-image:hover img {
  transform: scale(1.015);
}

.main-image img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 12px;
  background: #fbfcfa;
}

.thumb {
  overflow: hidden;
  aspect-ratio: 1.22;
  border: 2px solid transparent;
  border-radius: 7px;
  padding: 0;
  background: #f8faf7;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

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

.thumb.is-active {
  border-color: var(--leaf);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.gallery-details div {
  display: grid;
  gap: 5px;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  background: #fbfcfa;
}

.gallery-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-details strong {
  color: var(--leaf-dark);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.16;
}

.buy-panel {
  position: sticky;
  top: 86px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 10px 34px rgba(23, 33, 27, 0.08);
}

.stock {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 0.86rem;
  font-weight: 800;
}

.buy-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.rating,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.rating span,
.stars {
  color: var(--sun);
}

.rating a {
  color: var(--leaf);
  text-decoration: underline;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin: 18px 0 4px;
}

.current-price {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.regular-price {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: line-through;
}

.price-note,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.launch-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(245, 181, 63, 0.55);
  border-radius: 8px;
  padding: 12px;
  color: #3b2a08;
  background: #fff7df;
}

.launch-offer span {
  font-weight: 900;
}

.launch-offer strong {
  font-size: 0.92rem;
}

.progress {
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #efe5c8;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), var(--tomato));
  background-size: 180% 100%;
  animation: progressGlow 4s ease-in-out infinite;
}

.offer-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
}

.offer-pills span {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(245, 181, 63, 0.5);
  border-radius: 8px;
  padding: 12px;
  color: #3b2a08;
  background: #fff7df;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.offer-pills small {
  color: #775d1b;
  font-size: 0.74rem;
  font-weight: 800;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.quick-list li {
  position: relative;
  padding-left: 24px;
  color: #344139;
  line-height: 1.45;
}

.quick-list li::before {
  position: absolute;
  left: 0;
  color: var(--leaf);
  content: "✓";
  font-weight: 900;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.stepper {
  display: grid;
  grid-template-columns: 42px 48px 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stepper button {
  border: 0;
  background: var(--soft);
  cursor: pointer;
  font-size: 1.2rem;
}

.stepper output {
  display: grid;
  place-items: center;
  background: white;
  font-weight: 800;
}

.buy-actions .button {
  flex: 1 1 180px;
}

.buy-actions .button:only-child {
  flex-basis: 100%;
}

.how-it-works {
  background: var(--soft);
}

.how-it-works .section-heading p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.how-it-works .eyebrow,
.guarantees .eyebrow {
  color: var(--leaf);
}

.step-grid,
.guarantee-grid {
  display: grid;
  gap: 16px;
}

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

.step-grid article,
.guarantee-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
}

.step-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--leaf-dark);
  font-weight: 900;
}

.step-grid p,
.guarantee-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.plant-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--leaf-dark);
  background: #f8faf7;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.plant-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(63, 116, 68, 0.34);
}

.plant-tabs button.is-active {
  color: white;
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.trust-row span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(63, 116, 68, 0.15);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--leaf-dark);
  background: #f8faf7;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading.compact {
  max-width: 680px;
}

.benefits {
  background: var(--soft);
}

.benefits .eyebrow,
.lifestyle-band .eyebrow,
.specs-band .eyebrow,
.reviews .eyebrow,
.faq .eyebrow,
.final-cta .eyebrow {
  color: var(--leaf);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 260px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-grid article:hover,
.review-grid article:hover,
.guarantee-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 116, 68, 0.24);
  box-shadow: 0 16px 34px rgba(36, 71, 45, 0.08);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  color: var(--leaf-dark);
  background: linear-gradient(135deg, #e7f2df, #f8faf7);
  box-shadow: inset 0 0 0 1px rgba(63, 116, 68, 0.18);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-grid p,
.review-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.lifestyle-band {
  background: var(--paper);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lifestyle-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.lifestyle-grid img {
  width: 100%;
  height: clamp(150px, 16vw, 210px);
  object-fit: cover;
  transition: transform 360ms ease;
}

.lifestyle-grid figure:hover img {
  transform: scale(1.035);
}

.lifestyle-grid figcaption {
  padding: 12px 14px;
  color: var(--leaf-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.plant-showcase {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px);
  background: white;
}

.plant-showcase .eyebrow {
  color: var(--leaf);
}

.seed-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -14px 0 22px;
}

.seed-card article {
  border: 1px solid rgba(63, 116, 68, 0.22);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: #f8faf7;
}

.seed-card .eyebrow {
  margin-bottom: 18px;
}

.seed-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.seed-card article p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plant-simulator {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plant-intro,
.plant-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #f8faf7;
}

.plant-intro h3,
.plant-result h3 {
  margin-bottom: 10px;
}

.plant-intro p,
.simulator-note {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plant-tabs {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.plant-result {
  background: white;
}

.plant-result > span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plant-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, 132px);
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}

.plant-visuals img {
  width: 132px;
  height: 132px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.plant-visuals img:hover {
  transform: translateY(-2px) scale(1.03);
}

.plant-result dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}

.plant-result dl div {
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
}

.plant-result dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.plant-result dd {
  margin: 4px 0 0;
  color: var(--leaf-dark);
  font-weight: 900;
}

.plant-result p {
  color: var(--muted);
  line-height: 1.6;
}

.simulator-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.plant-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.plant-notes article {
  border: 1px solid rgba(63, 116, 68, 0.18);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 22px);
  background: linear-gradient(180deg, #ffffff, #f8faf7);
}

.plant-notes h3 {
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 1.05rem;
}

.plant-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.specs-band {
  background: #fdfdfb;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.5fr);
  gap: 22px;
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table span {
  color: var(--muted);
}

.package {
  padding: 24px;
  background: var(--mint);
}

.package ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #344139;
}

.package-note {
  margin: 18px 0 0;
  border-radius: 8px;
  padding: 12px;
  color: var(--leaf-dark);
  background: white;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.guarantees {
  background: var(--soft);
}

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

.guarantee-grid article {
  min-height: 190px;
}

.reviews {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-grid article {
  padding: 24px;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  align-items: start;
}

.faq-list details {
  padding: 15px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: white;
}

.final-cta h2 {
  max-width: 750px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 26, 20, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1080px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  background: white;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox .icon-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  transform: translateY(18px);
  border-radius: 8px;
  padding: 14px 16px;
  color: white;
  background: var(--leaf-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 850;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes cartPulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12);
  }
}

@keyframes offerNudge {
  0%,
  86%,
  100% {
    transform: translateY(0);
  }

  90% {
    transform: translateY(-2px);
  }

  94% {
    transform: translateY(0);
  }
}

@keyframes progressGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: end;
  background: rgba(17, 26, 20, 0.48);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  width: min(440px, 100%);
  height: 100%;
  overflow: auto;
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--shadow);
}

.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head h2 {
  margin: 0;
  font-size: 1.7rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  margin: 28px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-line[hidden],
.cart-empty[hidden] {
  display: none;
}

.cart-empty {
  margin: 28px 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: var(--soft);
}

.cart-line img {
  width: 82px;
  height: 70px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8faf7;
}

.cart-line > div {
  display: grid;
  gap: 6px;
}

.cart-line span {
  color: var(--muted);
}

.cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--leaf);
  font-weight: 800;
}

.gift-choice {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  border: 1px solid rgba(245, 181, 63, 0.62);
  border-radius: 8px;
  padding: 16px;
  background: #fff7df;
}

.gift-choice[hidden] {
  display: none;
}

.gift-badge {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  color: #3b2a08;
  background: #ffe4a3;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-choice strong {
  display: block;
  color: var(--ink);
}

.gift-choice p {
  margin: 8px 0 0;
  color: #66532a;
  line-height: 1.5;
}

.gift-options {
  display: grid;
}

.gift-options button {
  min-height: 40px;
  border: 1px solid rgba(63, 116, 68, 0.25);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--leaf-dark);
  background: white;
  cursor: pointer;
  font-weight: 850;
}

.gift-options button:hover {
  color: white;
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
}

.cart-controls {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  gap: 10px 12px;
  margin-top: 10px;
}

.stepper.compact {
  grid-template-columns: 38px 44px 38px;
  height: 40px;
  background: white;
}

.stepper.compact button {
  color: var(--leaf-dark);
  background: #f8faf7;
  font-weight: 900;
}

.stepper.compact output {
  min-width: 44px;
}

.remove-button {
  grid-column: 1 / -1;
  width: max-content;
  border: 0;
  padding: 4px 0;
  color: var(--tomato);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.cart-summary[hidden] {
  display: none;
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(63, 116, 68, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: #f8faf7;
}

.cart-summary div[hidden] {
  display: none;
}

.cart-summary span {
  color: var(--muted);
}

.cart-summary strong {
  display: grid;
  justify-items: end;
  color: var(--leaf-dark);
  line-height: 1.15;
  white-space: nowrap;
}

.cart-summary small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.cart-summary s,
.cart-before-total s {
  color: var(--muted);
  text-decoration-thickness: 2px;
}

.cart-before-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 10px;
  color: var(--muted);
}

.cart-before-total[hidden] {
  display: none;
}

.cart-total {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: white;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 54px);
  color: white;
  background: #121915;
}

.site-footer p {
  max-width: 530px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-logo {
  width: 150px;
  max-width: 45vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.legal-main {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 54px);
  background: var(--soft);
}

.legal-hero {
  max-width: 860px;
  margin: 0 auto clamp(28px, 4vw, 42px);
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: none;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.legal-section {
  max-width: 860px;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: white;
}

.legal-section h2 {
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.legal-section h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-section p:last-child,
.legal-bullets {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 14px;
}

.legal-list dt {
  color: var(--muted);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.legal-grid article,
.legal-note {
  border: 1px solid rgba(63, 116, 68, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: #f8faf7;
}

.legal-bullets {
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100% - 36px));
  border: 1px solid rgba(63, 116, 68, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: var(--leaf-dark);
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 980px) {
  .purchase-band,
  .details-layout,
  .plant-simulator {
    grid-template-columns: 1fr;
  }

  .seed-card {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    position: static;
  }

  .feature-grid,
  .lifestyle-grid,
  .step-grid,
  .guarantee-grid,
  .plant-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .header-buy {
    margin-left: auto;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 40px;
    padding: 4px 10px;
    text-align: center;
  }

  .header-buy span {
    font-size: 0.64rem;
  }

  .header-buy strong {
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    align-items: center;
    padding: 56px 0 42px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(13, 28, 17, 0.34), rgba(13, 28, 17, 0.92)),
      linear-gradient(90deg, rgba(13, 28, 17, 0.34), rgba(13, 28, 17, 0.18));
  }

  .hero-media img {
    object-position: 80% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .offer-ribbon {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    text-align: left;
  }

  .offer-copy {
    gap: 7px;
  }

  .offer-badge {
    width: max-content;
    min-width: 0;
    min-height: 0;
    padding: 8px 10px;
    font-size: 0.64rem;
  }

  .offer-price-line {
    gap: 6px 8px;
  }

  .offer-perks span {
    font-size: 0.74rem;
  }

  .feature-grid,
  .lifestyle-grid,
  .step-grid,
  .guarantee-grid,
  .plant-notes,
  .faq-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .plant-result dl {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .step-grid article,
  .guarantee-grid article {
    min-height: auto;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .legal-list div,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .thumbs {
    gap: 7px;
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(82px, 1fr));
  }

  .gallery-details {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-details div {
    min-height: 74px;
    padding: 13px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list details {
    padding: 13px 15px;
  }

  .faq-list summary {
    font-size: 0.94rem;
  }

}
