:root {
  --bg: #ffffff;
  --text: #121613;
  --muted: #5e665f;
  --line: #dfe6df;
  --soft: #f6f8f5;
  --green: #178a32;
  --green-dark: #0d6723;
  --orange: #f06b11;
  --gold: #d99a21;
  --shadow: 0 18px 50px rgba(27, 38, 27, 0.1);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f8f5;
  color: var(--text);
}

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

button,
input,
select {
  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 {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 186px;
  line-height: 0.9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green);
}

.brand-mark svg,
.search svg,
.product-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0;
}

.brand em {
  color: var(--green);
  font-weight: 800;
}

.search {
  display: grid;
  grid-template-columns: 1fr 52px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  outline: 0;
  color: var(--text);
}

.search button {
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
}

.search button svg {
  width: 22px;
  height: 22px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #303730;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-cta,
.button-primary,
.capture-form button,
.offer-link {
  color: #fff;
  background: linear-gradient(180deg, #2aa844 0%, var(--green) 100%);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(23, 138, 50, 0.18);
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23, 138, 50, 0.32);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}

.nav-cart span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  padding: clamp(30px, 4vw, 56px) clamp(18px, 4vw, 64px) 30px;
}

.storefront-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: 16px;
  background: #fff;
}

.storefront-hero .hero-copy {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
  gap: 20px 32px;
}

.storefront-hero .market-kicker,
.storefront-hero .hero-copy h1,
.storefront-hero .hero-copy p {
  grid-column: 1;
}

.hero-copy h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.storefront-hero .hero-copy h1 {
  font-size: clamp(34px, 4vw, 54px);
}

.hero-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
}

.storefront-hero .hero-copy p {
  max-width: 740px;
  font-size: 17px;
}

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

.storefront-hero .hero-actions {
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-content: end;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button-secondary {
  border: 1px solid #9da79e;
  background: #fff;
}

.button:hover,
.offer-link:hover,
.category:hover,
.main-nav a:hover {
  transform: translateY(-1px);
}

.button,
.offer-link,
.category,
.main-nav a {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: #2e392f;
  font-size: 14px;
  font-weight: 700;
}

.storefront-hero .trust-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, max-content);
  max-width: none;
  margin-top: 0;
}

.trust-list li {
  padding-left: 18px;
  border-left: 3px solid var(--green);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-deal {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: 320px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 230, 223, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.hero-deal strong {
  font-size: 16px;
}

.hero-deal span {
  color: var(--green-dark);
  font-weight: 800;
}

.hero-deal small {
  color: var(--muted);
  line-height: 1.35;
}

.category-band {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #293129;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.category.active {
  color: var(--green-dark);
  border-color: rgba(23, 138, 50, 0.45);
  background: #f0fbf2;
  font-weight: 800;
}

.section-shell,
.guide-grid,
.seo-block {
  padding: 38px clamp(18px, 4vw, 64px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2,
.guide-grid h2,
.seo-block h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0;
}

.section-heading p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading a {
  color: var(--green-dark);
  font-weight: 800;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.toolbar span {
  color: var(--muted);
  font-weight: 750;
}

.toolbar select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  border: 1px dashed rgba(23, 138, 50, 0.35);
  border-radius: var(--radius);
  background: #f8fbf8;
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  color: var(--text);
  font-size: 20px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 32, 26, 0.06);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  color: rgba(20, 31, 24, 0.78);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.88), transparent 32%),
    var(--product-bg);
  overflow: hidden;
}

.product-art svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.55;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.discount {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  color: #fff;
  background: var(--orange);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.product-body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
}

.checkout-badge {
  width: fit-content;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.checkout-badge.trust {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ecf8ef;
  color: var(--green-dark);
}

.product-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-row strong {
  color: var(--green);
  font-size: 21px;
}

.price-row span {
  color: #808780;
  font-size: 13px;
  text-decoration: line-through;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #4c554d;
  font-size: 13px;
}

.meta-row span {
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--soft);
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-body small {
  color: var(--green-dark);
  font-weight: 800;
}

.market-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.affiliate-hero {
  padding-bottom: 38px;
}

.market-strip {
  display: flex;
  gap: 10px;
  margin: 0 clamp(18px, 4vw, 64px);
  padding: 16px 18px;
  border: 1px solid rgba(23, 138, 50, 0.2);
  border-radius: var(--radius);
  color: #304033;
  background: #f0fbf2;
  line-height: 1.45;
}

.market-strip strong {
  color: var(--green-dark);
}

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

.affiliate-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 32, 26, 0.06);
}

.affiliate-card h3 {
  margin: 0;
  min-height: 54px;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: 0;
}

.affiliate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.affiliate-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.affiliate-meta div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 7px;
  background: var(--soft);
}

.affiliate-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.affiliate-meta dd {
  margin: 0;
  color: #273127;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

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

.market-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.market-grid strong {
  color: var(--green);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.market-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.affiliate-tips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.affiliate-backup {
  background: #fbfcfb;
}

.sources-block a {
  color: var(--green-dark);
  font-weight: 750;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(23, 138, 50, 0.55);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 138, 50, 0.14);
}

.offer-link.secondary {
  color: #283229;
  background: #fff;
  border-color: #b8c2b9;
  box-shadow: none;
}

.product-actions,
.product-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.product-actions .offer-link {
  min-height: 42px;
}

.offer-link.pending {
  border-color: #c7cbe0;
  color: #4f566b;
  background: #f7f8fc;
  cursor: default;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 18px;
  background: var(--soft);
}

.store-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px clamp(18px, 4vw, 64px) 42px;
}

.store-info article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.store-info strong {
  color: #162019;
}

.store-info span {
  color: var(--muted);
  line-height: 1.45;
}

.guide-grid article,
.guide-grid aside,
.seo-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guide-grid article,
.guide-grid aside {
  padding: clamp(22px, 3vw, 32px);
}

.guide-grid p,
.seo-block p {
  color: var(--muted);
  line-height: 1.6;
}

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

.tips div {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 3px solid var(--green);
}

.tips span {
  color: var(--muted);
  line-height: 1.45;
}

.capture-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.capture-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
}

.capture-form button,
.whatsapp-link {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(23, 138, 50, 0.55);
  color: var(--green-dark);
}

.seo-block,
.operations-band,
.legal-page,
.product-page {
  margin: 38px clamp(18px, 4vw, 64px);
}

.seo-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
}

.seo-columns ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #334034;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer span {
  max-width: 880px;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--green-dark);
  font-weight: 750;
}

.operations-band,
.legal-page,
.product-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
}

.operations-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.operations-band h2,
.legal-page h1,
.product-page h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.operations-band p,
.legal-page p,
.legal-page li,
.product-page p,
.product-page li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page h2,
.product-page h2 {
  margin-top: 28px;
  font-size: 24px;
  letter-spacing: 0;
}

.legal-page ul,
.product-page ul {
  padding-left: 20px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.product-page .product-art {
  min-height: 420px;
  border-radius: var(--radius);
}

.product-page .product-art::after {
  display: none;
}

.product-page .product-art img {
  border-radius: var(--radius);
}

.product-page .product-art svg {
  width: 118px;
  height: 118px;
}

.buy-box {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.buy-box .price-row strong {
  font-size: 30px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 750;
}

.cart-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 138, 50, 0.35);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 16px 38px rgba(22, 34, 22, 0.16);
  font-weight: 850;
  cursor: pointer;
}

.cart-floating svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-floating strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

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

.cart-layer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 22, 19, 0.42);
  cursor: pointer;
}

.cart-drawer {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100vw);
  height: 100%;
  padding: 22px;
  background: #fff;
  box-shadow: -18px 0 46px rgba(20, 28, 22, 0.18);
}

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

.cart-head span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.cart-head h2 {
  margin: 4px 0 0;
  font-size: 30px;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.cart-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.cart-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 18px;
}

.cart-empty {
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: center;
  color: var(--muted);
  line-height: 1.45;
}

.cart-empty strong {
  color: var(--text);
  font-size: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item div {
  display: grid;
  gap: 5px;
}

.cart-item span,
.cart-item small,
.cart-summary span,
.cart-summary small {
  color: var(--muted);
  font-size: 13px;
}

.cart-item strong {
  line-height: 1.25;
}

.cart-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.cart-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary strong {
  color: var(--green);
  font-size: 24px;
}

.cart-checkout {
  width: 100%;
}

.cart-secondary-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.cart-secondary-actions button {
  border: 0;
  color: #6b3732;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.cart-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    overflow-x: auto;
  }

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

  .storefront-hero .hero-copy {
    grid-template-columns: 1fr;
  }

  .storefront-hero .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: start;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand strong,
  .brand em {
    font-size: 20px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 10px 14px;
    overflow: visible;
    white-space: normal;
  }

  .nav-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .nav-cart {
    justify-self: start;
  }

  .hero {
    padding: 34px 16px 24px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .trust-list,
  .guide-grid,
  .tips,
  .seo-columns,
  .affiliate-grid,
  .affiliate-meta,
  .market-grid,
  .store-info {
    grid-template-columns: 1fr;
  }

  .storefront-hero .trust-list {
    grid-template-columns: 1fr;
  }

  .market-strip {
    display: grid;
    margin: 0 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .product-art svg {
    width: 58px;
    height: 58px;
  }

  .section-heading,
  .toolbar,
  .site-footer,
  .operations-band {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .operations-band {
    display: grid;
  }

  .operations-band .button {
    width: 100%;
  }

  .section-shell,
  .guide-grid,
  .seo-block {
    padding: 28px 16px;
  }

  .seo-block,
  .operations-band,
  .legal-page,
  .product-page {
    margin: 28px 16px;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-actions,
  .product-detail-actions {
    grid-template-columns: 1fr;
  }
}
