:root {
  --ink: #1f2a24;
  --muted: #657268;
  --line: #d9dfd7;
  --paper: #fbfbf7;
  --white: #ffffff;
  --sage: #43913D;
  --sage-dark: #32702e;
  --leaf: #436b2b;
  --sun: #d6bc65;
  --clay: #a45f46;
  --shadow: 0 18px 55px rgba(31, 42, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.cart-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 0.9rem;
}

.skip-link:focus {
  top: 1rem;
}

.notice {
  display: block;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage), #417586);
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  padding: 0.55rem 1rem;
  text-align: center;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 247, 0.96);
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: contain;
  opacity: 0.88;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a,
.cart-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.cart-link {
  border: 1px solid var(--sage);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.cart-link span {
  display: inline-grid;
  min-width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--white);
  padding: 0.45rem 0.7rem;
}

.hero {
  --hero-desktop-y-shift: 0px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 5.5rem;
}

.hero-media,
.hero-content,
.hero-side {
  grid-area: 1 / 1;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 58%, rgba(51, 157, 25, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(251, 251, 247, 0.98), rgba(251, 251, 247, 0.86) 48%, rgba(251, 251, 247, 0.38));
}

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

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

.hero-content {
  z-index: 1;
  align-self: start;
  width: min(760px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 6rem);
  padding: calc(clamp(2.1rem, 6vh, 3.2rem) + 2.35rem) 0 0.8rem;
  transform: translateY(var(--hero-desktop-y-shift));
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 5.1vw, 5.7rem);
  max-width: 720px;
}

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

h3 {
  font-size: 1.35rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
}

.button.primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(51, 157, 25, 0.16);
}

.button.primary:hover {
  background: var(--sage-dark);
}

.button.secondary {
  border-color: var(--sage);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-dark);
}

.hero-actions .button.primary {
  min-width: 240px;
}

.hero-actions .button.secondary {
  min-width: 170px;
}

.hero-support-copy {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
  margin: 0;
  max-width: 26rem;
}

.button.full {
  width: 100%;
}

.trust-row {
  list-style: none;
  padding: 0;
}

.trust-row.compact {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.55rem;
  width: min(640px, 100%);
}

.trust-row li {
  border-left: 3px solid var(--sun);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
}

.trust-short {
  display: none;
}

.trusted-hero-card {
  --trusted-bottom-row: 2.8rem;
  position: relative;
  display: grid;
  grid-template-columns: 4.8rem minmax(10.4rem, 0.85fr) minmax(14.2rem, 1fr);
  grid-template-areas:
    "mark provider copy"
    "rating reviews cta";
  grid-template-rows: auto var(--trusted-bottom-row);
  gap: 0.68rem 1rem;
  align-items: start;
  width: min(640px, 100%);
  border: 1px solid rgba(51, 157, 25, 0.28);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 220, 0, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 241, 0.93)),
    var(--white);
  box-shadow: 0 24px 60px rgba(31, 42, 36, 0.14);
  margin-top: 1.25rem;
  padding: 0.95rem;
}

.trusted-hero-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 220, 0, 0.2) 42%, transparent 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-22%);
}

.trusted-hero-mark {
  grid-area: mark;
  justify-self: center;
  width: 4.05rem;
  height: 4.05rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(31, 42, 36, 0.16));
  transform-origin: center;
}

.trusted-badge-stack {
  display: contents;
}

.trusted-provider-copy {
  display: contents;
}

.trusted-provider-main {
  grid-area: provider;
  min-width: 0;
}

.trusted-provider-copy strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.15;
}

.trusted-review-count {
  grid-area: reviews;
  align-self: center;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  min-height: var(--trusted-bottom-row);
  padding-bottom: 0;
}

.trusted-label {
  color: var(--sage-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trusted-stars {
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.trusted-hero-copy {
  display: contents;
}

.trusted-copy-main {
  grid-area: copy;
  min-width: 0;
}

.trusted-hero-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0;
}

.trusted-mini-badge {
  grid-area: rating;
  align-self: center;
  justify-self: center;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.16rem;
  margin-top: 0;
  transform: none;
  width: 5.1rem;
  min-height: var(--trusted-bottom-row);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.trusted-mini-badge strong {
  color: #050807;
  font-size: 1.3rem;
  line-height: 1;
}

.trusted-mini-badge span {
  color: #050807;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.trusted-hero-card a {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  align-self: center;
  justify-self: start;
  line-height: 1.2;
  margin-top: 0;
  min-height: var(--trusted-bottom-row);
  padding: 0.58rem 0.9rem;
  text-align: center;
  text-decoration: none;
  transform: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(51, 157, 25, 0.18);
}

.trusted-hero-card a:hover {
  background: var(--sage-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .trusted-hero-card::before {
    animation: trust-sheen 6s ease-in-out infinite;
  }

  .trusted-hero-mark {
    animation: trust-float 5.5s ease-in-out infinite;
  }
}

@keyframes trust-sheen {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateX(-28%);
  }

  68% {
    opacity: 1;
  }

  82% {
    opacity: 0;
    transform: translateX(36%);
  }
}

@keyframes trust-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.12rem) scale(1.025);
  }
}

.hero-side {
  z-index: 1;
  justify-self: end;
  align-self: start;
  display: grid;
  gap: 1rem;
  width: min(460px, 34vw);
  margin: calc(clamp(5rem, 13vh, 7.4rem) + 2.35rem) clamp(1rem, 5vw, 5rem) 1rem 1rem;
  transform: translateY(var(--hero-desktop-y-shift));
}

.hero-proof {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 28px 80px rgba(31, 42, 36, 0.2);
  backdrop-filter: blur(14px);
}

.hero-proof-media {
  position: relative;
  display: grid;
  min-width: 0;
  width: 100%;
  place-items: center;
  min-height: clamp(260px, 31vw, 390px);
  background:
    radial-gradient(circle at 22% 18%, rgba(246, 192, 68, 0.18), transparent 34%),
    linear-gradient(145deg, #fbf8eb, #eef6e4);
}

.hero-proof-media img {
  width: min(84%, 350px);
  max-width: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(31, 42, 36, 0.18));
}

.hero-proof-media span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.72rem;
  text-transform: uppercase;
}

.hero-proof-body {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 1.15rem;
}

.hero-rating {
  display: grid;
  gap: 0.15rem;
  color: var(--sage-dark);
}

.hero-rating span {
  color: var(--sun);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-rating strong {
  font-size: 0.95rem;
}

.hero-proof h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.1;
  margin: 0;
}

.hero-proof p {
  color: var(--muted);
  margin: 0;
}

.hero-proof-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-proof-list li {
  position: relative;
  color: var(--ink);
  font-weight: 700;
  padding-left: 1.55rem;
}

.hero-proof-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(51, 157, 25, 0.13);
  color: var(--sage-dark);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
}

@media (min-width: 921px) and (max-width: 1500px) and (max-height: 760px) {
  .hero {
    --hero-desktop-y-shift: clamp(1rem, 3vh, 1.45rem);
  }

}

@media (min-width: 901px) and (max-height: 980px) {
  .hero {
    --hero-desktop-y-shift: clamp(3.65rem, 7.7vh, 4.9rem);
    min-height: calc(100vh - 6.25rem);
    padding-bottom: clamp(6.25rem, 10vh, 8.5rem);
  }

  .hero-content {
    padding: 1.45rem 0 0.35rem;
  }

  h1 {
    font-size: clamp(2.5rem, 3.7vw, 4.25rem);
    line-height: 1.03;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.45;
    margin-block: 0.7rem 0;
  }

  .hero-actions,
  .trust-row {
    margin-top: 0.9rem;
  }

  .trust-row li {
    font-size: 0.9rem;
    padding: 0.28rem 0.55rem;
  }

  .trusted-hero-card {
    margin-top: 1.85rem;
    padding: 0.78rem;
  }

  .hero-side {
    margin-top: 1.35rem;
  }

  .hero-proof-media {
    min-height: clamp(180px, 18vw, 260px);
  }

  .hero-proof-media img {
    max-height: 230px;
  }

  .hero-proof-body {
    gap: 0.65rem;
    padding: 0.95rem;
  }

  .hero-proof p {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .trust-row.compact {
    margin-top: 1.85rem;
  }
}

@media (min-width: 901px) {
  html.is-brave .hero {
    --hero-desktop-y-shift: clamp(3.15rem, 4.9vh, 4.2rem);
    min-height: calc(100svh - 6rem);
    padding-bottom: clamp(8.25rem, 11vh, 10.5rem);
  }

  html.is-brave .hero-content > p:not(.eyebrow) {
    margin-block: clamp(1rem, 1.7vh, 1.35rem) 0;
  }

  html.is-brave .hero-actions {
    margin-top: clamp(1.35rem, 2.2vh, 1.75rem);
  }

  html.is-brave .trusted-hero-card,
  html.is-brave .trust-row.compact {
    margin-top: clamp(1.45rem, 2.35vh, 1.9rem);
  }

  html.is-brave .hero-proof-body {
    gap: clamp(0.85rem, 1.45vh, 1.15rem);
  }
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(1rem, 3vw, 2rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 220, 0, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(51, 157, 25, 0.09), rgba(255, 255, 255, 0.94) 40%),
    var(--white);
  padding: clamp(1.5rem, 4vw, 3.2rem) clamp(1rem, 5vw, 4rem);
}

.trust-summary {
  align-self: center;
}

.trust-summary p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
}

.trust-summary h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

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

.trust-card {
  position: relative;
  display: grid;
  grid-template-rows: 4.4rem 5.25rem auto 1fr auto;
  align-content: start;
  gap: 0.75rem;
  min-height: 19.25rem;
  overflow: hidden;
  border: 1px solid rgba(51, 157, 25, 0.18);
  border-radius: 0.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 240, 0.92)),
    var(--white);
  box-shadow: 0 18px 44px rgba(31, 42, 36, 0.1);
  padding: 1.05rem;
}

.trust-card.featured {
  border-color: rgba(255, 220, 0, 0.72);
  box-shadow: 0 22px 52px rgba(32, 114, 15, 0.14);
}

.trusted-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 220, 0, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 251, 224, 0.78)),
    var(--white);
}

.trust-card-copy {
  font-size: 0.92rem;
}

.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.trust-chip-row span {
  border: 1px solid rgba(51, 157, 25, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.42rem 0.52rem;
}

.trust-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  min-height: 4.4rem;
}

.herold-card {
  background:
    radial-gradient(circle at 95% 8%, rgba(255, 220, 0, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 251, 247, 0.9)),
    var(--white);
}

.google-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(51, 157, 25, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 241, 0.88)),
    var(--white);
}

.google-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--sage), var(--sun));
}

.google-logo {
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(51, 157, 25, 0.14);
  border-radius: 0.72rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 241, 0.92)),
    var(--white);
  box-shadow: 0 12px 26px rgba(31, 42, 36, 0.11);
  padding: 0.56rem;
}

.trusted-trustmark {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(31, 42, 36, 0.18));
}

.trust-score {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: 5.25rem;
  margin-top: 0;
}

.score-line {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
}

.score-line strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  line-height: 0.95;
}

.score-line .stars {
  color: var(--sun);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.review-count {
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.herold-logo {
  width: min(9.2rem, 72%);
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.14);
}

.stars {
  color: var(--sun);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-provider {
  width: fit-content;
  border-radius: 999px;
  background: rgba(51, 157, 25, 0.12);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.34rem 0.55rem;
}

.live-badge {
  background: rgba(51, 157, 25, 0.13);
  color: var(--sage-dark);
}

.trust-card > strong {
  font-size: 1.05rem;
}

.trust-card p {
  color: var(--muted);
  margin: 0;
}

.trust-note {
  align-self: end;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.45rem;
}

.trust-link {
  align-self: end;
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 900;
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.trust-link.button-like {
  grid-row: -1;
  align-self: end;
  width: fit-content;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  padding: 0.62rem 0.85rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(51, 157, 25, 0.18);
}

.trust-link.button-like:hover {
  background: var(--sage-dark);
}

.trust-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.review-quotes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-quotes figure {
  position: relative;
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(51, 157, 25, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.86);
  margin: 0;
  padding: 1rem;
}

.review-quotes figure::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  right: 0.75rem;
  color: rgba(51, 157, 25, 0.13);
  font-family: Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
}

.quote-stars {
  color: var(--sun);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.review-quotes blockquote {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.review-quotes figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0;
}

.review-quotes figcaption span {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(51, 157, 25, 0.13);
  color: var(--sage-dark);
  font-weight: 900;
}

.quote-trustmark {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.review-quotes figcaption strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-bar div {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.32rem;
  min-height: 8.25rem;
  overflow: hidden;
  border: 1px solid rgba(51, 157, 25, 0.16);
  border-radius: 0.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 240, 0.96)),
    var(--paper);
  box-shadow: 0 14px 30px rgba(31, 42, 36, 0.08);
  padding: 1rem;
}

.trust-bar div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--sage), var(--sun));
}

.trust-bar div::after {
  content: "";
  position: absolute;
  right: -1.7rem;
  bottom: -1.9rem;
  width: 5.3rem;
  height: 5.3rem;
  border: 1px solid rgba(51, 157, 25, 0.12);
  border-radius: 50%;
  background: rgba(51, 157, 25, 0.04);
}

.trust-kicker {
  width: fit-content;
  border-radius: 999px;
  background: rgba(51, 157, 25, 0.1);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.38rem 0.52rem;
  text-transform: uppercase;
}

.trust-bar strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section.muted {
  background: #eef1e7;
}

.seo-section {
  background: var(--white);
}

.shipping-section {
  background: #f3f5ee;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(2rem, 5vw, 5rem);
}

.split.reverse {
  grid-template-columns: minmax(340px, 500px) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-grid div,
.copy-box,
.payment-panel,
.featured-product,
.product-card,
details {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
}

.benefit-grid div {
  position: relative;
  display: grid;
  gap: 0.15rem;
  overflow: hidden;
  padding: 1rem;
}

.benefit-grid div::before,
.seo-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.22rem;
  background: linear-gradient(90deg, var(--sage), var(--sun));
  content: "";
}

.benefit-grid span,
.product-card p,
.featured-product p,
.copy-box p,
.payment-panel p,
details p {
  color: var(--muted);
}

.featured-product {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef1e7;
}

.featured-product > div {
  padding: 1.35rem;
}

.tag {
  color: var(--clay);
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.6rem 0 1.35rem;
}

.product-filter button {
  min-height: 2.45rem;
  border: 1px solid rgba(51, 157, 25, 0.26);
  border-radius: 0.35rem;
  background: var(--white);
  color: var(--sage-dark);
  cursor: pointer;
  font-weight: 800;
  padding: 0.6rem 0.85rem;
}

.product-filter button.is-active {
  background: var(--sage);
  color: var(--white);
}

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

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

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

.shipping-grid article {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 1.1rem;
}

.shipping-grid strong,
.shipping-grid span {
  display: block;
}

.shipping-grid strong {
  font-size: 1.15rem;
}

.shipping-grid span {
  color: var(--sage-dark);
  font-weight: 700;
  margin: 0.25rem 0 0.55rem;
}

.shipping-grid p {
  color: var(--muted);
  margin: 0;
}

.merchant-note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  border: 1px solid rgba(51, 157, 25, 0.25);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  margin-top: 1rem;
  padding: 1rem;
}

.merchant-note strong {
  color: var(--ink);
  white-space: nowrap;
}

.seo-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 12rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 240, 0.94)),
    var(--paper);
  box-shadow: 0 14px 30px rgba(31, 42, 36, 0.08);
  padding: 1.2rem;
}

.seo-grid p {
  color: var(--muted);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  border-radius: 999px;
  background: rgba(51, 157, 25, 0.94);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.34rem 0.62rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #dde5d2;
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
}

.product-meta {
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-points {
  display: grid;
  gap: 0.28rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-points li {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-points li::before {
  color: var(--sage);
  content: "✓ ";
  font-weight: 900;
}

.product-use {
  border-left: 3px solid var(--sun);
  color: var(--ink);
  font-weight: 800;
  margin: 0;
  padding-left: 0.6rem;
}

.payment-panel,
.copy-box,
.application-panel,
.dosage-box {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.application-panel,
.dosage-box {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
}

.application-panel {
  background:
    linear-gradient(135deg, rgba(51, 157, 25, 0.12), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.use-cases span {
  border: 1px solid rgba(51, 157, 25, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--sage-dark);
  font-weight: 700;
  padding: 0.45rem 0.8rem;
}

.steps {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding-left: 1.3rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 950px;
}

details {
  padding: 1rem 1.2rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  padding: 2rem clamp(1rem, 5vw, 4rem);
}

.footer img {
  width: 52px;
  margin-bottom: 0.7rem;
}

.footer p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 0.85rem;
}

.legal-page {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.legal-hero {
  display: grid;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.legal-hero h1 {
  max-width: 880px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  margin: 0;
}

.legal-updated {
  color: var(--sage-dark) !important;
  font-weight: 900;
}

.legal-section {
  display: grid;
  gap: 0.7rem;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-section p,
.legal-section li,
.legal-section address {
  max-width: 860px;
  color: var(--muted);
  margin: 0;
}

.legal-section address {
  border-left: 3px solid var(--sage);
  background: rgba(67, 145, 61, 0.07);
  font-style: normal;
  padding: 0.8rem 1rem;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-section a {
  color: var(--sage-dark);
  font-weight: 800;
  text-underline-offset: 0.18em;
}

.legal-box {
  display: grid;
  gap: 0.45rem;
  max-width: 860px;
  border: 1px solid rgba(67, 145, 61, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.legal-section details {
  max-width: 860px;
  border: 1px solid rgba(67, 145, 61, 0.16);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem 1rem;
}

.legal-section details + details {
  margin-top: 0.25rem;
}

.legal-section summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.legal-section details p {
  margin-top: 0.65rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
}

.cart-drawer[aria-hidden="false"] {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 36, 0.52);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(480px, 100%);
  max-height: 100%;
  gap: 1rem;
  overflow: auto;
  background: var(--paper);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-button {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

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

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 0.5rem;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}

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

.cart-item img {
  width: 68px;
  height: 68px;
  border-radius: 0.35rem;
  object-fit: cover;
}

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

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.quantity button {
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: var(--paper);
  cursor: pointer;
}

.cart-total {
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cart-total div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-total .sum {
  font-size: 1.2rem;
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.checkout-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--white);
  padding: 0.75rem;
}

.small {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.order-result {
  border: 1px solid var(--sage);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 1rem;
}

.order-result details {
  margin-top: 0.8rem;
  padding: 0.8rem;
}

.order-result summary {
  cursor: pointer;
  font-weight: 800;
}

.order-result code {
  display: block;
  white-space: pre-wrap;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 1rem;
  }

  .nav-links a,
  .nav-links .cart-link {
    min-height: 2.85rem;
    align-items: center;
  }

  .nav-links.open {
    display: flex;
  }

  .cart-link {
    width: 100%;
  }

  .hero,
  .hero-media {
    min-height: 0;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(251, 251, 247, 0.08), rgba(251, 251, 247, 0.42) 58%, rgba(251, 251, 247, 0.98));
  }

  .hero {
    --hero-desktop-y-shift: 0px;
    display: block;
    background: linear-gradient(180deg, #fbfbf7, #f0f5ea);
    padding-bottom: 0;
  }

  .hero-media {
    position: relative;
    inset: auto;
    display: block;
    height: clamp(13.8rem, 46vw, 22rem);
  }

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

  .hero-content {
    width: min(100% - 2rem, 680px);
    margin: 0.75rem auto 0;
    border: 1px solid rgba(51, 157, 25, 0.16);
    border-radius: 0.9rem;
    background: rgba(251, 251, 247, 0.96);
    box-shadow: 0 18px 48px rgba(31, 42, 36, 0.12);
    padding: clamp(1.35rem, 4vw, 2rem);
    position: relative;
    z-index: 2;
  }

  .split,
  .split.reverse,
  .product-grid,
  .seo-grid,
  .shipping-grid,
  .trust-panel,
  .trust-cards,
  .review-quotes,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: block;
    width: min(100% - 2rem, 680px);
    margin: 1rem auto 0;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: minmax(8.5rem, 0.42fr) minmax(0, 1fr);
  }

  .hero-proof-media {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .hero-proof-media img {
    width: 92%;
    max-height: none;
  }

  .hero-proof-body {
    align-content: center;
  }

  .hero-proof-list,
  .hero-rating {
    display: none;
  }

  #hunde {
    gap: 1.5rem;
    padding-top: 3.2rem;
  }

  #hunde .featured-product {
    max-width: 520px;
    justify-self: center;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .notice {
    font-size: 0.78rem;
    line-height: 1.35;
    padding-inline: 0.7rem;
  }

  .nav {
    gap: 0.65rem;
    padding: 0.62rem 0.75rem;
  }

  .brand span {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1;
  }

  .hero-media {
    height: clamp(9.8rem, 39vw, 12.8rem);
  }

  .hero-media img {
    object-position: 70% 48%;
  }

  .hero-content {
    width: calc(100% - 0.9rem);
    margin-top: 1.25rem;
    border-radius: 0.75rem;
    padding: 0.78rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .hero-actions .button {
    min-height: 2.8rem;
    padding-block: 0.7rem;
  }

  .hero-support-copy {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .trust-row li {
    font-size: 0.86rem;
    line-height: 1.25;
    padding: 0.42rem 0.58rem;
  }

  .trusted-hero-card {
    grid-template-areas: none;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
    justify-items: center;
    gap: 0.55rem 0.7rem;
    margin-top: 1.75rem;
    padding: 0.68rem;
  }

  .trusted-hero-mark {
    width: 3.1rem;
    height: 3.1rem;
  }

  .trusted-provider-copy {
    align-self: center;
    display: grid;
    justify-items: start;
    min-height: 0;
    max-width: 17rem;
    text-align: left;
  }

  .trusted-provider-copy strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .trusted-review-count {
    font-size: 0.76rem;
    margin-top: 0.18rem;
    padding-bottom: 0;
  }

  .trusted-badge-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .trusted-mini-badge {
    margin-top: 0;
    transform: none;
    width: 4.55rem;
    padding-inline: 0.25rem;
  }

  .trusted-mini-badge strong {
    font-size: 1rem;
  }

  .trusted-mini-badge span {
    font-size: 0.58rem;
  }

  .trusted-hero-copy {
    display: grid;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    padding-top: 0;
  }

  .trusted-hero-card a {
    grid-area: auto;
    grid-column: 1 / -1;
    justify-self: stretch;
    align-self: stretch;
    margin-top: 0.15rem;
    padding: 0.62rem 0.7rem;
    text-align: center;
    transform: none;
    width: 100%;
  }

  .trusted-provider-main,
  .trusted-copy-main,
  .trusted-review-count,
  .trusted-mini-badge,
  .trusted-hero-mark {
    grid-area: auto;
  }

  .trust-row.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
    margin-top: 0.2rem;
  }

  .trust-row.compact li {
    display: flex;
    min-height: 1.72rem;
    align-items: center;
    justify-content: center;
    border-left: 0;
    border-top: 2px solid var(--sun);
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
    line-height: 1.05;
    padding: 0.24rem 0.18rem;
    text-align: center;
    white-space: nowrap;
  }

  .trust-row.compact li:nth-child(3) {
    display: flex;
  }

  .trust-row.compact .trust-full {
    display: none;
  }

  .trust-row.compact .trust-short {
    display: inline;
  }

  .hero-side {
    width: calc(100% - 0.9rem);
    margin-top: 0.75rem;
  }

  .hero-proof {
    grid-template-columns: minmax(6.8rem, 0.42fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .hero-proof-media {
    min-height: 0;
    aspect-ratio: auto;
  }

  .hero-proof-media img {
    width: min(90%, 8.2rem);
  }

  .hero-proof-media span {
    display: none;
  }

  .hero-proof-body {
    gap: 0.55rem;
    padding: 0.85rem;
  }

  .hero-proof h2 {
    font-size: 1.08rem;
  }

  .hero-proof p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .hero-proof .button {
    min-height: 2.65rem;
    padding-block: 0.62rem;
  }

  .hero-actions,
  .trust-row {
    display: grid;
  }

  .featured-product > div,
  .product-card-body {
    padding: 0.95rem;
  }

  .featured-product p,
  .product-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .shipping-grid article {
    padding: 0.95rem;
  }

  .cart-panel {
    width: 100vw;
    max-width: 100vw;
    padding: 0.9rem;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .cart-item > strong {
    grid-column: 2;
  }

  .cart-item h3 {
    overflow-wrap: anywhere;
  }

  .merchant-note {
    display: grid;
    gap: 0.25rem;
  }

  .merchant-note strong {
    white-space: normal;
  }
}
