:root {
  --ink: #101917;
  --text: #34413d;
  --muted: #6b7671;
  --line: #dce5df;
  --paper: #f6f8f4;
  --white: #ffffff;
  --green: #17653f;
  --green-2: #d9eddf;
  --navy: #173f62;
  --coral: #c86a48;
  --gold: #b98a33;
  --shadow: 0 24px 70px rgba(17, 38, 28, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 12px;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 760;
}

.topbar a {
  color: #f8d39d;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(28, 64, 45, 0.12);
  background: rgba(246, 248, 244, 0.96);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-header .brand {
  display: block;
  width: 150px;
  height: 86px;
  overflow: hidden;
}

.site-header .brand img {
  transform: translateY(-20px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--green-2);
  color: var(--green);
}

.main-nav .nav-cta {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.8rem, 6.8vw, 6.6rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border-left: 4px solid var(--coral);
  padding-left: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker.light {
  color: #ffd5bf;
  border-color: #ffd5bf;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 920;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 38, 26, 0.18);
}

.btn.primary {
  background: var(--green);
  color: var(--white);
}

.btn.dark {
  background: var(--ink);
  color: var(--white);
}

.btn.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--green);
}

.commercial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 82px);
  min-height: 420px;
  align-items: center;
  padding: clamp(34px, 4vw, 50px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.88) 48%, rgba(229, 240, 228, 0.58) 100%),
    url("/assets/backgrounds/bg-shop.png") right center / cover no-repeat;
}

.commercial-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.1vw, 4.05rem);
}

.hero-copy p {
  max-width: 670px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  max-width: 520px;
  margin-top: 20px;
}

.home-metrics div {
  border: 1px solid rgba(21, 104, 60, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.home-metrics strong,
.home-metrics span {
  display: block;
}

.home-metrics strong {
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.home-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span,
.proof-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.brand-rail span {
  display: grid;
  min-height: 70px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.section,
.page-hero,
.product-hero,
.article-page {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.page-hero,
.article-hero-panel {
  min-height: 340px;
  padding-block: clamp(42px, 5vw, 58px);
  align-content: center;
}

.page-hero h1,
.article-hero-panel h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.2vw, 4.35rem);
}

.page-hero p,
.article-hero-panel p {
  max-width: 660px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.split-intro,
.product-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.split-intro p,
.product-story p {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.section-head a {
  color: var(--green);
  font-weight: 950;
}

.home-path {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  background: var(--white);
}

.home-path > div {
  align-self: center;
}

.home-path a {
  display: grid;
  align-content: start;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fbfdfa;
  text-decoration: none;
}

.home-path a span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 950;
}

.home-path a strong {
  margin-top: 30px;
  color: var(--ink);
  font-size: 1.3rem;
}

.home-path a p {
  margin-top: 10px;
  color: var(--muted);
}

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

.product-grid.wide {
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 38px rgba(22, 44, 32, 0.08);
}

.product-card.compact {
  grid-template-columns: minmax(160px, 32%) 1fr;
}

.product-image {
  min-height: 100%;
  background: #eef5f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.compact .product-image img {
  min-height: 240px;
}

.product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(20px, 3vw, 34px);
}

.product-copy h3 a {
  text-decoration: none;
}

.product-copy p {
  margin-top: 10px;
  color: var(--muted);
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.rating.large {
  margin-top: 22px;
  padding-top: 0;
}

.rating span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: #fbfdfa;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.collection-band {
  background: var(--green);
  color: rgba(255, 255, 255, 0.82);
}

.collection-band h2 {
  color: var(--white);
}

.collection-grid,
.review-grid,
.article-grid,
.store-grid,
.product-detail-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-card,
.review-card,
.article-card,
.store-card,
.product-detail-grid article,
.related-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.collection-card {
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-card span,
.collection-card strong,
.collection-card p {
  display: block;
  padding-inline: 20px;
}

.collection-card span {
  margin-top: 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-card strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.35rem;
}

.collection-card p {
  padding-bottom: 22px;
  color: var(--muted);
}

.product-story {
  background: var(--white);
}

.product-story.reverse {
  background: var(--paper);
}

.story-image-panel {
  min-height: 500px;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.brand-panel {
  background-image: url("/assets/backgrounds/bg-shop.png");
}

.about-panel {
  background-image: url("/assets/backgrounds/bg-about.png");
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.review-card {
  padding: 24px;
}

.review-grid.full {
  grid-template-columns: repeat(2, 1fr);
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
  font-size: 1.1rem;
}

.review-card p {
  margin-top: 12px;
  color: var(--text);
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.review-card span {
  color: var(--muted);
}

.cta-section {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  margin-top: 12px;
}

.cta-section .actions {
  justify-content: center;
}

.home-learn {
  display: grid;
  gap: 28px;
  background: #eef5f0;
}

.home-learn > div:first-child p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.page-hero {
  display: grid;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(217, 237, 223, 0.74)),
    radial-gradient(circle at 85% 35%, rgba(200, 106, 72, 0.16), transparent 24%);
}

.shop-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 46%, rgba(229, 240, 228, 0.6) 100%),
    url("/assets/backgrounds/bg-shop.png") right center / cover no-repeat;
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 62%, rgba(255, 255, 255, 0.72) 100%);
  pointer-events: none;
}

.shop-hero > * {
  position: relative;
  z-index: 1;
}

.shop-hero h1 {
  max-width: 760px;
}

.shop-hero p {
  max-width: 620px;
}

.about-hero,
.reviews-hero,
.learn-hero,
.support-hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 48%, rgba(229, 240, 228, 0.52) 100%),
    url("/assets/backgrounds/bg-about.png");
}

.reviews-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 48%, rgba(229, 240, 228, 0.54) 100%),
    url("/assets/backgrounds/bg-reviews.png");
}

.learn-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 48%, rgba(229, 240, 228, 0.54) 100%),
    url("/assets/backgrounds/bg-learn.png");
}

.support-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 48%, rgba(229, 240, 228, 0.54) 100%),
    url("/assets/backgrounds/bg-support.png");
}

.collection-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 48%, rgba(229, 240, 228, 0.54) 100%),
    var(--hero-bg, url("/assets/backgrounds/bg-shop.png")) center / cover no-repeat;
}

.collection-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.comparison {
  background: #eef5f0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green);
  font-size: 0.84rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td a {
  color: var(--green);
  font-weight: 950;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding-block: clamp(34px, 4vw, 52px);
}

.gallery {
  width: min(100%, 380px);
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: var(--white);
  cursor: pointer;
}

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

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-lede .lede {
  margin-top: 16px;
  color: var(--green);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  font-weight: 900;
}

.product-lede h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.2vw, 4.35rem);
}

.product-detail-grid {
  background: #eef5f0;
}

.product-detail-grid article {
  padding: 24px;
}

.product-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.product-detail-grid p,
.product-detail-grid li {
  color: var(--text);
}

.sticky-buy {
  position: sticky;
  bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

body:has(.sticky-buy) .floating-offer {
  bottom: 78px;
}

.sticky-buy span {
  color: var(--muted);
  font-weight: 850;
}

.sticky-buy strong {
  color: var(--ink);
}

.sticky-buy a {
  border-radius: var(--radius);
  padding: 8px 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.floating-offer {
  position: fixed;
  right: clamp(14px, 2.6vw, 30px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 70;
  width: min(310px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 239, 0.94)),
    url("/assets/backgrounds/bg-support.png") center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(8, 31, 22, 0.22);
  animation: floating-offer-drift 5s ease-in-out infinite;
}

.floating-offer.is-hidden {
  display: none;
}

.floating-offer-close {
  position: absolute;
  top: 7px;
  right: 8px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(21, 104, 60, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.floating-offer-main {
  display: grid;
  gap: 5px;
  padding: 4px 32px 10px 4px;
  text-decoration: none;
}

.floating-offer-main span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-offer-main strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.14;
}

.floating-offer-main small {
  color: var(--muted);
  font-weight: 800;
}

.floating-offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.floating-offer-actions a {
  border-radius: 7px;
  padding: 9px 10px;
  background: var(--green);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.floating-offer-actions a:last-child {
  background: var(--ink);
}

@keyframes floating-offer-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.related-grid a {
  display: grid;
  gap: 10px;
  padding: 14px;
  text-decoration: none;
}

.related-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.related-grid strong {
  color: var(--ink);
}

.related-grid span {
  color: var(--muted);
}

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

.store-card {
  display: grid;
  gap: 8px;
  min-height: 240px;
  align-content: center;
  padding: clamp(26px, 5vw, 46px);
  text-decoration: none;
}

.store-card span {
  color: var(--muted);
  font-weight: 850;
}

.store-card strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.store-card p {
  color: var(--muted);
}

.store-card.lazada {
  border-left: 9px solid var(--navy);
}

.store-card.shopee {
  border-left: 9px solid var(--coral);
}

.faq-list {
  background: #eef5f0;
}

details {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green);
  font-weight: 950;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-card h3 a {
  text-decoration: none;
}

.article-card p {
  margin-top: 10px;
  color: var(--muted);
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.article-page header {
  grid-column: 1 / -1;
}

.article-hero-panel {
  display: grid;
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 248, 0.9) 52%, rgba(229, 240, 228, 0.54) 100%),
    var(--hero-bg, url("/assets/backgrounds/bg-learn.png")) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.article-page header p {
  color: var(--muted);
}

.article-body {
  display: grid;
  gap: 30px;
}

.article-body p,
.article-page aside p {
  margin-top: 10px;
  color: var(--text);
  font-size: 1.08rem;
}

.article-page aside {
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto auto;
  gap: 32px;
  padding: 40px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 156px;
  height: auto;
}

.site-footer p {
  max-width: 560px;
  margin-top: 10px;
  color: var(--muted);
}

.site-footer div:not(.footer-brand) {
  display: grid;
  gap: 7px;
  align-content: start;
}

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

.site-footer a {
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .commercial-hero,
  .product-hero,
  .split-intro,
  .product-story,
  .home-path,
  .shop-hero,
  .collection-hero,
  .article-page {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .collection-grid,
  .review-grid,
  .article-grid,
  .product-detail-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-image img {
    min-height: 260px;
    max-height: 460px;
  }

  .article-page aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 146px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .main-nav a {
    border-radius: var(--radius);
  }

  .commercial-hero {
    min-height: auto;
  }

  .home-metrics,
  .home-path {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(226, 240, 227, 0.72)),
      url("/assets/backgrounds/bg-shop.png") center / cover no-repeat;
  }

  .page-hero,
  .article-hero-panel {
    min-height: 280px;
    padding-block: 34px;
  }

  .page-hero h1,
  .article-hero-panel h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .shop-hero::after {
    background: rgba(255, 255, 255, 0.42);
  }

  .brand-rail,
  .product-grid,
  .collection-grid,
  .review-grid,
  .review-grid.full,
  .article-grid,
  .store-grid,
  .product-detail-grid,
  .related-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .story-image-panel {
    min-height: 320px;
  }

  .btn {
    width: 100%;
  }

  .sticky-buy {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-offer {
    right: 12px;
    bottom: 12px;
    width: min(280px, calc(100vw - 24px));
  }
}
