:root {
  --forest: #0b5d52;
  --forest-dark: #083f38;
  --blue: #2e4574;
  --coral: #e96855;
  --gold: #f3a739;
  --leaf: #2f8f63;
  --ink: #17312e;
  --muted: #5a6b67;
  --canvas: #f7f5ef;
  --mint: #eaf3ee;
  --line: #dde7e2;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 18px 60px rgba(20, 66, 59, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--canvas);
}

.section--mint {
  background: var(--mint);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

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

h3 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

p {
  margin: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.section-heading__copy {
  max-width: 720px;
}

.section-heading .lede {
  margin-top: 16px;
}

.text-link {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--forest);
}

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

.button--secondary {
  color: var(--forest);
  background: var(--white);
  border-color: var(--forest);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--forest);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 231, 226, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: 154px;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-dropdown__toggle {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown__toggle:hover {
  color: var(--forest);
  background: var(--mint);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 680;
  text-decoration: none;
}

.nav-dropdown__menu a:hover {
  color: var(--forest);
  background: var(--mint);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle__icon::before {
  transform: translateY(-7px);
}

.menu-toggle__icon::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: rotate(45deg) translate(1px, 1px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: rotate(-45deg) translate(0, 0);
}

.mobile-nav {
  display: none;
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #eef6f1 0%, #f7f5ef 100%);
}

.hero-home::before {
  position: absolute;
  top: -140px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 167, 57, 0.22), transparent 68%);
  content: "";
}

.hero-home__inner {
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  padding: 74px 0;
}

.hero-home__copy {
  position: relative;
  z-index: 1;
}

.hero-home h1 {
  max-width: 720px;
}

.hero-home .lede {
  margin-top: 24px;
}

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

.hero-home__visual {
  position: relative;
}

.hero-home__visual::before {
  position: absolute;
  inset: -18px 34px 26px -22px;
  background: var(--coral);
  border-radius: 28px;
  content: "";
  transform: rotate(-2.5deg);
}

.hero-home__visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -10px;
  bottom: -20px;
  z-index: 2;
  max-width: 250px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-weight: 720;
}

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

.category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  border-radius: 18px;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 63, 56, 0.92), rgba(8, 63, 56, 0.05) 70%);
  content: "";
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card__body {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  z-index: 1;
}

.category-card h3 {
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

.category-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

.product-card {
  min-width: 0;
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__body {
  padding: 16px 4px 0;
}

.product-card__category {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card h3 {
  line-height: 1.25;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

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

.product-card h3 a:hover {
  color: var(--forest);
}

.product-card__summary {
  display: -webkit-box;
  margin-top: 9px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.93rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.92rem;
}

.feature-split {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.feature-split__image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.feature-split__copy .lede {
  margin-top: 20px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.feature-list__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 850;
  place-items: center;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list span {
  color: var(--muted);
}

.page-hero {
  overflow: hidden;
  background: var(--mint);
}

.page-hero__inner {
  display: grid;
  min-height: 470px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  padding: 58px 0;
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.page-hero .lede {
  margin-top: 22px;
}

.page-hero__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 7px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #8da099;
  content: "/";
}

.breadcrumbs a {
  color: var(--forest);
  text-decoration: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 16px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 720;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.product-hero {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 62px;
  padding: 46px 0 90px;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.gallery-thumb {
  display: grid;
  height: 72px;
  min-width: 0;
  padding: 4px;
  overflow: hidden;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

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

.gallery-thumb[aria-current="true"] {
  border: 2px solid var(--forest);
}

.product-summary {
  position: sticky;
  top: 112px;
}

.product-summary h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  overflow-wrap: anywhere;
}

.product-summary__intro {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.variant-picker {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.variant-picker__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-weight: 800;
}

.variant-picker__label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.variant-button {
  min-height: 44px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 680;
  cursor: pointer;
}

.variant-button:hover,
.variant-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.product-cta {
  width: 100%;
  margin-top: 12px;
}

.product-price {
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--forest-dark);
  background: var(--mint);
  border: 1px solid rgba(11, 93, 82, 0.18);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.purchase-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-availability {
  color: var(--forest);
}

.price-checked {
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-spec-link {
  display: inline-block;
  margin-top: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.feature-card h3 {
  margin-bottom: 11px;
}

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

.specs-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: 0;
}

.specs-table th {
  width: 34%;
  color: var(--forest-dark);
  background: var(--mint);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.review-stars {
  color: #b46b08;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin-top: 14px;
  font-size: 1.08rem;
}

.review-body {
  margin-top: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.review-card footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.review-card footer strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.site-footer {
  padding: 66px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--forest-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 52px;
}

.site-footer .brand-link img {
  padding: 4px;
  background: var(--white);
  border-radius: 8px;
}

.footer-intro {
  max-width: 320px;
  margin-top: 18px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
}

.notice {
  padding: 18px 20px;
  color: var(--forest-dark);
  background: var(--mint);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
}

.legal-hero {
  padding: 62px 0 34px;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.legal-container {
  max-width: 820px;
}

.legal-updated {
  margin-top: 14px;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-content a {
  color: var(--forest);
  font-weight: 700;
}

.category-intro {
  max-width: 68ch;
}

.faq-container {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--forest);
  font-size: 1.4rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 79px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: block;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    overscroll-behavior: contain;
  }

  .mobile-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav__inner {
    display: grid;
    gap: 8px;
    padding: 22px 24px 44px;
  }

  .mobile-nav a,
  .mobile-products-toggle {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-weight: 760;
    text-decoration: none;
  }

  .mobile-nav a:hover,
  .mobile-products-toggle:hover {
    color: var(--forest);
    background: var(--mint);
  }

  .mobile-products-toggle {
    width: 100%;
    cursor: pointer;
  }

  .mobile-products-list {
    display: none;
    padding: 4px 0 8px 18px;
  }

  .mobile-products-list[data-open="true"] {
    display: grid;
  }

  .mobile-products-list a {
    min-height: 44px;
    color: var(--muted);
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 12px;
    color: var(--white);
    background: var(--forest);
  }

  .hero-home__inner,
  .page-hero__inner,
  .feature-split,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero-home__inner {
    min-height: auto;
    gap: 56px;
  }

  .hero-home__copy {
    max-width: 720px;
  }

  .page-hero__inner {
    gap: 40px;
  }

  .page-hero__image {
    max-width: 720px;
  }

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

  .category-card {
    min-height: 360px;
  }

  .product-summary {
    position: static;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-link img {
    width: 132px;
    height: 47px;
  }

  .mobile-nav {
    top: 71px;
  }

  .hero-home__inner {
    padding: 52px 0 64px;
  }

  .hero-home__visual::before {
    inset: -10px 18px 14px -10px;
  }

  .hero-home__visual img {
    border-width: 5px;
    border-radius: 20px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 12px 0 0 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 20px;
  }

  .category-grid,
  .product-grid,
  .feature-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 350px;
  }

  .feature-split {
    gap: 40px;
  }

  .feature-split__image {
    order: -1;
  }

  .page-hero__inner {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .product-hero {
    gap: 42px;
    padding-bottom: 64px;
  }

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

  .gallery-thumb {
    height: 62px;
  }

  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table th,
  .specs-table td {
    display: block;
  }

  .specs-table th {
    width: 100%;
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .specs-table td {
    padding-top: 7px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
