:root {
  --accent: #1f9d63;
  --accent-dark: #178553;
  --accent-soft: #eaf7f0;
  --text: #111111;
  --muted: #6b7280;
  --light: #9ca3af;
  --border: #e5e7eb;
  --surface: #fafafa;
  --surface-cool: #f6f7f7;
  --white: #ffffff;
  --error: #dc2626;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.09);
  --font: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1280px;
  --radius: 12px;
  --radius-large: 20px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open .site-header {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
}

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

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(31, 157, 99, 0.28);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: block;
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

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

.brand img,
.footer-brand img {
  width: 184px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--accent-dark);
}

.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.my-tags-link {
  padding: 10px 8px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.my-tags-link:hover,
.language-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.language-link {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  border-color: #cfd5dc;
  background: var(--surface-cool);
}

.icon-button:active,
.button:active,
.quick-add:active {
  transform: scale(0.98);
}

.icon-button svg,
.button svg,
.text-link svg,
.mobile-my-tags svg,
.product-badge svg,
.quick-add svg,
.product-benefits svg,
.toast svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 5px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 99px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.cart-count.is-empty {
  display: none;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 78px;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--border);
  background: #ffffff !important;
  box-shadow: 0 18px 40px rgba(17, 24, 20, 0.12);
  isolation: isolate;
  opacity: 1 !important;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #ffffff;
  content: "";
  pointer-events: none;
}

.mobile-nav {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  padding-block: 24px;
  background: #ffffff;
}

.mobile-nav > a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 600;
}

.mobile-nav .mobile-my-tags {
  margin-top: 16px;
  border: 0;
  color: var(--accent-dark);
}

.breadcrumbs {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-intro {
  display: grid;
  min-height: 310px;
  align-items: end;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
  gap: 64px;
  padding: 64px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 88% 18%, rgba(31, 157, 99, 0.16), transparent 24%),
    radial-gradient(circle at 76% 82%, rgba(31, 157, 99, 0.08), transparent 27%),
    linear-gradient(135deg, #f8faf9 0%, #f2f6f3 100%);
  overflow: hidden;
}

.catalog-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.catalog-intro p {
  max-width: 440px;
  margin: 0 0 4px;
  color: #505961;
  font-size: 17px;
  line-height: 1.65;
}

.catalog-section {
  padding-block: 80px 96px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.catalog-toolbar [data-product-count] {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.sort-control {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.sort-control select {
  min-width: 220px;
  height: 48px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin-block: 32px 40px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.filter-row button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.filter-row button:hover {
  border-color: #bfc8c2;
  background: var(--surface-cool);
}

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

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

.product-grid[data-single-result] {
  grid-template-columns: minmax(260px, 304px);
}

.catalog-empty {
  display: grid;
  min-height: 330px;
  place-items: center;
  align-content: center;
  padding: 56px 24px;
  border: 1px dashed #d8dfda;
  border-radius: 18px;
  background: var(--surface-cool);
  text-align: center;
}

.catalog-empty-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 25px;
  font-weight: 700;
}

.catalog-empty h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.catalog-empty p {
  max-width: 520px;
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.catalog-empty .button {
  width: fit-content;
}

.product-card {
  min-width: 0;
  border: 1px solid #ecefed;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: #dfe4e1;
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: var(--surface-cool);
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 157, 99, 0.12);
  border-radius: 999px;
  background: rgba(234, 247, 240, 0.94);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.product-badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.product-card-body {
  padding: 20px;
}

.product-card-copy {
  min-height: 118px;
}

.product-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.product-card h2 a:hover {
  color: var(--accent-dark);
}

.product-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-footer {
  display: flex;
  min-height: 46px;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.product-card-footer strong {
  font-size: 18px;
  font-weight: 700;
}

.quick-add {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--accent-dark);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quick-add:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.product-card-cart {
  display: flex;
  min-width: 44px;
  align-items: center;
  justify-content: flex-end;
}

.quick-quantity {
  display: grid;
  height: 38px;
  grid-template-columns: 38px minmax(42px, auto) 38px;
  gap: 6px;
  color: var(--accent);
}

.quick-quantity button,
.quick-quantity output {
  display: grid;
  min-width: 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
}

.quick-quantity button {
  aspect-ratio: 1;
  cursor: pointer;
  border: 0.75px solid rgba(31, 157, 99, 0.42);
  border-radius: 9px;
  background: var(--white);
  color: var(--accent);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quick-quantity button:hover {
  border-color: var(--accent);
  background: var(--white);
  color: #55b985;
}

.quick-quantity output {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.quick-quantity button:active {
  transform: scale(0.94);
}

.shop-promise {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr;
  gap: 80px;
  margin-bottom: 112px;
  padding: 64px;
  border-radius: var(--radius-large);
  background: var(--surface-cool);
}

.promise-heading h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.promise-steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  gap: 4px;
  list-style: none;
}

.promise-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 18px 0 22px;
  border-bottom: 1px solid #dde1df;
}

.promise-steps li:first-child {
  padding-top: 0;
}

.promise-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.promise-steps li > span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.promise-steps h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.promise-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: block;
  border-top: 1px solid var(--border);
  background: var(--surface-cool);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, 1fr);
  gap: 64px;
  padding-block: 72px 56px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.social-list {
  display: flex;
  gap: 8px;
}

.social-list span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.footer-column a {
  color: var(--muted);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

/* Product page */
.product-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(48px, 7vw, 104px);
  padding-bottom: 112px;
}

.product-gallery {
  position: sticky;
  top: 102px;
  min-width: 0;
}

.product-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-large);
  background: var(--surface-cool);
  overflow: hidden;
}

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

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

.product-thumbnail {
  position: relative;
  aspect-ratio: 1.35;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--surface-cool);
  overflow: hidden;
}

.product-thumbnail::after {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 10px;
  content: "";
  inset: 3px;
  pointer-events: none;
}

.product-thumbnail.is-active {
  border-color: var(--accent);
}

.product-thumbnail.is-active::after {
  border-color: var(--white);
}

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

.product-summary {
  padding-top: 24px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.availability > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.product-summary > h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.product-price {
  margin: 20px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.product-description {
  margin: 0;
  color: #4f5962;
  font-size: 17px;
  line-height: 1.7;
}

.product-option {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.option-label {
  font-size: 13px;
  font-weight: 700;
}

.colour-option {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--text);
  border-radius: 10px;
  background: var(--white);
  font-size: 13px;
  font-weight: 650;
}

.colour-option span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px #cad0cc;
}

.purchase-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.quantity-control {
  display: grid;
  height: 52px;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.quantity-control button,
.quantity-control input {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.quantity-control button {
  color: var(--muted);
  font-size: 20px;
}

.quantity-control button:hover {
  background: var(--surface-cool);
  color: var(--text);
}

.quantity-control input {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(31, 157, 99, 0.18);
}

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: 0 10px 28px rgba(31, 157, 99, 0.25);
}

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

.button-secondary:hover {
  border-color: #cbd2cd;
  background: var(--surface-cool);
}

.add-to-cart svg {
  transition: transform 180ms ease;
}

.add-to-cart:hover svg {
  transform: translateX(3px);
}

.shipping-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  background: var(--surface-cool);
}

.shipping-note > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shipping-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 700;
}

.shipping-note p {
  display: grid;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.shipping-note p span {
  color: var(--muted);
}

.shipping-note small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-benefits {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #3f4842;
  font-size: 13px;
}

.product-benefits svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--accent-dark);
  stroke-width: 2.2;
}

.accordions {
  border-top: 1px solid var(--border);
}

.accordion {
  border-bottom: 1px solid var(--border);
}

.accordion h2 {
  margin: 0;
}

.accordion h2 button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.accordion h2 button span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

.accordion-panel p {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.recommendations {
  padding-block: 96px 112px;
  background: var(--surface);
}

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

.section-heading h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

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

.mobile-buybar {
  display: none;
}

.empty-state {
  display: grid;
  min-height: 60vh;
  place-items: center;
  align-content: center;
  gap: 24px;
  text-align: center;
}

.empty-state h1 {
  margin: 0;
  font-size: 42px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  display: flex;
  max-width: min(380px, calc(100vw - 40px));
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(31, 157, 99, 0.22);
  border-radius: 12px;
  background: #0f271c;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.toast svg {
  flex: 0 0 auto;
  color: #68d99e;
}

/* Cart page */
.cart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-block: 36px 52px;
}

.cart-heading h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.cart-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.cart-heading-count {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-cool);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.cart-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
  gap: clamp(36px, 6vw, 80px);
  padding-bottom: 112px;
}

.cart-items {
  min-width: 0;
  border-top: 1px solid var(--border);
}

.cart-item {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--surface-cool);
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.cart-item-image:hover img {
  transform: scale(1.035);
}

.cart-item-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.cart-item-heading h2 {
  margin: 5px 0 4px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.cart-item-heading h2 a:hover {
  color: var(--accent-dark);
}

.cart-item-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-item-heading > strong {
  flex: 0 0 auto;
  font-size: 17px;
}

.cart-item-status {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-quantity {
  width: 116px;
  height: 44px;
  grid-template-columns: 34px 1fr 34px;
}

.remove-item {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 6px 0 6px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.remove-item:hover {
  color: var(--error);
}

.remove-item svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.continue-shopping {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.continue-shopping svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: rotate(180deg);
  transition: transform 180ms ease;
}

.continue-shopping:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.continue-shopping:hover svg {
  transform: rotate(180deg) translateX(3px);
}

.order-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-cool);
}

.order-summary > h2 {
  margin: 0 0 24px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.order-summary dl {
  display: grid;
  margin: 0;
  gap: 14px;
}

.order-summary dl > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.order-summary dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  text-align: right;
}

.order-summary dl > .summary-total {
  align-items: center;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid #dfe3e0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.summary-total dd {
  font-size: 22px;
}

.summary-tax-note {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.checkout-button {
  width: 100%;
}

.checkout-button svg {
  transition: transform 180ms ease;
}

.checkout-button:hover svg {
  transform: translateX(3px);
}

.summary-trust {
  display: grid;
  margin: 24px 0 16px;
  padding: 20px 0 0;
  border-top: 1px solid #dfe3e0;
  gap: 13px;
  list-style: none;
}

.summary-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #465048;
  font-size: 12px;
  font-weight: 600;
}

.summary-trust svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.order-summary > small {
  display: block;
  color: var(--light);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.empty-cart {
  display: grid;
  min-height: 620px;
  place-items: center;
  align-content: center;
  padding-block: 80px 120px;
  text-align: center;
}

.empty-cart-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.empty-cart-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.empty-cart h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.empty-cart p {
  max-width: 480px;
  margin: 16px 0 28px;
  color: var(--muted);
}

/* Checkout page */
.checkout-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  padding-block: 28px 56px;
}

.checkout-heading h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.checkout-heading p {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.checkout-steps {
  display: flex;
  min-width: 390px;
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  position: relative;
  display: grid;
  min-width: 130px;
  place-items: center;
  color: var(--light);
  font-size: 11px;
  font-weight: 650;
}

.checkout-steps li::before {
  position: absolute;
  z-index: -1;
  top: 15px;
  right: 50%;
  left: -50%;
  height: 1px;
  background: var(--border);
  content: "";
}

.checkout-steps li:first-child::before {
  display: none;
}

.checkout-steps li > span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 7px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 11px;
}

.checkout-steps li > span svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.checkout-steps li.is-complete,
.checkout-steps li.is-active {
  color: var(--accent-dark);
}

.checkout-steps li.is-complete > span {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.checkout-steps li.is-active > span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.checkout-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: clamp(48px, 7vw, 96px);
  padding-bottom: 120px;
}

.checkout-form {
  min-width: 0;
}

.checkout-form-section {
  padding-block: 42px;
  border-top: 1px solid var(--border);
}

.checkout-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.form-section-heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
}

.form-section-heading h2 {
  margin: 2px 0 0;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.form-section-heading p {
  max-width: 570px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-left: 58px;
}

.form-field {
  display: grid;
  align-content: start;
}

.form-field.field-full {
  grid-column: 1 / -1;
}

.phone-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  grid-column: 1 / -1;
}

.phone-group > legend {
  margin-bottom: 8px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
}

.phone-grid {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 10px;
}

.form-field label {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.form-field label span {
  color: var(--light);
  font-weight: 500;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field select {
  padding-right: 38px;
}

.form-field input:hover,
.form-field select:hover {
  border-color: #cbd2cd;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 157, 99, 0.12);
  outline: none;
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: var(--error);
  background: #fffafa;
}

.field-error {
  min-height: 18px;
  margin-top: 4px;
  color: var(--error);
  font-size: 11px;
  line-height: 1.35;
}

.delivery-option {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  margin-left: 58px;
  padding: 16px 18px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f5fbf8);
  cursor: pointer;
}

.delivery-option > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.delivery-radio {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--white);
}

.delivery-radio::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.delivery-option > span:nth-of-type(2) {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.delivery-option svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.delivery-option > span:nth-of-type(3) {
  display: grid;
}

.delivery-option strong {
  font-size: 13px;
}

.delivery-option small {
  color: var(--muted);
  font-size: 11px;
}

.delivery-option > b {
  max-width: 130px;
  font-size: 11px;
  text-align: right;
}

.terms-field {
  display: grid;
  margin-left: 58px;
}

.terms-field > label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.terms-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.terms-field label > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #cfd5d1;
  border-radius: 5px;
  background: var(--white);
  color: transparent;
}

.terms-field label > span svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.terms-field input:checked + span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.terms-field input:focus-visible + span {
  outline: 3px solid rgba(31, 157, 99, 0.28);
  outline-offset: 3px;
}

.terms-field.has-error label > span {
  border-color: var(--error);
}

.terms-field label > b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.terms-field a {
  color: var(--text);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-left: 58px;
}

.back-to-cart svg {
  transform: rotate(180deg);
}

.checkout-form-actions .button {
  min-width: 240px;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-cool);
}

.checkout-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.checkout-summary-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.checkout-summary-heading a {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-summary > ul {
  display: grid;
  margin: 0;
  padding: 0 0 20px;
  border-bottom: 1px solid #dfe3e0;
  gap: 14px;
  list-style: none;
}

.checkout-summary-item {
  display: grid;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
}

.summary-item-image {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #e7ebe8;
  border-radius: 10px;
  background: var(--white);
}

.summary-item-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.summary-item-image b {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  place-items: center;
  border: 2px solid var(--surface-cool);
  border-radius: 99px;
  background: var(--text);
  color: var(--white);
  font-size: 9px;
}

.checkout-summary-item > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.checkout-summary-item > span:nth-child(2) strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-item small {
  color: var(--muted);
  font-size: 10px;
}

.checkout-summary-item > strong {
  font-size: 12px;
}

.checkout-summary dl {
  display: grid;
  margin: 20px 0 0;
  gap: 13px;
}

.checkout-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-summary dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  text-align: right;
}

.checkout-summary dl > .summary-total {
  align-items: center;
  margin-top: 5px;
  padding-top: 18px;
  border-top: 1px solid #dfe3e0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.checkout-summary .summary-total dd {
  font-size: 20px;
}

.checkout-summary .summary-trust {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-summary > small {
  display: block;
  color: var(--light);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

/* Payment result and 404 pages */
.status-shell {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(48px, 7vw, 96px);
  margin-block: 56px 96px;
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid #edf0ee;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 15% 22%, rgba(31, 157, 99, 0.06), transparent 29%),
    linear-gradient(135deg, #ffffff, #f8faf9);
}

.status-shell.is-cancelled {
  background:
    radial-gradient(circle at 15% 22%, rgba(220, 38, 38, 0.045), transparent 29%),
    linear-gradient(135deg, #ffffff, #faf9f9);
}

.status-shell.is-cancelled .status-visual {
  aspect-ratio: 2.05;
}

.status-visual {
  position: relative;
  aspect-ratio: 1.85;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.status-visual img {
  width: 100%;
  height: auto;
  object-position: top;
}

.status-content {
  max-width: 520px;
}

.status-content .eyebrow {
  margin-bottom: 14px;
}

.status-shell.is-cancelled .eyebrow {
  color: var(--error);
}

.status-content h1 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.status-description {
  margin: 20px 0 28px;
  color: #4f5962;
  font-size: 16px;
  line-height: 1.7;
}

.status-note {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.status-note h2 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.status-note ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.status-note li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.status-note li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.status-shell.is-cancelled .status-note li svg {
  stroke: var(--error);
}

.status-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .catalog-intro {
    gap: 40px;
    padding: 48px;
  }

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

  .product-grid .product-card:last-child:nth-child(4) {
    display: none;
  }

  [data-product-grid].product-grid .product-card:last-child:nth-child(4) {
    display: block;
  }

  .product-layout {
    gap: 48px;
  }

  .footer-grid {
    gap: 36px;
  }

  .checkout-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  .desktop-nav,
  .my-tags-link {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .catalog-intro {
    min-height: 360px;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-intro p {
    max-width: 590px;
  }

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

  .shop-promise {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .product-gallery {
    position: static;
  }

  .product-summary {
    max-width: 680px;
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

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

  .order-summary {
    position: static;
    max-width: 620px;
  }

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

  .checkout-form {
    grid-row: 2;
  }

  .checkout-summary {
    position: static;
    max-width: 660px;
    grid-row: 1;
  }

  .status-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .status-content {
    max-width: 680px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 15px;
  }

  .site-header {
    background: #ffffff;
    backdrop-filter: none;
  }

  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 142px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-link {
    display: none;
  }

  .mobile-menu {
    top: 66px;
  }

  .breadcrumbs {
    min-height: 54px;
  }

  .catalog-intro {
    min-height: 370px;
    gap: 28px;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .catalog-intro h1 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .catalog-intro p {
    font-size: 15px;
    line-height: 1.6;
  }

  .catalog-section {
    padding-block: 64px 72px;
  }

  .catalog-toolbar {
    display: grid;
    align-items: start;
    gap: 24px;
  }

  .catalog-toolbar h2 {
    font-size: 27px;
  }

  .sort-control select {
    width: 100%;
  }

  .filter-row {
    width: 100%;
    margin-block: 26px 30px;
    padding-inline: 16px;
  }

  .filter-row.container {
    width: 100%;
  }

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

  .product-grid[data-single-result] {
    grid-template-columns: minmax(0, calc((100% - 12px) / 2));
  }

  .product-card-copy {
    min-height: 82px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card h2 {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.3;
  }

  .product-card p {
    font-size: 11px;
    line-height: 1.45;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    min-height: 24px;
    padding: 3px 7px;
    gap: 4px;
    font-size: 9px;
  }

  .product-badge svg {
    width: 11px;
    height: 11px;
  }

  .product-card-footer {
    min-height: 38px;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .product-card-footer strong {
    font-size: 15px;
  }

  .quick-add {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .quick-add svg {
    width: 18px;
    height: 18px;
  }

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

  .quick-quantity {
    height: 31px;
    grid-template-columns: 31px minmax(36px, auto) 31px;
    gap: 4px;
  }

  .quick-quantity button {
    border-radius: 8px;
  }

  .quick-quantity output {
    font-size: 13px;
  }

  .shop-promise {
    gap: 34px;
    margin-bottom: 80px;
    padding: 36px 24px;
    border-radius: 16px;
  }

  .promise-heading h2 {
    font-size: 32px;
  }

  .promise-steps li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 56px 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .footer-bottom {
    min-height: 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .product-layout {
    width: 100%;
    gap: 36px;
    padding-bottom: 72px;
  }

  .product-gallery-main {
    border-radius: 0;
  }

  .product-thumbnails,
  .product-summary {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .product-thumbnails {
    gap: 8px;
  }

  .product-thumbnail {
    border-radius: 10px;
  }

  .product-summary > h1 {
    font-size: 38px;
  }

  .product-price {
    margin-block: 14px;
    font-size: 25px;
  }

  .product-description {
    font-size: 15px;
  }

  .purchase-row {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .recommendations {
    padding-block: 72px 96px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .mobile-buybar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(170px, 1.3fr);
    gap: 10px;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(16px);
  }

  .mobile-buybar > div {
    display: grid;
    min-width: 0;
    align-content: center;
  }

  .mobile-buybar > div span {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buybar > div strong {
    font-size: 16px;
  }

  .mobile-buybar .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 12px;
  }

  body[data-page="product"] .site-footer {
    padding-bottom: 74px;
  }

  .toast {
    right: 16px;
    bottom: 82px;
    left: 16px;
    max-width: none;
  }

  .cart-heading {
    display: grid;
    align-items: start;
    gap: 20px;
    padding-block: 24px 38px;
  }

  .cart-heading h1 {
    font-size: 40px;
  }

  .cart-heading p {
    font-size: 14px;
  }

  .cart-heading-count {
    width: fit-content;
  }

  .cart-layout {
    gap: 42px;
    padding-bottom: 80px;
  }

  .cart-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding-block: 20px;
  }

  .cart-item-heading {
    display: grid;
    gap: 8px;
  }

  .cart-item-heading h2 {
    margin-top: 2px;
    font-size: 15px;
  }

  .cart-item-heading p {
    display: none;
  }

  .cart-item-heading > strong {
    font-size: 14px;
  }

  .cart-item-status {
    font-size: 9px;
  }

  .cart-item-actions {
    align-items: end;
  }

  .cart-quantity {
    width: 104px;
    height: 40px;
    grid-template-columns: 30px 1fr 30px;
  }

  .remove-item {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 9px;
  }

  .remove-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .order-summary {
    padding: 24px 20px;
  }

  .empty-cart {
    min-height: 540px;
    padding-block: 64px 96px;
  }

  .empty-cart-icon {
    width: 76px;
    height: 76px;
  }

  .checkout-breadcrumbs {
    font-size: 11px;
  }

  .checkout-heading {
    gap: 28px;
    padding-block: 24px 40px;
  }

  .checkout-heading h1 {
    font-size: 39px;
  }

  .checkout-heading p {
    font-size: 14px;
  }

  .checkout-steps {
    width: 100%;
    min-width: 0;
  }

  .checkout-steps li {
    min-width: 0;
    flex: 1;
  }

  .checkout-layout {
    gap: 52px;
    padding-bottom: 88px;
  }

  .checkout-summary {
    width: 100%;
    padding: 22px 18px;
  }

  .checkout-form-section {
    padding-block: 36px;
  }

  .form-section-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }

  .form-section-heading > span {
    width: 31px;
    height: 31px;
  }

  .form-section-heading h2 {
    font-size: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0;
  }

  .form-field.field-full {
    grid-column: auto;
  }

  .phone-group {
    grid-column: auto;
  }

  .phone-grid {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 8px;
  }

  .delivery-option {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    margin-left: 0;
    padding: 15px;
  }

  .delivery-option > span:nth-of-type(2) {
    display: none;
  }

  .delivery-option > span:nth-of-type(3) {
    grid-column: 2;
  }

  .delivery-option > b {
    max-width: none;
    grid-column: 2;
    text-align: left;
  }

  .terms-field,
  .checkout-form-actions {
    margin-left: 0;
    padding-left: 0;
  }

  .checkout-form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .checkout-form-actions .button {
    width: 100%;
    min-width: 0;
  }

  .checkout-summary-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .status-shell {
    width: calc(100% - 32px);
    gap: 32px;
    margin-block: 24px 72px;
    padding: 18px 18px 28px;
    border-radius: 16px;
  }

  .status-visual {
    aspect-ratio: 1.7;
    border-radius: 12px;
  }

  .status-content h1 {
    font-size: 38px;
  }

  .status-description {
    margin-block: 15px 22px;
    font-size: 14px;
  }

  .status-note {
    padding: 18px;
  }

  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .status-actions .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .header-actions .cart-button,
  .header-actions .menu-button {
    width: 42px;
    height: 42px;
  }

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

  .quantity-control {
    width: 128px;
  }

  .mobile-buybar {
    grid-template-columns: 90px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Blog and news articles */
.blog-intro {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  margin-top: 10px;
  padding: clamp(48px, 7vw, 88px);
  border: 1px solid #edf0ee;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 86% 20%, rgba(31, 157, 99, 0.16), transparent 22%),
    radial-gradient(circle at 72% 84%, rgba(31, 157, 99, 0.08), transparent 27%),
    linear-gradient(135deg, #ffffff 35%, #f1f8f4);
  overflow: hidden;
}

.blog-intro::after {
  position: absolute;
  right: clamp(36px, 7vw, 96px);
  width: clamp(170px, 24vw, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 157, 99, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(31, 157, 99, 0.035),
    0 0 0 76px rgba(31, 157, 99, 0.025);
  content: "";
}

.blog-intro > * {
  position: relative;
  z-index: 1;
}

.blog-intro h1 {
  max-width: 850px;
  margin: 12px 0 22px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.blog-intro p {
  max-width: 680px;
  margin: 0;
  color: #4f5962;
  font-size: 17px;
  line-height: 1.7;
}

.blog-list {
  padding-block: 92px 120px;
}

.blog-section-heading {
  margin-bottom: 34px;
}

.blog-section-heading > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

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

.article-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover {
  border-color: #d7ddd9;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.article-card-image {
  display: block;
  aspect-ratio: 2.15;
  background: var(--surface-cool);
  overflow: hidden;
}

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

.article-card:hover .article-card-image img {
  transform: scale(1.018);
}

.article-card-body {
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.article-meta span:first-child {
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.article-card h2 {
  margin: 18px 0 13px;
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.article-card h2 a:hover {
  color: var(--accent-dark);
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-link,
.article-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
}

.article-link span,
.article-back span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.article-link:hover span {
  transform: translateX(4px);
}

.article-breadcrumbs {
  overflow: hidden;
  white-space: nowrap;
}

.article-breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-header {
  max-width: 1050px;
  padding-block: clamp(42px, 7vw, 92px) clamp(36px, 5vw, 64px);
  text-align: center;
}

.article-header .article-meta {
  justify-content: center;
}

.article-header h1 {
  margin: 20px auto 24px;
  font-size: clamp(44px, 6.25vw, 76px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.045;
}

.article-header > p {
  max-width: 740px;
  margin: 0 auto;
  color: #58616a;
  font-size: 18px;
  line-height: 1.7;
}

.article-hero {
  margin-top: 0;
  margin-bottom: clamp(58px, 7vw, 90px);
  border-radius: var(--radius-large);
  background: var(--surface-cool);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 2.7;
  object-fit: cover;
}

.article-content.container {
  width: min(100% - 40px, 840px);
  padding-bottom: 120px;
  color: #303840;
  font-size: 17px;
  line-height: 1.85;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content .article-lead {
  margin-bottom: 28px;
  color: #1c252c;
  font-size: 21px;
  line-height: 1.7;
}

.article-content h2 {
  margin: 64px 0 22px;
  color: var(--text);
  font-size: clamp(31px, 4vw, 42px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.article-content h3 {
  position: relative;
  margin: 42px 0 12px;
  padding-left: 22px;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-content h3::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.article-content ul {
  display: grid;
  margin: -4px 0 28px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 28px;
}

.article-content li::before {
  position: absolute;
  top: 0.72em;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.article-cta {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 72px;
  padding: 34px;
  border: 1px solid #dcebe3;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6fbf8, #eef8f3);
}

.article-content .article-cta h2 {
  margin: 8px 0 0;
  font-size: 25px;
}

.article-cta .button {
  min-width: 190px;
}

.article-back {
  margin-top: 42px;
}

.article-back:hover span {
  transform: translateX(-4px);
}

@media (max-width: 900px) {
  .blog-intro::after {
    right: -40px;
    opacity: 0.7;
  }

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

  .article-card-image {
    aspect-ratio: 2.35;
  }
}

@media (max-width: 639px) {
  .blog-intro {
    min-height: 400px;
    padding: 34px 24px;
    border-radius: 16px;
  }

  .blog-intro::after {
    right: -78px;
    bottom: -64px;
  }

  .blog-intro h1 {
    margin-block: 10px 18px;
    font-size: 43px;
  }

  .blog-intro p {
    font-size: 14px;
  }

  .blog-list {
    padding-block: 68px 86px;
  }

  .blog-section-heading {
    align-items: end;
    flex-direction: row;
  }

  .article-card-image {
    aspect-ratio: 1.75;
  }

  .article-card h2 {
    font-size: 24px;
  }

  .article-breadcrumbs a:first-child,
  .article-breadcrumbs span:first-of-type {
    display: none;
  }

  .article-header {
    padding-block: 36px 38px;
    text-align: left;
  }

  .article-header .article-meta {
    justify-content: flex-start;
  }

  .article-header h1 {
    margin-block: 17px 18px;
    font-size: 40px;
  }

  .article-header > p {
    font-size: 15px;
  }

  .article-hero {
    width: 100%;
    margin-bottom: 48px;
    border-radius: 0;
  }

  .article-hero img {
    aspect-ratio: 1.75;
  }

  .article-content.container {
    width: calc(100% - 32px);
    padding-bottom: 86px;
    font-size: 16px;
    line-height: 1.78;
  }

  .article-content .article-lead {
    font-size: 18px;
  }

  .article-content h2 {
    margin-top: 50px;
    font-size: 31px;
  }

  .article-content h3 {
    margin-top: 35px;
    font-size: 20px;
  }

  .article-cta {
    grid-template-columns: 1fr;
    margin-top: 54px;
    padding: 25px;
  }

  .article-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-card,
  .article-card-image img,
  .article-link span,
  .article-back span {
    transition-duration: 0.01ms !important;
  }
}

/* About page */
.about-header {
  max-width: 1040px;
  padding-block: clamp(62px, 9vw, 118px) clamp(54px, 7vw, 84px);
  text-align: center;
}

.about-header h1 {
  margin: 12px 0 18px;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-tagline {
  max-width: 700px;
  margin: 0 auto;
  color: #4f5962;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.45;
}

.about-opening {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(46px, 8vw, 110px);
  padding-block: clamp(48px, 6vw, 74px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-opening p {
  margin-top: 0;
}

.about-opening-lead {
  color: var(--text);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.36;
}

.about-opening-copy {
  color: #4f5962;
  font-size: 16px;
  line-height: 1.8;
}

.about-opening-copy p {
  margin-bottom: 20px;
}

.about-opening-copy p:last-child {
  margin-bottom: 0;
}

.about-stories {
  padding-block: clamp(100px, 11vw, 148px);
}

.about-story {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-areas:
    "title image"
    "body image";
  column-gap: clamp(54px, 7vw, 100px);
  row-gap: 24px;
}

.about-story + .about-story {
  margin-top: clamp(108px, 13vw, 174px);
}

.about-story.is-reversed {
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas:
    "image title"
    "image body";
}

.about-story h2 {
  grid-area: title;
  align-self: end;
  margin: 0;
  font-size: clamp(37px, 4vw, 53px);
  font-weight: 650;
  letter-spacing: -0.047em;
  line-height: 1.08;
}

.about-story-image {
  grid-area: image;
  margin: 0;
  border-radius: 18px;
  background: var(--surface-cool);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.about-story-body {
  grid-area: body;
  align-self: start;
  color: #4f5962;
  font-size: 15px;
  line-height: 1.75;
}

.about-story-body p {
  margin: 0 0 18px;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-story-body strong {
  color: var(--text);
}

.about-story-body ul {
  display: grid;
  margin: -2px 0 23px;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.about-story-body li {
  position: relative;
  padding-left: 21px;
}

.about-story-body li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.about-story-body .about-use-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

.about-mission {
  margin-bottom: 120px;
  padding: clamp(48px, 7vw, 86px);
  border: 1px solid #dcebe3;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 157, 99, 0.13), transparent 24%),
    linear-gradient(135deg, #f8fcfa, #edf8f2);
  text-align: center;
}

.about-mission h2 {
  max-width: 800px;
  margin: 12px auto 24px;
  font-size: clamp(40px, 5.5vw, 65px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.about-mission > p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #4f5962;
  font-size: 16px;
  line-height: 1.75;
}

.about-mission-statement {
  display: block;
  max-width: 800px;
  margin: 32px auto 0;
  color: #173c2a;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 650;
  line-height: 1.45;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.about-actions .button {
  min-width: 190px;
}

@media (max-width: 980px) {
  .about-story,
  .about-story.is-reversed {
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
    column-gap: 42px;
  }

  .about-story {
    grid-template-areas:
      "title image"
      "body image";
  }

  .about-story.is-reversed {
    grid-template-areas:
      "image title"
      "image body";
  }

  .about-story-body .about-use-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-opening {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story,
  .about-story.is-reversed {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "body";
    gap: 25px;
  }

  .about-story-body .about-use-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .about-header {
    padding-block: 46px 48px;
    text-align: left;
  }

  .about-header h1 {
    margin-block: 10px 14px;
    font-size: 55px;
  }

  .about-tagline {
    font-size: 20px;
  }

  .about-opening {
    padding-block: 38px;
  }

  .about-opening-lead {
    font-size: 25px;
  }

  .about-opening-copy {
    font-size: 15px;
  }

  .about-stories {
    padding-block: 78px 88px;
  }

  .about-story + .about-story {
    margin-top: 88px;
  }

  .about-story h2 {
    font-size: 37px;
  }

  .about-story-image {
    width: calc(100% + 32px);
    margin-left: -16px;
    border-radius: 0;
  }

  .about-story-image img {
    aspect-ratio: 1.42;
  }

  .about-story-body {
    font-size: 15px;
  }

  .about-mission {
    width: calc(100% - 32px);
    margin-bottom: 84px;
    padding: 38px 24px;
    border-radius: 16px;
    text-align: left;
  }

  .about-mission h2 {
    font-size: 39px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .button {
    width: 100%;
  }
}

/* Legal and privacy pages */
.legal-header {
  max-width: 1100px;
  padding-block: clamp(58px, 8vw, 104px) clamp(54px, 7vw, 88px);
  overflow-wrap: anywhere;
  text-align: center;
}

.legal-header h1 {
  margin: 14px auto 24px;
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.legal-header > p {
  max-width: 760px;
  margin: 0 auto;
  color: #566069;
  font-size: 17px;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(58px, 8vw, 110px);
  padding-top: 58px;
  padding-bottom: 120px;
  border-top: 1px solid var(--border);
}

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-cool);
}

.legal-toc h2 {
  margin: 0 0 17px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 3px;
}

.legal-toc a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.legal-toc a:hover {
  color: var(--accent-dark);
}

.legal-content {
  min-width: 0;
  color: #46515a;
  font-size: 16px;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.legal-content section {
  scroll-margin-top: 110px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--border);
}

.legal-content section + section {
  padding-top: 58px;
}

.legal-content section h2 {
  display: grid;
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(28px, 3.5vw, 39px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-content section h2 span {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.legal-clause {
  margin: 0 0 23px;
}

.legal-clause:last-child {
  margin-bottom: 0;
}

.legal-clause b {
  color: #1c252c;
  font-weight: 750;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-placeholder {
  padding: 2px 5px;
  border-radius: 4px;
  background: #fff0c7;
  box-decoration-break: clone;
  color: #744d00;
  font-weight: 750;
  -webkit-box-decoration-break: clone;
}

.legal-draft-note {
  display: grid;
  margin-bottom: 48px;
  padding: 19px 21px;
  border: 1px solid #f0d38a;
  border-radius: 12px;
  background: #fffaf0;
  color: #72551a;
  font-size: 12px;
  line-height: 1.55;
}

.legal-draft-note strong {
  margin-bottom: 3px;
  color: #5e420c;
  font-size: 13px;
}

.legal-alpha-list {
  display: grid;
  margin: 17px 0 0;
  padding-left: 24px;
  gap: 10px;
  list-style-type: lower-alpha;
}

.legal-alpha-list li {
  padding-left: 7px;
}

.legal-emphasis {
  padding: 24px;
  border: 1px solid #cfe7da;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: #f5fbf8;
  color: #294236;
}

.legal-consent-note,
.legal-privacy-summary {
  display: grid;
  align-items: start;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  margin-top: 58px;
  padding: 26px;
  border: 1px solid #dcebe3;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fcf9, #edf8f2);
}

.legal-consent-note > span,
.legal-privacy-summary > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 19px;
  font-weight: 750;
}

.legal-consent-note strong,
.legal-privacy-summary strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 15px;
}

.legal-consent-note p,
.legal-privacy-summary p {
  margin: 0;
  color: #526159;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .legal-content {
    max-width: 780px;
  }
}

@media (max-width: 639px) {
  .legal-header {
    padding-block: 42px 52px;
    text-align: left;
  }

  .legal-header h1 {
    margin-block: 11px 18px;
    font-size: 40px;
  }

  .legal-header > p {
    font-size: 14px;
  }

  .legal-layout {
    gap: 42px;
    padding-top: 38px;
    padding-bottom: 84px;
  }

  .legal-toc {
    padding: 18px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content {
    font-size: 15px;
    line-height: 1.78;
  }

  .legal-content section {
    padding-bottom: 45px;
  }

  .legal-content section + section {
    padding-top: 45px;
  }

  .legal-content section h2 {
    font-size: 29px;
  }

  .legal-emphasis {
    padding: 20px;
  }

  .legal-consent-note,
  .legal-privacy-summary {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    padding: 20px;
  }

  .legal-consent-note > span,
  .legal-privacy-summary > span {
    width: 36px;
    height: 36px;
  }
}

/* Business page */
.business-hero {
  position: relative;
  min-height: 490px;
  margin-top: 10px;
  border-radius: var(--radius-large);
  background: #17211d;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.business-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 12, 0.82), rgba(7, 16, 12, 0.12) 62%, transparent);
  content: "";
}

.business-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-hero-copy {
  position: absolute;
  z-index: 1;
  bottom: clamp(38px, 6vw, 72px);
  left: clamp(34px, 6vw, 76px);
  max-width: 620px;
  color: var(--white);
}

.business-hero-copy .eyebrow {
  color: #73dda7;
}

.business-hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(51px, 6.6vw, 82px);
  font-weight: 650;
  letter-spacing: -0.057em;
  line-height: 0.98;
}

.business-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 23px);
}

.business-intro {
  max-width: 1050px;
  padding-block: clamp(78px, 9vw, 118px);
  text-align: center;
}

.business-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: #59636c;
  font-size: 17px;
  line-height: 1.75;
}

.business-intro .business-intro-lead {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 43px);
  font-weight: 570;
  letter-spacing: -0.037em;
  line-height: 1.35;
}

.business-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.business-column {
  padding: clamp(42px, 5vw, 68px);
}

.business-column.is-muted {
  border-left: 1px solid var(--border);
  background: #f3f4f4;
}

.business-column-number {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.business-column h2 {
  margin: 13px 0 22px;
  font-size: clamp(34px, 3.6vw, 47px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.business-column p {
  margin: 0 0 19px;
  color: #58626a;
  font-size: 15px;
  line-height: 1.72;
}

.business-column ul {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.business-column li {
  position: relative;
  padding-left: 23px;
  color: #303a42;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.business-column li::before {
  position: absolute;
  top: 0.67em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.business-production {
  padding-block: clamp(100px, 11vw, 148px);
}

.business-section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.business-section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(43px, 5.4vw, 67px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.business-production > p {
  max-width: 890px;
  margin: 0 0 17px;
  color: #58626a;
  font-size: 16px;
  line-height: 1.75;
}

.business-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.business-benefits li {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 25px;
  border-right: 1px solid var(--border);
  color: #273139;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.business-benefits li:last-child {
  border-right: 0;
}

.business-benefits span {
  color: var(--accent-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.business-project {
  max-width: 1000px;
  padding-bottom: clamp(100px, 11vw, 148px);
  text-align: center;
}

.business-project h2 {
  margin: 0 0 27px;
  font-size: clamp(43px, 5.2vw, 65px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.business-project p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #58626a;
  font-size: 16px;
  line-height: 1.75;
}

.business-contact {
  padding-block: clamp(78px, 9vw, 120px);
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 157, 99, 0.2), transparent 25%),
    #14251c;
}

.business-contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(54px, 8vw, 110px);
}

.business-contact-copy {
  padding-top: 24px;
  color: var(--white);
}

.business-contact-copy .eyebrow {
  color: #73dda7;
}

.business-contact-copy h2 {
  margin: 13px 0 22px;
  font-size: clamp(41px, 5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.business-contact-copy p {
  max-width: 480px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.business-contact-copy > a {
  color: #8ce3b5;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.business-form-shell {
  min-height: 570px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

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

.business-field {
  display: grid;
  align-content: start;
}

.business-field-full {
  grid-column: 1 / -1;
}

.business-field label {
  margin-bottom: 7px;
  color: #222b31;
  font-size: 12px;
  font-weight: 700;
}

.business-field label span {
  color: var(--light);
  font-weight: 500;
}

.business-field input,
.business-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.business-field input {
  height: 50px;
  padding-inline: 14px;
}

.business-field textarea {
  min-height: 170px;
  padding: 13px 14px;
  line-height: 1.6;
  resize: vertical;
}

.business-field input:focus,
.business-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 157, 99, 0.12);
  outline: none;
}

.business-field.has-error input,
.business-field.has-error textarea {
  border-color: var(--error);
}

.business-field-error {
  min-height: 20px;
  padding-top: 4px;
  color: var(--error);
  font-size: 11px;
  line-height: 1.35;
}

.business-form .button {
  width: 100%;
  margin-top: 10px;
}

.business-form-success {
  display: grid;
  min-height: 478px;
  align-content: center;
  justify-items: start;
}

.business-form-success > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 24px;
  font-weight: 750;
}

.business-form-success h3 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 43px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.business-form-success p {
  max-width: 590px;
  margin: 0;
  color: #58626a;
  font-size: 15px;
  line-height: 1.75;
}

.business-form-success button {
  margin-top: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
}

@media (max-width: 1000px) {
  .business-contact-layout {
    grid-template-columns: 1fr;
  }

  .business-contact-copy {
    max-width: 680px;
  }

  .business-form-shell {
    max-width: 760px;
  }
}

@media (max-width: 800px) {
  .business-columns {
    grid-template-columns: 1fr;
  }

  .business-column.is-muted {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

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

  .business-benefits li:nth-child(2) {
    border-right: 0;
  }

  .business-benefits li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 639px) {
  .business-hero {
    min-height: 0;
    padding: 0;
    border-radius: 16px;
    background: var(--white);
  }

  .business-hero::after {
    display: none;
  }

  .business-hero > img {
    position: static;
    height: auto;
    aspect-ratio: 1.35;
    object-fit: cover;
    object-position: center;
  }

  .business-hero-copy {
    position: static;
    max-width: none;
    padding: 28px 23px 32px;
    color: var(--text);
  }

  .business-hero-copy .eyebrow {
    color: var(--accent-dark);
  }

  .business-hero-copy h1 {
    margin-block: 10px 13px;
    font-size: 47px;
  }

  .business-hero-copy p {
    color: #58626a;
    font-size: 16px;
  }

  .business-intro {
    padding-block: 66px;
    text-align: left;
  }

  .business-intro .business-intro-lead {
    font-size: 28px;
  }

  .business-intro p {
    font-size: 15px;
  }

  .business-columns {
    width: calc(100% - 32px);
    border-radius: 16px;
  }

  .business-column {
    padding: 34px 24px;
  }

  .business-column h2 {
    font-size: 36px;
  }

  .business-production {
    padding-block: 82px;
  }

  .business-section-heading h2,
  .business-project h2 {
    font-size: 42px;
  }

  .business-benefits {
    grid-template-columns: 1fr;
  }

  .business-benefits li,
  .business-benefits li:nth-child(2) {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .business-benefits li:last-child {
    border-bottom: 0;
  }

  .business-project {
    padding-bottom: 88px;
    text-align: left;
  }

  .business-contact {
    padding-block: 66px;
  }

  .business-contact-layout {
    gap: 42px;
  }

  .business-contact-copy {
    padding-top: 0;
  }

  .business-contact-copy h2 {
    font-size: 43px;
  }

  .business-form-shell {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .business-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-field-full {
    grid-column: auto;
  }

  .business-form-success {
    min-height: 460px;
  }
}

/* Contact page */
.contact-header {
  max-width: 930px;
  padding-block: clamp(62px, 9vw, 112px) clamp(56px, 7vw, 84px);
  text-align: center;
}

.contact-header h1 {
  margin: 12px 0 20px;
  font-size: clamp(62px, 9vw, 104px);
  font-weight: 650;
  letter-spacing: -0.063em;
  line-height: 0.95;
}

.contact-header p {
  max-width: 670px;
  margin: 0 auto;
  color: #566069;
  font-size: 17px;
  line-height: 1.7;
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 22px;
}

.contact-card {
  position: relative;
  min-height: 430px;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--white);
  overflow: hidden;
}

.contact-company-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 157, 99, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7faf8);
}

.contact-whatsapp-card {
  background: #edf8f2;
}

.contact-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid #cfe7da;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-dark);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-card h2 {
  margin: 11px 0 25px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 650;
  letter-spacing: -0.047em;
  line-height: 1.08;
}

.contact-details {
  display: grid;
  max-width: 570px;
  margin: 0;
  gap: 0;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  padding-block: 13px;
  border-top: 1px solid var(--border);
}

.contact-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: #252e34;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-details a,
.contact-channel-card > a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-whatsapp-card p {
  max-width: 380px;
  margin: 0 0 28px;
  color: #566069;
  font-size: 14px;
  line-height: 1.7;
}

.contact-whatsapp-card .button {
  width: fit-content;
  min-width: 210px;
}

.contact-channels {
  padding-block: clamp(98px, 11vw, 146px);
}

.contact-section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.contact-section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

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

.contact-channel-card {
  display: grid;
  min-height: 350px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-channel-card:hover {
  border-color: #d5ddd8;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-channel-card .contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
}

.contact-channel-card h3 {
  margin: 0 0 13px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.contact-channel-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-channel-card > a {
  align-self: end;
  margin-top: auto;
  font-size: 12px;
  font-weight: 750;
}

.contact-form-section {
  padding-block: clamp(78px, 9vw, 118px);
  background: #f3f4f4;
}

.contact-form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 8vw, 110px);
}

.contact-form-copy {
  padding-top: 22px;
}

.contact-form-copy h2 {
  margin: 12px 0 22px;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.contact-form-copy p {
  max-width: 470px;
  margin: 0;
  color: #566069;
  font-size: 15px;
  line-height: 1.75;
}

.contact-form-shell {
  min-height: 590px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.business-field select {
  width: 100%;
  height: 50px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: inherit;
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.business-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 157, 99, 0.12);
  outline: none;
}

.business-field.has-error select {
  border-color: var(--error);
}

.contact-form .button {
  width: 100%;
  margin-top: 10px;
}

.contact-form-success {
  min-height: 495px;
}

@media (max-width: 1000px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    max-width: 680px;
  }

  .contact-form-shell {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .contact-overview {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel-card {
    min-height: 290px;
  }
}

@media (max-width: 639px) {
  .contact-header {
    padding-block: 46px 54px;
    text-align: left;
  }

  .contact-header h1 {
    margin-block: 10px 15px;
    font-size: 58px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .contact-overview {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .contact-card {
    padding: 30px 23px;
    border-radius: 16px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .contact-details > div {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .contact-whatsapp-card .button {
    width: 100%;
  }

  .contact-channels {
    padding-block: 78px 88px;
  }

  .contact-section-heading h2 {
    font-size: 42px;
  }

  .contact-channel-card {
    min-height: 280px;
    padding: 25px;
  }

  .contact-form-section {
    padding-block: 64px;
  }

  .contact-form-layout {
    gap: 40px;
  }

  .contact-form-copy {
    padding-top: 0;
  }

  .contact-form-copy h2 {
    font-size: 43px;
  }

  .contact-form-shell {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .contact-form-success {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-channel-card {
    transition-duration: 0.01ms !important;
  }
}

/* How it works page */
.how-header {
  max-width: 1080px;
  padding-block: clamp(62px, 8vw, 106px) clamp(54px, 7vw, 84px);
  text-align: center;
}

.how-header h1 {
  margin: 12px 0 17px;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.how-tagline {
  margin: 0;
  color: #344139;
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.how-header-copy {
  display: grid;
  max-width: 760px;
  margin: 30px auto 0;
  color: #59636b;
  font-size: 16px;
  line-height: 1.75;
}

.how-header-copy p {
  margin: 0 0 9px;
}

.how-diagram {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #ffffff, #f5faf7);
  box-shadow: var(--shadow-card);
}

.how-diagram > h2 {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.how-diagram-hint {
  display: none;
}

.how-diagram-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #b6cbbf transparent;
  scrollbar-width: thin;
}

.how-diagram-inner {
  min-width: 760px;
}

.how-diagram-inner > img {
  width: 100%;
  height: auto;
}

.how-diagram-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
  text-align: center;
}

.how-diagram-labels li {
  display: grid;
  color: #25322b;
  font-size: 13px;
  font-weight: 700;
}

.how-diagram-labels span {
  margin-bottom: 2px;
  color: var(--accent-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.how-diagram .how-diagram-mobile-steps {
  display: none;
}

.how-steps {
  padding-block: clamp(110px, 12vw, 160px);
}

.how-step {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  grid-template-areas:
    "title image"
    "body image";
  column-gap: clamp(54px, 8vw, 108px);
  row-gap: 24px;
}

.how-step + .how-step {
  margin-top: clamp(116px, 13vw, 180px);
}

.how-step.is-reversed {
  grid-template-columns: minmax(430px, 1.12fr) minmax(0, 0.88fr);
  grid-template-areas:
    "image title"
    "image body";
}

.how-step-heading {
  grid-area: title;
  align-self: end;
}

.how-step-heading > span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-step-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(39px, 4.2vw, 55px);
  font-weight: 650;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.how-step-image {
  grid-area: image;
  margin: 0;
  border-radius: 18px;
  background: #f2eee7;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.how-step-image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.how-step-body {
  grid-area: body;
  align-self: start;
  color: #566069;
  font-size: 15px;
  line-height: 1.76;
}

.how-step-body p {
  margin: 0 0 18px;
}

.how-step-body p:last-child {
  margin-bottom: 0;
}

.how-step-body ul {
  display: grid;
  margin: -2px 0 23px;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.how-step-body .how-use-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 17px;
}

.how-step-body li,
.how-control-card li {
  position: relative;
  padding-left: 20px;
}

.how-step-body li::before,
.how-control-card li::before {
  position: absolute;
  top: 0.71em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.how-control {
  padding-block: clamp(78px, 9vw, 118px);
  background: #f3f4f4;
}

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

.how-control-card {
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--white);
}

.how-control-card.is-dark {
  border-color: #203b2d;
  background:
    radial-gradient(circle at 90% 10%, rgba(61, 191, 125, 0.17), transparent 26%),
    #14251c;
  color: var(--white);
}

.how-control-card.is-dark .eyebrow {
  color: #78dda9;
}

.how-control-card h2 {
  margin: 12px 0 25px;
  font-size: clamp(36px, 4.1vw, 51px);
  font-weight: 650;
  letter-spacing: -0.047em;
  line-height: 1.07;
}

.how-control-card p,
.how-control-card li {
  color: #58626a;
  font-size: 14px;
  line-height: 1.72;
}

.how-control-card.is-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.how-control-card p {
  margin: 0 0 18px;
}

.how-control-card ul {
  display: grid;
  margin: 0 0 23px;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.how-control-card .button {
  width: fit-content;
  min-width: 190px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .how-step,
  .how-step.is-reversed {
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
    column-gap: 42px;
  }

  .how-step {
    grid-template-areas:
      "title image"
      "body image";
  }

  .how-step.is-reversed {
    grid-template-areas:
      "image title"
      "image body";
  }

  .how-control-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .how-diagram-scroll,
  .how-diagram-hint {
    display: none !important;
  }

  .how-diagram .how-diagram-mobile-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 0;
    gap: 10px;
  }

  .how-step,
  .how-step.is-reversed {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "body";
    gap: 25px;
  }

  .how-step-image {
    width: 100%;
    max-width: 100%;
  }

  .how-step-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 639px) {
  .how-header {
    padding-block: 46px 54px;
    text-align: left;
  }

  .how-header h1 {
    margin-block: 10px 14px;
    font-size: 52px;
  }

  .how-tagline {
    font-size: 21px;
  }

  .how-header-copy {
    margin-top: 23px;
    font-size: 14px;
  }

  .how-diagram {
    width: calc(100% - 32px);
    padding: 25px 20px 19px;
    border-radius: 16px;
  }

  .how-diagram > h2 {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .how-diagram-hint {
    display: none;
  }

  .how-diagram-inner {
    min-width: 720px;
  }

  .how-steps {
    padding-block: 82px 92px;
  }

  .how-step + .how-step {
    margin-top: 92px;
  }

  .how-step-heading h2 {
    font-size: 39px;
  }

  .how-step-image {
    width: 100%;
    margin-left: 0;
    border-radius: 14px;
  }

  .how-step-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }

  .how-step-body .how-use-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-control {
    padding-block: 64px;
  }

  .how-control-grid {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .how-control-card {
    padding: 34px 24px;
    border-radius: 16px;
  }

  .how-control-card h2 {
    font-size: 37px;
  }

  .how-control-card .button {
    width: 100%;
  }
}

/* Activation page */
.activation-header {
  max-width: 900px;
  padding-block: clamp(62px, 8vw, 104px) clamp(50px, 7vw, 82px);
  text-align: center;
}

.activation-header h1 {
  margin: 12px 0 20px;
  font-size: clamp(56px, 7.6vw, 92px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.activation-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #59636b;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.activation-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(80px, 10vw, 130px);
  gap: 24px;
}

.activation-step-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.activation-step-image {
  margin: 0;
  background: #f4f0e9;
  overflow: hidden;
}

.activation-step-image img {
  width: 100%;
  aspect-ratio: 1.665;
  object-fit: cover;
  transition: transform 360ms ease;
}

.activation-step-card:hover .activation-step-image img {
  transform: scale(1.018);
}

.activation-step-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 42px);
}

.activation-step-number {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activation-step-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 650;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.activation-step-copy p {
  margin: 0;
  color: #59636b;
  font-size: 15px;
  line-height: 1.72;
}

.activation-cta-wrap {
  padding-block: clamp(72px, 9vw, 112px);
  background: #f3f4f4;
}

.activation-cta {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(38px, 5.5vw, 68px);
  gap: 36px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 88% 10%, rgba(91, 210, 148, 0.18), transparent 30%),
    #14251c;
  color: var(--white);
}

.activation-cta .eyebrow {
  color: #78dda9;
}

.activation-cta h2 {
  max-width: 720px;
  margin: 12px 0 17px;
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.activation-cta p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.activation-cta .button {
  min-width: 222px;
  background: var(--white);
  color: #183425;
}

@media (max-width: 820px) {
  .activation-steps {
    grid-template-columns: 1fr;
  }

  .activation-cta {
    grid-template-columns: 1fr;
  }

  .activation-cta .button {
    width: fit-content;
  }
}

@media (max-width: 639px) {
  .activation-header {
    padding-block: 46px 52px;
    text-align: left;
  }

  .activation-header h1 {
    margin-block: 10px 15px;
    font-size: 50px;
  }

  .activation-header p {
    font-size: 15px;
  }

  .activation-steps {
    width: calc(100% - 32px);
    padding-bottom: 78px;
    gap: 16px;
  }

  .activation-step-card {
    border-radius: 16px;
  }

  .activation-step-copy {
    padding: 26px 22px 30px;
  }

  .activation-step-copy h2 {
    font-size: 31px;
  }

  .activation-step-copy p {
    font-size: 14px;
  }

  .activation-cta-wrap {
    padding-block: 64px;
  }

  .activation-cta {
    width: calc(100% - 32px);
    padding: 34px 24px;
    gap: 28px;
    border-radius: 16px;
  }

  .activation-cta h2 {
    font-size: 38px;
  }

  .activation-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .activation-step-image img {
    transition-duration: 0.01ms !important;
  }
}

/* Home page */
.home-hero {
  position: relative;
  margin-top: 28px;
  border-radius: var(--radius-large);
  background: #e9e2d8;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.home-hero > img {
  width: 100%;
  aspect-ratio: 3;
  object-fit: cover;
}

.home-hero-panel {
  position: absolute;
  top: 50%;
  left: clamp(24px, 4vw, 54px);
  width: min(48%, 565px);
  padding: clamp(27px, 3.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 16px 46px rgba(32, 24, 17, 0.16);
  backdrop-filter: blur(15px);
  transform: translateY(-50%);
}

.home-hero-panel h1 {
  margin: 11px 0 15px;
  font-size: clamp(36px, 4.25vw, 57px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-hero-panel p {
  max-width: 490px;
  margin: 0;
  color: #4e5961;
  font-size: 15px;
  line-height: 1.65;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.home-hero-actions .button {
  min-width: 176px;
}

.home-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-block: 22px clamp(82px, 9vw, 118px);
}

.home-promo-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 3 / 1;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-promo-card:hover {
  border-color: #d7ddd9;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.home-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-promo-mobile-copy {
  display: none;
}

.home-bestsellers {
  padding-block: clamp(74px, 8vw, 104px) clamp(84px, 9vw, 118px);
  background: var(--surface-cool);
}

.home-section-heading,
.home-how-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.home-section-heading {
  margin-bottom: 32px;
}

.home-section-heading h2,
.home-how-heading h2,
.home-faq-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4.7vw, 58px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.home-section-heading .text-link {
  flex: 0 0 auto;
  margin-bottom: 7px;
}

.home-bestseller-grid .product-card:last-child:nth-child(4) {
  display: block;
}

.home-how {
  margin-block: clamp(84px, 10vw, 132px);
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #ffffff 32%, #f1f8f4);
  box-shadow: var(--shadow-card);
}

.home-how-heading p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-how-scroll {
  max-width: 100%;
  margin-top: clamp(38px, 5vw, 62px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #b6cbbf transparent;
  scrollbar-width: thin;
}

.home-how-scroll img {
  width: 100%;
  min-width: 760px;
  height: auto;
}

.home-how-hint {
  display: none;
}

.home-how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.home-how-steps li {
  display: grid;
  padding: 18px;
  border: 1px solid rgba(31, 157, 99, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.home-how-step-number {
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.home-how-step-visual {
  display: none;
}

.home-how-steps strong {
  font-size: 15px;
}

.home-how-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.home-how-link {
  width: fit-content;
  margin-top: 30px;
}

.home-categories {
  padding-block: clamp(76px, 8vw, 106px);
  background: var(--surface-cool);
}

.home-category-scroll {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 13px;
}

.home-category-card {
  display: grid;
  min-width: 0;
  justify-items: center;
  padding: 20px 10px 18px;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-category-card:hover {
  border-color: rgba(31, 157, 99, 0.45);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.home-category-card > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.home-category-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.home-category-card img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.home-category-card strong {
  font-size: 12px;
  line-height: 1.35;
}

.home-category-all > i {
  display: none;
  font-style: normal;
}

.home-collections {
  padding-block: clamp(92px, 10vw, 132px);
}

.home-collection {
  scroll-margin-top: 100px;
}

.home-collection + .home-collection {
  margin-top: clamp(90px, 9vw, 118px);
}

.home-carousel-controls {
  display: flex;
  gap: 8px;
}

.home-carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 20px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-carousel-controls button:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.home-carousel-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.home-carousel-track {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #d3d8d5 transparent;
  scrollbar-width: thin;
}

.home-carousel-track .product-card {
  scroll-snap-align: start;
}

.home-news {
  padding-bottom: clamp(94px, 10vw, 132px);
}

.home-news .article-card-body {
  min-height: 280px;
}

.home-faq {
  padding-block: clamp(78px, 9vw, 118px);
  background: #f1f4f2;
}

.home-faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
}

.home-faq-intro {
  position: sticky;
  top: 116px;
}

.home-faq-intro p {
  max-width: 390px;
  margin: 22px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.home-faq-list {
  border-top: 1px solid #d9dfdb;
}

.home-faq-list details {
  border-bottom: 1px solid #d9dfdb;
}

.home-faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

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

.home-faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #ccd5cf;
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.home-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.home-faq-list details p {
  max-width: 680px;
  margin: -5px 54px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .home-hero-panel {
    width: 55%;
  }

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

  .home-carousel-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .home-hero {
    display: grid;
  }

  .home-hero > img {
    aspect-ratio: 1.45;
    object-position: 52% center;
  }

  .home-hero-panel {
    position: static;
    width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .home-promos {
    grid-template-columns: 1fr;
  }

  .home-how-heading,
  .home-section-heading {
    align-items: start;
  }

  .home-how-heading {
    flex-direction: column;
  }

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

  .home-how-hint,
  .home-how-scroll {
    display: none;
  }

  .home-how-step-visual {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 300 / 318;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
  }

  .home-how-step-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    max-width: none;
    height: 100%;
  }

  .home-how-step-visual-2 img {
    left: -100%;
  }

  .home-how-step-visual-3 img {
    left: -200%;
  }

  .home-how-step-visual-4 img {
    left: -300%;
  }

  .home-category-scroll {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-category-all {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: flex-start;
    grid-column: 1 / -1;
    padding: 10px 16px;
    gap: 10px;
    border-radius: 10px;
    text-align: left;
  }

  .home-category-all > span {
    width: 36px;
    height: 36px;
  }

  .home-category-all > i {
    display: block;
    margin-left: auto;
    color: var(--accent-dark);
  }

  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-intro {
    position: static;
  }
}

@media (max-width: 639px) {
  .home-hero {
    width: calc(100% - 32px);
    margin-top: 16px;
    border-radius: 16px;
  }

  .home-hero > img {
    aspect-ratio: 1.32;
  }

  .home-hero-panel {
    padding: 30px 22px 26px;
  }

  .home-hero-panel h1 {
    margin-block: 9px 13px;
    font-size: 42px;
  }

  .home-hero-panel p {
    font-size: 14px;
  }

  .home-hero-actions {
    display: grid;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .home-promos {
    width: calc(100% - 32px);
    padding-block: 16px 72px;
    gap: 14px;
  }

  .home-promo-card {
    border-radius: 14px;
  }

  .home-promo-mobile-copy {
    display: none;
  }

  .home-bestsellers {
    padding-block: 66px 78px;
  }

  .home-section-heading {
    margin-bottom: 24px;
  }

  .home-section-heading h2,
  .home-how-heading h2,
  .home-faq-intro h2 {
    font-size: 39px;
  }

  .home-section-heading .text-link {
    display: none;
  }

  .home-bestseller-grid {
    display: grid;
    grid-auto-columns: calc((100% - 12px) / 2);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    padding-inline: 0;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .home-bestseller-grid .product-card {
    display: block !important;
    scroll-snap-align: start;
  }

  .home-how {
    width: calc(100% - 32px);
    margin-block: 72px;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .home-how-heading p {
    font-size: 14px;
  }

  .home-how-steps {
    gap: 8px;
  }

  .home-how-steps li {
    padding: 14px;
  }

  .home-how-link {
    width: 100%;
  }

  .home-categories {
    padding-block: 66px 72px;
  }

  .home-category-scroll {
    width: calc(100% - 32px);
    grid-auto-flow: row;
    gap: 8px;
    padding-inline: 0;
    overflow: visible;
  }

  .home-category-card {
    min-height: 108px;
    padding: 14px 6px 12px;
    gap: 8px;
  }

  .home-category-card > span {
    width: 44px;
    height: 44px;
  }

  .home-category-card svg {
    width: 22px;
    height: 22px;
  }

  .home-category-card img {
    width: 32px;
    height: 32px;
  }

  .home-category-card strong {
    font-size: 10px;
  }

  .home-category-all {
    min-height: 52px;
    padding: 8px 14px;
  }

  .home-category-all > span {
    width: 34px;
    height: 34px;
  }

  .home-category-all strong {
    font-size: 12px;
  }

  .home-collections {
    padding-block: 78px 92px;
  }

  .home-collection {
    width: calc(100% - 32px);
  }

  .home-collection + .home-collection {
    margin-top: 82px;
  }

  .home-carousel-controls button {
    width: 42px;
    height: 42px;
  }

  .home-carousel-track {
    width: 100%;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
    padding-bottom: 14px;
  }

  .home-news {
    width: calc(100% - 32px);
    padding-bottom: 86px;
  }

  .home-news .article-grid {
    grid-template-columns: 1fr;
  }

  .home-news .article-card-body {
    min-height: 0;
  }

  .home-faq {
    padding-block: 68px 78px;
  }

  .home-faq-grid {
    width: calc(100% - 32px);
    gap: 44px;
  }

  .home-faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .home-faq-list details p {
    margin-right: 0;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-promo-card,
  .home-category-card,
  .home-faq-list summary span {
    transition-duration: 0.01ms !important;
  }
}
