:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --text: #1b1b1b;
  --muted: #5c5b57;
  --line: #e5e2dc;
  --accent: #111111;
  --accent-soft: #2b2b2b;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

body.page-shell {
  padding-top: 0;
}

body.has-cart-open,
body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

[hidden] {
  display: none !important;
}

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

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

button {
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-first {
  padding-top: 32px;
}

.section-topless {
  padding-top: 8px;
}

.product-breadcrumb-section {
  padding-bottom: 14px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.04rem;
  color: var(--muted);
}

.subtitle-compact {
  margin-bottom: 12px;
}

.microcopy,
.micro-label,
.variant-help {
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  background: #f1efea;
  color: var(--text);
  border-color: var(--line);
}

.btn-compact {
  min-height: 40px;
  padding: 10px 18px;
}

.btn.is-disabled,
.btn:disabled {
  background: #bdbbb6;
  border-color: #bdbbb6;
  color: #fff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.btn.is-loading {
  opacity: 0.88;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: 140px;
  height: auto;
  border-radius: 10px;
}

.nav {
  display: none;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle,
.cart-toggle,
.cart-drawer__close,
.cart-item__remove {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.nav-toggle,
.cart-toggle {
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  justify-content: center;
}

.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle__icon span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.header-cta {
  white-space: nowrap;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-open .nav {
  position: absolute;
  top: var(--header-height);
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  padding: 0 0 72px;
}

.hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 0 0 28px 28px;
}

.hero-content {
  padding-top: 48px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.04;
  max-width: 900px;
  margin-bottom: 16px;
}

.hero .subtitle {
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions-inline {
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.offer-badge,
.checkout-review-badge,
.product-card__badge,
.product-offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-proof span {
  color: var(--muted);
  background: #efefec;
  border: 1px solid #e2dfd8;
  padding: 7px 12px;
}

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

.section-heading-stack {
  display: block;
}

.section-heading-collection {
  margin-bottom: 22px;
}

.section h1,
.section h2,
.state-card h1,
.legal-card h1,
.checkout-card h1 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.section-intro,
.checkout-stage,
.state-lead,
.state-note,
.legal-intro,
.legal-section li,
.legal-section p {
  color: var(--muted);
}

.benefit-grid,
.zone-grid,
.product-grid,
.need-grid {
  display: grid;
  gap: 16px;
}

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

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

.benefit-card,
.zone-card,
.need-card,
.product-card,
.checkout-summary-card,
.size-card,
.state-card-inline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.benefit-card,
.zone-card,
.need-card {
  padding: 22px;
}

.checkout-summary-card {
  padding: 24px;
  background: var(--surface-soft);
}

.benefit-card h3,
.zone-card h3,
.need-card strong,
.product-card h3 {
  margin-bottom: 8px;
}

.benefit-card p,
.zone-card p,
.need-card span,
.product-card__copy {
  color: var(--muted);
}

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

.zone-grid {
  margin-top: 14px;
}

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

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

.product-card {
  overflow: hidden;
}

.product-card__media {
  position: relative;
  display: block;
  background: var(--adaptive-image-bg, #fff);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-card__badge,
.product-offer-tag {
  position: absolute;
  top: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  z-index: 1;
}

.product-card__badge {
  left: 16px;
}

.product-offer-tag {
  right: 16px;
}

.product-card__badge--out,
.product-offer-tag--out {
  background: #c63b3b;
  color: #fff;
}

.product-card__badge--sale,
.product-offer-tag--sale {
  background: #123d2a;
  color: #fff;
}

.product-card__body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.product-card__cta {
  width: 100%;
}

.purchase {
  background: var(--surface);
}

.purchase-grid,
.product-page__grid,
.product-story,
.cta-panel {
  display: grid;
  gap: 36px;
}

.purchase-grid,
.product-page__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: start;
}

.purchase-media,
.purchase-media-inline {
  position: relative;
}

.purchase-media-inline {
  display: none;
}

.product-stage {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adaptive-image-bg, #fff);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #ece8e0;
}

.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.product-stage-pdp img {
  padding: 24px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--adaptive-image-bg, #fff);
  padding: 8px;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.purchase-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-page .purchase-card {
  align-self: start;
}

.purchase-card h1 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  margin-bottom: 8px;
}

.buybox-social-proof {
  color: var(--text);
  font-weight: 700;
  margin: 4px 0 6px;
}

.buybox-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.buybox-actions .btn-primary {
  min-height: 54px;
  font-size: 1.03rem;
}

.product-trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.product-trust-strip li {
  position: relative;
  padding-left: 14px;
}

.product-trust-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #123d2a;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 2px;
}

.price-current {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
}

.offer-badge,
.checkout-review-badge {
  background: #f3ede3;
  border: 1px solid #eadcc5;
  color: #705638;
  padding: 8px 14px;
}

.offer-badge--muted,
.product-stock--out {
  background: #f2f0ec;
  border: 1px solid #ddd7cb;
  color: #655f56;
}

.price-caption {
  color: var(--muted);
  margin: 10px 0 18px;
}

.buybox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 12px;
}

.buybox-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--muted);
}

.buybox-meta .product-stock::before {
  content: none;
  margin: 0;
}

.product-stock {
  flex-basis: 100%;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-stock--in {
  color: #123d2a;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.product-form {
  gap: 12px;
}

.product-form--unavailable {
  gap: 12px;
}

.selector-group {
  display: grid;
  gap: 6px;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.label {
  font-weight: 600;
}

.selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.08);
}

.chip.is-active {
  border-color: var(--accent);
  background: #f2f0ea;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
}

.chip.is-invalid {
  border-color: #b24c4c;
}

.selector-error,
.field-error {
  min-height: 1.2em;
  color: #b24c4c;
  font-size: 0.84rem;
}

.variant-static {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  background: #faf9f5;
}

.variant-static__value {
  font-weight: 600;
}

.quantity {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.quantity button {
  border: none;
  background: transparent;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0.08);
}

.quantity-inline {
  padding: 8px 12px;
}

.order-bump {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #faf9f5;
}

.order-bump input {
  margin: 0;
  accent-color: var(--accent);
}

.order-bump strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.checkout-actions {
  display: grid;
  gap: 12px;
}

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

.notice {
  color: #8f2f2f;
  font-size: 0.9rem;
  border: 1px solid #ebd1d1;
  background: #fdf4f4;
  border-radius: 14px;
  padding: 12px 14px;
}

.notice-success {
  color: #123d2a;
  border-color: #c8e0d1;
  background: #f1f8f3;
}

.notice-hidden {
  display: none;
}

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

.need-card,
.zone-card {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.need-card:hover,
.zone-card:hover,
.product-card:hover {
  transform: translateY(-2px);
}

.rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 24px;
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--accent);
}

.stars .half {
  color: #bdbab3;
}

.reviews .section-intro {
  margin-bottom: 16px;
}

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

.review-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 22px;
}

.review-card--featured {
  box-shadow: var(--shadow);
}

.review-card--featured.review-card--media {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #fff, #f5f1e8);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.review-card__header h3 {
  margin-bottom: 4px;
}

.review-card__title {
  margin-bottom: 6px;
  font-weight: 700;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f2ede2;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}

.review-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
  flex-shrink: 0;
}

.review-stars .is-empty {
  color: #d7d1c6;
}

.review-media {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  margin-top: 16px;
}

.review-media--single {
  grid-template-columns: minmax(0, 320px);
  max-width: 320px;
}

.review-media__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1 / 1;
  margin: 0;
}

.review-media__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.product-reviews-section--compact-media .review-card--featured.review-card--media {
  grid-column: auto;
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 18px 0 28px;
}

.review-summary__rating,
.review-summary__count {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-summary__rating strong,
.review-summary__count strong {
  font-size: 1.55rem;
  line-height: 1;
}

.review-summary__count span {
  font-weight: 600;
}

.review-stars--summary {
  font-size: 1rem;
}

.purchase-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 6px 0 10px;
}

.purchase-rating__value {
  font-size: 1rem;
  line-height: 1;
}

.purchase-rating__stars {
  font-size: 0.92rem;
}

.purchase-rating__count {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.reviews-actions--stack {
  justify-content: center;
}

.review-submission-actions {
  justify-content: center;
  margin-top: 28px;
}

.reviews-page-hero .section-intro {
  max-width: 760px;
}

.section.reviews-breadcrumb-section {
  padding-top: 32px;
  padding-bottom: 12px;
}

.section.reviews-page-hero {
  padding-top: 28px;
  padding-bottom: 16px;
}

#reviews-feed.reviews {
  padding-top: 16px;
  padding-bottom: 28px;
}

.section.review-submission-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.review-submission-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-submission-card > div > p:last-child {
  color: var(--muted);
}

.review-submission-form,
.review-submission-form label {
  display: grid;
  gap: 8px;
}

.review-submission-form {
  gap: 18px;
}

.review-submission-form label > span:first-child {
  font-weight: 650;
}

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

.review-submission-form input,
.review-submission-form select,
.review-submission-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.review-submission-form textarea {
  resize: vertical;
}

.review-submission-form input:focus,
.review-submission-form select:focus,
.review-submission-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
}

.review-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.review-consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.review-consent span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400 !important;
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.review-form-status {
  margin: 0;
  color: var(--muted);
}

.review-form-status.is-error {
  color: #9d2525;
}

.review-form-status.is-success {
  color: var(--accent);
  font-weight: 650;
}

.reviews-feed-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 16px;
}

.reviews-feed-progress,
.reviews-feed-note {
  color: var(--muted);
}

.reviews-feed-progress {
  margin: 0;
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.9rem;
}

.reviews-feed-note {
  margin-top: 18px;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: linear-gradient(140deg, #fff, #f3f0e9);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.filter-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.filter-group + .filter-group {
  margin-top: 16px;
}

.filter-group__label {
  font-weight: 600;
  margin-bottom: 8px;
}

.filter-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-form-mobile {
  display: none;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 600;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--surface);
  color: var(--text);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #b24c4c;
}

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

.product-story {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: start;
}

.product-story-section .split-content {
  max-width: 560px;
}

.product-story-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.product-story-proof {
  padding: 48px 0;
}

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

.size-guide-link {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.split-content {
  display: grid;
  gap: 14px;
  align-content: center;
}

.split-summary {
  font-size: 1.1rem;
  font-weight: 600;
}

.story-note,
.disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer {
  margin-top: 16px;
}

.split-media img,
.materials-grid img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fff, #f2eee7);
  box-shadow: var(--shadow);
}

.product-story-section .split-media img,
.story-materials-grid img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.story-materials-grid img[src="/assets/product-ankle-support-1.jpg"] {
  object-fit: contain;
  background: #fff;
  padding: 24px;
}

.product-story-section .split-media img[src*="/assets/product-"] {
  object-fit: contain;
  background: #fff;
  padding: 24px;
}

.product-story-section .split-media img[src="/assets/product-lumbar-belt-routine.jpg"],
.product-story-section .split-media img[src="/assets/product-lumbar-belt-structure.jpg"],
.product-story-section .split-media img[src="/assets/product-wrist-support-desk.jpg"],
.product-story-section .split-media img[src="/assets/product-mobility-bands-routine.jpg"],
.product-story-section .split-media img[src="/assets/product-mobility-bands-storage.jpg"],
.product-story-section .split-media img[src="/assets/product-resistance-band-pack-intensity.jpg"],
.product-story-section .split-media img[src="/assets/product-resistance-band-pack-transport.jpg"] {
  aspect-ratio: auto;
  height: auto;
  object-fit: unset;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.size-guide-alert,
.size-priority,
.size-step,
.size-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.size-guide-alert {
  display: grid;
  gap: 8px;
  padding: 20px;
  margin-top: 20px;
  background: #f8f2e8;
  border-color: #eadcc5;
}

.size-guide-alert-title {
  color: #705638;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.size-priority {
  margin-top: 16px;
  padding: 18px 20px;
}

.size-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px 32px;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #cfe0d7;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 109, 0.1), transparent 20rem),
    #f4f8f5;
  box-shadow: 0 18px 44px rgba(14, 54, 46, 0.08);
}

.size-calculator__intro {
  align-content: start;
  display: grid;
  gap: 10px;
}

.size-calculator__intro .eyebrow,
.size-calculator__result .eyebrow {
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 700;
}

.size-calculator__intro h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.size-calculator__form {
  display: grid;
  align-content: start;
  gap: 16px;
}

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

.size-calculator .field small {
  color: var(--muted);
  font-size: 0.78rem;
}

.size-calculator .btn {
  width: fit-content;
}

.size-calculator__error {
  margin: 0;
}

.size-calculator__result {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #bdd6ca;
  border-radius: 22px;
  background: #fff;
}

.size-calculator__recommendation {
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 750;
}

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

.size-calculator__metrics p {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f1f7f3;
}

.size-calculator__metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}

.size-calculator__metrics strong {
  font-size: 1.15rem;
}

.size-calculator__boundary-note {
  color: var(--muted);
}

.size-calculator__method {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
}

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

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

.size-step {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.size-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3ede3;
  color: #705638;
  font-weight: 700;
}

.table-wrap {
  margin-top: 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.table-wrap th {
  font-size: 0.9rem;
  color: var(--muted);
  background: #faf9f5;
}

.table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.band-color {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.band-color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  flex-shrink: 0;
}

.band-spec-card .band-color {
  flex-wrap: wrap;
}

.size-cards {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.size-card {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.size-guide-cta {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(140deg, #fff, #f3f0e9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  justify-items: start;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.08);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  z-index: 30;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.price-sub,
.sticky-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.34);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 34;
}

.cart-overlay.is-visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 35;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__footer {
  border-top: 1px solid var(--line);
  border-bottom: none;
  margin-top: auto;
}

.cart-drawer__footer .microcopy {
  margin-bottom: 28px;
}

.cart-drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cart-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.cart-drawer__body {
  padding: 20px;
  overflow: auto;
  display: grid;
  gap: 14px;
}

.cart-empty {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: var(--surface-soft);
}

.cart-item__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.cart-item__body {
  min-width: 0;
}

.cart-item__header,
.cart-item__footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__header h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.cart-item__variant {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-item__footer {
  align-items: center;
  margin-top: 12px;
}

.cart-item__remove {
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.checkout-page,
.state-page,
.legal-page {
  min-height: 100vh;
  padding: 48px 0 72px;
}

.checkout-card,
.state-card,
.legal-card {
  width: min(100% - 32px, 1140px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
}

.state-card,
.legal-card {
  max-width: 760px;
}

.back-in-stock-card {
  max-width: 1180px;
  padding: clamp(24px, 4vw, 44px);
}

.back-in-stock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.back-in-stock-topbar .checkout-backlink {
  margin-bottom: 0;
}

.back-in-stock-topbar__status,
.back-in-stock-kicker,
.stock-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}

.back-in-stock-topbar__status {
  border: 1px solid #dedad2;
  background: #f6f3ee;
  color: #5f5b54;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.back-in-stock-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.back-in-stock-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #faf8f3);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 45px rgba(22, 22, 18, 0.06);
}

.back-in-stock-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(26px, 4vw, 42px);
}

.stock-status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: #f7ecea;
  color: #9d332f;
  border: 1px solid #ead0cc;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.back-in-stock-copy {
  display: grid;
  gap: 16px;
}

.back-in-stock-kicker {
  color: #123d2a;
  background: #eef7f1;
  border: 1px solid #cfe7d7;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.back-in-stock-copy h1 {
  max-width: 760px;
  margin-bottom: 0;
}

.back-in-stock-lead {
  max-width: 720px;
}

.waitlist-panel {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfaf7;
}

.waitlist-panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 0;
}

.waitlist-panel p {
  color: var(--muted);
}

.waitlist-form {
  margin-top: 4px;
  gap: 14px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.checkbox-row a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-submit {
  width: 100%;
}

.waitlist-assurances {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.waitlist-assurances li {
  position: relative;
  padding-left: 18px;
}

.waitlist-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #123d2a;
}

.state-card-inline {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.checkout-backlink {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-top: 28px;
}

.checkout-layout-review {
  align-items: start;
}

.checkout-sidebar .checkout-summary-card {
  position: sticky;
  top: 24px;
}

.checkout-review-list,
.checkout-summary-items {
  display: grid;
  gap: 18px;
}

.checkout-review-product {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 242, 0.96));
}

.checkout-review-media {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.checkout-review-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.checkout-review-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.checkout-review-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.checkout-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf7;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.order-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-summary-row span {
  color: var(--muted);
}

.order-summary-row-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.checkout-summary-line {
  display: grid;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.checkout-summary-line:last-child {
  border-bottom: none;
}

.selection-state {
  margin-top: 12px;
  color: var(--muted);
}

.form-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.form-section-heading {
  margin-bottom: 14px;
}

.form-section-heading h3 {
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.consent-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #faf9f5;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.check-field a,
.legal-links-inline a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-trust {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.checkout-trust li,
.empty-state {
  color: var(--muted);
}

.checkout-trust li::before,
.faq-bullets li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.state-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2efe8;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.state-summary,
.state-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.state-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.legal-section + .legal-section {
  margin-top: 24px;
}

.legal-section h2 {
  margin-bottom: 10px;
}

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

summary {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 16px;
  font-weight: 600;
}

.faq-answer {
  padding: 12px 16px 20px;
  color: var(--muted);
}

.faq-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1025px) {
  .product-page .purchase-card {
    position: sticky;
    top: calc(var(--header-height) + 18px);
  }
}

@media (max-width: 1024px) {
  .benefit-grid,
  .benefit-grid-compact,
  .zone-grid,
  .need-grid,
  .product-grid,
  .product-grid-compact,
  .reviews-grid,
  .product-story-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-grid,
  .product-page__grid,
  .product-story,
  .split-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .size-guide-steps,
  .size-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .size-calculator {
    grid-template-columns: 1fr;
  }

  .size-calculator__result,
  .size-calculator__method {
    grid-column: 1;
  }

  .checkout-sidebar .checkout-summary-card {
    position: static;
  }

  .split-results .split-content {
    order: 1;
  }

  .split-results .split-media {
    order: 2;
  }

  .split-office .split-content {
    order: 1;
  }

  .split-office .split-media {
    order: 2;
  }

  .split-discreet .split-content {
    order: 1;
  }

  .split-discreet .split-media {
    order: 2;
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

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

  .cart-toggle {
    max-width: 118px;
    padding: 10px 11px;
    overflow: hidden;
    white-space: nowrap;
  }

  .product-page__grid,
  .purchase-media,
  .product-stage {
    min-width: 0;
    max-width: 100%;
  }

  .buybox-actions {
    grid-template-columns: 1fr;
  }

  .buybox-meta {
    display: grid;
  }

  .buybox-meta span + span::before {
    content: "";
    margin: 0;
  }

  .sticky-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, auto);
    gap: 8px;
  }

  .sticky-price {
    min-width: 0;
  }

  .sticky-status {
    display: none;
  }

  .price-sub {
    display: none;
  }

  .sticky-cta .btn {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

@media (max-width: 780px) {
  .section.reviews-breadcrumb-section {
    padding-top: 20px;
    padding-bottom: 8px;
  }

  .section.reviews-page-hero {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  #reviews-feed.reviews {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .section.review-submission-section {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .review-submission-card,
  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .review-submission-card {
    gap: 24px;
    padding: 22px;
  }

  .collection-section {
    padding-top: 18px;
  }

  .back-in-stock-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-in-stock-grid {
    grid-template-columns: 1fr;
  }

  .back-in-stock-media {
    max-width: 420px;
  }

  .section-heading-collection {
    margin-bottom: 16px;
  }

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

  .product-grid-collection .product-card__body {
    padding: 16px;
    gap: 10px;
  }

  .header-inner {
    gap: 10px;
  }

  .logo img {
    width: 92px;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-toggle,
  .nav-toggle {
    min-height: 44px;
    padding: 10px 12px;
  }

  .header-cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .hero-content {
    padding-top: 34px;
  }

  .benefit-grid,
  .benefit-grid-compact,
  .zone-grid,
  .need-grid,
  .product-grid,
  .product-grid-compact,
  .reviews-grid,
  .product-story-points,
  .form-grid-two,
  .state-actions,
  .cta-panel,
  .checkout-actions-inline,
  .materials-grid,
  .size-guide-steps,
  .size-cards {
    grid-template-columns: 1fr;
  }

  .size-calculator__fields,
  .size-calculator__metrics {
    grid-template-columns: 1fr;
  }

  .size-calculator .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .table-wrap {
    display: none;
  }

  .size-cards {
    display: grid;
  }

  .purchase-card,
  .checkout-card,
  .state-card,
  .legal-card {
    padding: 24px;
  }

  .product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 6px;
  }

  .filter-chip-row {
    display: none;
  }

  .filter-form-mobile {
    display: grid;
  }

  .reviews-feed-header {
    align-items: flex-start;
  }

  .reviews-feed-progress {
    white-space: normal;
  }

  .review-summary {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cart-drawer {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--line);
    top: auto;
    bottom: 0;
    height: min(86vh, 760px);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .cart-drawer.is-open {
    transform: translateY(0);
  }

  .sticky-cta {
    display: block;
  }

  body.has-sticky-cta {
    padding-bottom: 92px;
  }
}

.section.product-breadcrumb-section {
  padding-bottom: 14px;
}

.section.product-page {
  padding-top: 8px;
}

/* 2026 brand, conversion and accessibility refresh */
:root {
  --bg: #f3f6f1;
  --surface: #ffffff;
  --surface-soft: #edf4f0;
  --text: #102823;
  --muted: #5b6b66;
  --line: #dbe4de;
  --accent: #0f5148;
  --accent-soft: #176c61;
  --brand: #1f7a6d;
  --brand-soft: #e1f1eb;
  --sand: #eee4d3;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(18, 49, 42, 0.09);
  --shadow-soft: 0 10px 30px rgba(18, 49, 42, 0.07);
  --max-width: 1220px;
  --header-height: 80px;
}

html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  overflow-x: clip;
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 122, 109, 0.07), transparent 24rem),
    var(--bg);
  letter-spacing: -0.008em;
}

body.has-cookie-modal {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--accent);
}

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

.section {
  padding: 88px 0;
}

.section-surface {
  background: rgba(255, 255, 255, 0.76);
  border-block: 1px solid rgba(219, 228, 222, 0.72);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.subtitle,
.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.section-heading h1,
.section-heading h2,
.section h1,
.section h2 {
  letter-spacing: -0.045em;
}

.section-heading-stack .section-intro {
  max-width: 720px;
}

.btn {
  min-height: 54px;
  border-radius: 16px;
  padding: 14px 23px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(15, 81, 72, 0.2);
}

.btn-primary:hover {
  background: #0a443d;
  box-shadow: 0 18px 34px rgba(15, 81, 72, 0.25);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 122, 109, 0.66);
  outline-offset: 3px;
}

.site-header {
  height: var(--header-height);
  background: rgba(250, 252, 249, 0.9);
  border-bottom-color: rgba(207, 220, 213, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
}

.header-inner {
  gap: 22px;
}

.logo img {
  width: 146px;
  border-radius: 0;
}

.nav {
  gap: 26px;
  color: #3f524c;
  font-size: 0.91rem;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 9px;
}

.language-switch {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-toggle,
.nav-toggle {
  min-height: 46px;
  border-radius: 14px;
}

.header-cta {
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 14px;
}

.hero-home {
  position: relative;
  padding: 42px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(31, 122, 109, 0.12), transparent 24rem),
    radial-gradient(circle at 93% 8%, rgba(238, 228, 211, 0.9), transparent 30rem),
    linear-gradient(180deg, #f8faf6 0%, #f3f6f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.hero-content {
  padding-top: 0;
}

.hero-home h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.25vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-home .subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.hero-actions-inline {
  gap: 10px;
}

.hero-proof {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  color: #3e554e;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof li::before {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--accent);
  content: "✓";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  padding: 12px 12px 48px 34px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -12px 28px 22px -14px;
  border: 1px solid rgba(15, 81, 72, 0.15);
  border-radius: 36px;
  content: "";
}

.hero-media img {
  position: relative;
  width: 100%;
  height: clamp(480px, 51vw, 650px);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(26, 55, 48, 0.17);
  object-fit: cover;
  object-position: 51% center;
}

.hero-product {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  max-width: 470px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid rgba(215, 225, 218, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(13, 50, 43, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(13, 50, 43, 0.25);
}

.hero-product__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f7f5;
}

.hero-product__media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.hero-product__content {
  display: grid;
  gap: 2px;
}

.hero-product__content small {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-product__content strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-product__content span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-product__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.trust-rail {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.trust-rail article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 26px 28px;
}

.trust-rail article + article {
  border-left: 1px solid var(--line);
}

.trust-rail article > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-rail strong {
  display: block;
  margin-bottom: 2px;
}

.trust-rail p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.routine-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.routine-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.routine-card--large {
  grid-row: 1 / 3;
}

.routine-card::after {
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 35, 30, 0.88));
  content: "";
}

.routine-card img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 350ms ease;
}

.routine-card:hover img {
  transform: scale(1.025);
}

.routine-card > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  color: #fff;
}

.routine-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.routine-card strong {
  margin: 4px 0 7px;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  letter-spacing: -0.04em;
}

.routine-card em {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 750;
}

.benefit-grid-compact {
  gap: 18px;
}

.benefit-card {
  position: relative;
  padding: 28px;
  border-color: var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-card::before {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  content: "";
}

.product-grid {
  gap: 20px;
}

.product-card {
  border-color: var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-card__media {
  background: var(--adaptive-image-bg, #fff);
}

.product-card__media img {
  padding: 12px;
  object-fit: contain;
}

.product-card__body {
  gap: 10px;
  padding: 22px;
}

.product-card__body .eyebrow {
  min-height: 2.4em;
  margin: 0;
  font-size: 0.65rem;
}

.product-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.product-card__copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__cta {
  border-radius: 14px;
}

.product-card__badge,
.product-offer-tag {
  background: var(--accent);
}

.product-card__badge--sale,
.product-offer-tag--sale {
  background: var(--accent);
}

.collection-results-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: -8px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.collection-results-bar a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-panel {
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: none;
}

.chip {
  border-radius: 13px;
}

.chip.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 420px);
  grid-template-areas:
    "media summary"
    "media controls";
  gap: 22px 40px;
  align-items: start;
}

.purchase-media {
  grid-area: media;
  min-width: 0;
}

.purchase-summary {
  grid-area: summary;
  padding: 10px 4px 0;
}

.purchase-summary h1 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 3.55vw, 3.65rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.purchase-summary .subtitle {
  margin-bottom: 16px;
}

.purchase-summary .price {
  margin-top: 4px;
}

.purchase-summary .price-current {
  font-size: 1.9rem;
}

.purchase-card--controls {
  grid-area: controls;
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.purchase-card__heading .eyebrow {
  margin: 0;
}

.purchase-card__heading h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.product-stage {
  border-color: var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.product-stage-pdp img {
  padding: 32px;
}

.thumb {
  border-color: var(--line);
  border-radius: 14px;
}

.thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(15, 81, 72, 0.14);
}

.offer-badge {
  border: 1px solid #cce7dc;
  background: #eaf7f1;
  color: #225d49;
}

.buybox-meta {
  color: #425850;
}

.product-stock--in {
  color: var(--accent);
}

.product-trust-strip {
  border-top-color: var(--line);
}

.product-trust-strip li::before {
  background: var(--accent);
}

.order-bump {
  border-color: #d9e7df;
  background: #f6faf7;
}

.cta-panel {
  padding: clamp(28px, 5vw, 52px);
  border-color: #d4e3dc;
  border-radius: 30px;
  background:
    radial-gradient(circle at 93% 10%, rgba(31, 122, 109, 0.12), transparent 18rem),
    linear-gradient(140deg, #fff, #edf5f0);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.faq-list {
  gap: 10px;
}

summary {
  padding: 20px;
  border-color: var(--line);
  border-radius: 18px;
  font-weight: 750;
}

details[open] summary {
  border-color: #c9ddd4;
  background: var(--surface-soft);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.info-hero {
  padding-top: 72px;
}

.info-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.info-hero__content h1,
.contact-card h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.info-hero__content .subtitle,
.contact-card .subtitle {
  margin-bottom: 28px;
}

.info-hero__media img {
  width: 100%;
  min-height: 500px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.values-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.values-grid article > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
}

.values-grid h2 {
  margin: 20px 0 8px;
  font-size: 1.35rem;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-soft);
}

.contact-details div {
  padding: 20px;
}

.contact-details div + div {
  border-top: 1px solid var(--line);
}

.contact-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  font-weight: 700;
}

.legal-page {
  padding: 70px 20px;
}

.legal-card {
  box-shadow: var(--shadow-soft);
}

.legal-identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.legal-identity-grid > div {
  min-width: 0;
  padding: 20px;
}

.legal-identity-grid > div + div {
  border-top: 1px solid var(--line);
}

.legal-identity-grid dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-identity-grid dd {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 750;
}

.site-footer {
  padding: 68px 0 24px;
  border-top: 0;
  background: #0d2e29;
  color: #f4f8f5;
}

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

.footer-logo img {
  width: 150px;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  color: #c7d6d1;
}

.footer-brand .footer-disclaimer {
  color: #92aaa3;
  font-size: 0.82rem;
}

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

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-link-button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #bfd0ca;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-align: left;
}

.footer-column a:hover,
.footer-link-button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #90a9a2;
  font-size: 0.78rem;
}

.footer-bottom .footer-identity {
  flex-basis: 100%;
  margin-top: 2px;
  color: #b4c8c2;
  overflow-wrap: anywhere;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px;
  border: 1px solid #cadbd2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 80px rgba(9, 38, 32, 0.25);
  backdrop-filter: blur(20px);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.cookie-banner__title {
  margin-bottom: 4px;
  font-size: 1.04rem;
  font-weight: 850;
}

.cookie-banner__content > div > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner .btn {
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 13px;
  font-size: 0.84rem;
}

.cookie-choice {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 27, 23, 0.64);
  backdrop-filter: blur(8px);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.cookie-modal__panel > p:not(.eyebrow) {
  margin: 8px 0 24px;
  color: var(--muted);
}

.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfa;
}

.cookie-options label > span {
  display: grid;
  gap: 3px;
}

.cookie-options small {
  color: var(--muted);
}

.cookie-options input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

@media (min-width: 1025px) {
  .product-page .purchase-card--controls {
    position: sticky;
    top: calc(var(--header-height) + 18px);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-home h1 {
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .hero-visual {
    padding-left: 0;
  }

  .product-page__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "media"
      "controls";
    gap: 24px;
  }

  .purchase-summary {
    max-width: 760px;
  }

  .product-stage {
    max-height: 640px;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

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

  .section {
    padding: 64px 0;
  }

  .logo img {
    width: 102px;
  }

  .language-switch {
    width: 40px;
    height: 42px;
  }

  .hero-home {
    padding: 38px 0 70px;
  }

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

  .hero-home h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .hero-home .subtitle {
    font-size: 1.05rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    padding: 0 0 62px;
  }

  .hero-media::before {
    inset: -8px 18px 16px -8px;
    border-radius: 26px;
  }

  .hero-media img {
    height: min(112vw, 510px);
    border-radius: 26px;
  }

  .hero-product {
    left: 12px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-product__content small {
    display: none;
  }

  .trust-rail__grid {
    grid-template-columns: 1fr;
  }

  .trust-rail article {
    padding: 20px 14px;
  }

  .trust-rail article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .routine-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .routine-card,
  .routine-card--large {
    grid-row: auto;
    min-height: 300px;
  }

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

  .product-grid-collection .product-card__body {
    gap: 8px;
    padding: 14px;
  }

  .product-grid-collection .product-card__body .eyebrow,
  .product-grid-collection .product-card__copy {
    display: none;
  }

  .product-grid-collection .product-card h3 {
    font-size: 0.98rem;
  }

  .product-grid-collection .price-current {
    font-size: 1.16rem;
  }

  .product-grid-collection .price-old {
    display: none;
  }

  .product-grid-collection .product-card__cta {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .product-breadcrumb-section {
    padding-top: 20px;
  }

  .breadcrumbs {
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .purchase-summary {
    padding: 0;
  }

  .purchase-summary h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .purchase-summary .subtitle {
    font-size: 1rem;
  }

  .product-stage {
    aspect-ratio: 4 / 3;
    max-height: 430px;
    border-radius: 24px;
  }

  .product-stage-pdp img {
    padding: 18px;
  }

  .purchase-card--controls {
    padding: 20px;
  }

  .purchase-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .buybox-actions {
    grid-template-columns: 1fr;
  }

  .sticky-cta__inner {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .checkout-review-product {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .checkout-review-media {
    align-self: start;
  }

  .checkout-review-media img {
    padding: 8px;
  }

  .checkout-review-copy {
    gap: 9px;
  }

  .checkout-review-copy h2 {
    font-size: 1.18rem;
  }

  .checkout-review-copy .checkout-stage,
  .checkout-review-badge {
    display: none;
  }

  .order-summary-review {
    grid-column: 1 / -1;
    padding: 10px;
    font-size: 0.82rem;
  }

  .checkout-line-actions {
    grid-column: 1 / -1;
  }

  .info-hero__grid,
  .contact-card,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .info-hero__content h1,
  .contact-card h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .info-hero__media img {
    min-height: 360px;
  }

  .contact-card {
    padding: 24px;
  }

  .cta-panel__actions {
    display: grid;
    justify-content: stretch;
  }

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

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

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__actions [data-consent-customize] {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .cookie-modal__panel {
    padding: 26px 20px 20px;
    border-radius: 22px;
  }

  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 7px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch {
    display: none;
  }

  .cart-toggle {
    max-width: none;
    padding: 9px 10px;
  }

  .nav-toggle {
    padding: 10px 12px;
  }

  .hero-home h1 {
    font-size: clamp(2.65rem, 12.6vw, 3.65rem);
  }

  .hero-product__arrow {
    display: none;
  }

  .hero-product {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .routine-card {
    min-height: 260px;
  }

  .purchase-summary .buybox-meta {
    display: flex;
    flex-wrap: wrap;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

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

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

/* Conversion and mobile refinement */

.product-card__media img {
  padding: clamp(12px, 2vw, 22px);
  object-fit: contain;
}

.product-card__trust {
  color: #2d6253;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.home-reviews {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 122, 109, 0.15), transparent 26rem),
    linear-gradient(145deg, #0b302a, #123f36);
}

.home-reviews .eyebrow {
  color: #7fd8d4;
}

.home-reviews h2 {
  color: #fff;
}

.home-reviews .section-intro {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
}

.review-card--home {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.review-card__quote {
  height: 46px;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.9;
}

.review-card__copy {
  margin: 18px 0 28px;
  font-size: 1.06rem;
  line-height: 1.62;
}

.review-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card__avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--accent);
  font-weight: 900;
}

.review-card__person h3,
.review-card__person .review-meta {
  margin: 0;
}

@media (max-width: 780px) {
  .nav-open .nav {
    top: calc(var(--header-height) + 8px);
    right: 12px;
    left: 12px;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(11, 48, 42, 0.22);
  }

  .nav-open .nav a {
    padding: 13px 14px;
    border-radius: 13px;
    font-size: 0.98rem;
  }

  .nav-open .nav a:hover {
    background: var(--surface-soft);
  }

  .nav-open .nav a::after {
    display: none;
  }

  .hero-home {
    padding: 30px 0 56px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-home h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 11.5vw, 3.7rem);
    line-height: 0.99;
  }

  .hero-home .subtitle {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-top: 22px;
    font-size: 0.82rem;
  }

  .hero-proof li:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    padding-bottom: 54px;
  }

  .hero-media img {
    height: min(84vw, 390px);
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 26px;
  }

  .section-heading > .btn {
    width: auto;
    min-height: 44px;
    padding: 10px 15px;
    white-space: nowrap;
  }

  .product-grid,
  .product-grid-compact,
  .product-grid-collection {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card,
  .product-grid-collection .product-card {
    display: grid;
    grid-template-columns: minmax(132px, 40%) minmax(0, 1fr);
    min-height: 218px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(14, 54, 46, 0.08);
  }

  .product-card__media,
  .product-grid-collection .product-card__media {
    height: 100%;
    min-height: 218px;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
  }

  .product-card__media img,
  .product-grid-collection .product-card__media img {
    padding: 12px;
  }

  .product-card__badge {
    top: 10px;
    left: 10px;
    padding: 6px 9px;
    font-size: 0.67rem;
  }

  .product-card__body,
  .product-grid-collection .product-card__body {
    align-content: center;
    gap: 7px;
    padding: 16px;
  }

  .product-card__body .eyebrow,
  .product-grid-collection .product-card__body .eyebrow {
    display: block;
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card h3,
  .product-grid-collection .product-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .product-card__copy,
  .product-grid-collection .product-card__copy {
    display: -webkit-box;
    font-size: 0.79rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card .price {
    gap: 7px;
    margin: 2px 0 0;
  }

  .product-card .price-current,
  .product-grid-collection .price-current {
    font-size: 1.22rem;
  }

  .product-card .price-old,
  .product-grid-collection .price-old {
    display: inline;
    font-size: 0.75rem;
  }

  .product-card__trust {
    font-size: 0.68rem;
  }

  .product-card__cta,
  .product-grid-collection .product-card__cta {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .reviews-grid--home {
    display: flex;
    gap: 14px;
    margin-right: -14px;
    padding: 2px 14px 18px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card--home {
    min-width: min(84vw, 340px);
    min-height: 270px;
    padding: 24px;
    scroll-snap-align: start;
  }

  .purchase-summary h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 5px;
  }

  .header-actions {
    gap: 5px;
  }

  .logo img {
    width: 86px;
  }

  .cart-toggle {
    padding-inline: 9px;
  }

  .nav-toggle {
    padding-inline: 11px;
  }

  .hero-product {
    right: 4px;
    left: 4px;
  }

  .product-card,
  .product-grid-collection .product-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .product-card__media,
  .product-grid-collection .product-card__media {
    min-height: 214px;
  }

  .product-card__body,
  .product-grid-collection .product-card__body {
    padding: 14px;
  }
}

@media (max-width: 350px) {
  .cart-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

/* Mobile-first home landing: faster first impression and shorter path to products */
@media (max-width: 780px) {
  .site-header .header-inner,
  .site-header .header-actions,
  .site-header .logo {
    min-width: 0;
  }

  .site-header .logo {
    flex: 0 1 auto;
  }

  .site-header .header-actions {
    flex: 0 0 auto;
  }

  .hero-home {
    padding: 22px 0 30px;
  }

  .hero-home .hero-grid {
    gap: 18px;
  }

  .hero-home .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-home h1 {
    max-width: 18ch;
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 8.9vw, 2.85rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
    text-wrap: pretty;
  }

  .hero-home .subtitle {
    max-width: 38rem;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-home .hero-actions-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-home .hero-actions .btn {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .hero-home .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero-home .hero-proof li {
    align-items: flex-start;
    gap: 6px;
  }

  .hero-home .hero-proof li:last-child {
    grid-column: auto;
  }

  .hero-home .hero-proof li::before {
    width: 17px;
    height: 17px;
    font-size: 0.64rem;
  }

  .hero-home .hero-visual {
    padding: 0 0 46px;
  }

  .hero-home .hero-media::before {
    inset: -6px 12px 12px -6px;
    border-radius: 24px;
  }

  .hero-home .hero-media img {
    height: min(68vw, 310px);
    min-height: 250px;
    border-radius: 24px;
    object-position: 52% 46%;
  }

  .hero-home .hero-product {
    right: 10px;
    bottom: 0;
    left: 10px;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(13, 50, 43, 0.18);
  }

  .hero-home .hero-product__media {
    border-radius: 13px;
  }

  .hero-home .hero-product__content strong {
    font-size: 0.92rem;
  }

  .hero-home .hero-product__content span {
    font-size: 0.76rem;
  }

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

  .trust-rail article {
    grid-template-columns: 1fr;
    gap: 3px;
    align-content: center;
    min-height: 72px;
    padding: 12px 7px;
    text-align: center;
  }

  .trust-rail article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .trust-rail article > span {
    font-size: 0.58rem;
  }

  .trust-rail strong {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .trust-rail p {
    display: none;
  }

  .home-needs .section-heading {
    margin-bottom: 22px;
  }

  .home-needs .routine-grid {
    display: flex;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 12px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-needs .routine-grid::-webkit-scrollbar {
    display: none;
  }

  .home-needs .routine-card,
  .home-needs .routine-card--large {
    grid-row: auto;
    width: min(82vw, 340px);
    min-width: min(82vw, 340px);
    min-height: 320px;
    scroll-snap-align: start;
  }
}

@media (max-width: 430px) {
  .hero-home h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.45rem);
  }

  .hero-home .hero-actions .btn {
    font-size: 0.76rem;
  }

  .hero-home .hero-proof {
    font-size: 0.66rem;
  }

  .hero-home .hero-product {
    right: 6px;
    left: 6px;
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

@media (max-width: 350px) {
  .hero-home .hero-actions-inline {
    grid-template-columns: 1fr;
  }

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

/* Unified catalogue, product purchase and checkout flow */
.purchase-card__mobile-offer {
  display: grid;
  gap: 10px;
  margin: -4px -4px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.purchase-summary > .price,
.purchase-summary > .offer-badge,
.purchase-summary > .buybox-meta {
  display: none;
}

.purchase-card__mobile-offer .price {
  margin: 0;
}

.purchase-card__mobile-offer .price-current {
  font-size: 1.85rem;
}

.purchase-card__mobile-offer .offer-badge,
.purchase-card__mobile-offer .buybox-meta {
  margin: 0;
}

.collection-results-bar {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-review-badge {
  border-color: #c9e1d6;
  background: #eaf6f0;
  color: var(--accent);
}

.checkout-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 122, 109, 0.08), transparent 26rem),
    linear-gradient(180deg, #f5f8f4 0%, #eef3ef 100%);
}

.checkout-card {
  border-color: #cfddd6;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(14, 54, 46, 0.12);
}

.checkout-card > .eyebrow,
.checkout-summary-card > .eyebrow {
  color: var(--accent);
}

.checkout-backlink {
  color: #486159;
  font-weight: 650;
}

.checkout-review-product {
  border-color: #d7e2dc;
  background: #fff;
  box-shadow: 0 14px 36px rgba(14, 54, 46, 0.06);
}

.checkout-review-media {
  border-color: #d7e2dc;
  background: #fbfdfb;
}

.checkout-summary-card {
  border-color: #cfe0d7;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 109, 0.09), transparent 15rem),
    #eef6f1;
  box-shadow: 0 16px 42px rgba(14, 54, 46, 0.09);
}

.checkout-summary-card .order-summary,
.order-summary-review {
  border-color: #d5e1db;
  background: rgba(255, 255, 255, 0.88);
}

.checkout-details {
  padding: 26px;
  border: 1px solid #d5e1db;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(14, 54, 46, 0.05);
}

.form-section-heading h3 {
  color: #123f36;
  font-size: 1.15rem;
}

.form-section-heading p {
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  border-color: #cfddd6;
  background: #fbfdfb;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 81, 72, 0.12);
}

.consent-box {
  border-color: #cfe0d7;
  background: #f1f7f3;
}

.checkout-trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.values-grid article > span {
  color: var(--accent);
}

@media (min-width: 1025px) {
  .product-breadcrumb-section {
    padding: 16px 0 8px;
  }

  .product-breadcrumb-section .breadcrumbs {
    margin-bottom: 0;
  }

  .product-page {
    padding-bottom: 64px;
  }

  .product-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
    grid-template-areas: "media buy";
    gap: 36px;
    align-items: start;
  }

  .purchase-buy-column {
    grid-area: buy;
    display: grid;
    align-content: start;
    padding: 18px 20px;
    border: 1px solid #cfe0d7;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 56px rgba(14, 54, 46, 0.1);
  }

  .purchase-buy-column .purchase-summary {
    grid-area: auto;
    padding: 0 0 12px;
  }

  .purchase-buy-column .purchase-summary h1 {
    margin-bottom: 8px;
    font-size: clamp(2.15rem, 2.5vw, 2.65rem);
    line-height: 0.98;
  }

  .purchase-buy-column .purchase-summary .subtitle {
    margin-bottom: 0;
    font-size: 0.91rem;
    line-height: 1.45;
  }

  .purchase-buy-column .purchase-rating {
    margin: 4px 0 8px;
  }

  .purchase-buy-column .purchase-card--controls {
    grid-area: auto;
    position: static;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .purchase-buy-column .purchase-card__mobile-offer {
    margin: 0 0 10px;
    padding-bottom: 10px;
  }

  .purchase-buy-column .purchase-card__mobile-offer .price-current {
    font-size: 1.65rem;
  }

  .purchase-buy-column .purchase-card__mobile-offer .offer-badge {
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .purchase-buy-column .purchase-card__mobile-offer .buybox-meta {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .purchase-buy-column .purchase-card__mobile-offer .product-stock {
    flex-basis: auto;
  }

  .purchase-buy-column .purchase-card__mobile-offer .product-stock::before {
    content: "✓";
    margin-right: 8px;
    color: var(--muted);
  }

  .purchase-buy-column .purchase-card__heading {
    display: none;
  }

  .purchase-buy-column .product-form {
    gap: 10px;
  }

  .purchase-buy-column .selector-group {
    gap: 4px;
  }

  .purchase-buy-column .chip {
    min-height: 38px;
    padding: 6px 11px;
  }

  .purchase-buy-column .variant-help {
    display: none;
  }

  .purchase-buy-column .quantity {
    min-height: 38px;
    padding: 4px 11px;
  }

  .purchase-buy-column .selector-group--quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .purchase-buy-column .selector-group--quantity .label-row {
    margin: 0;
  }

  .purchase-buy-column .buybox-actions .btn-primary,
  .purchase-buy-column .buybox-actions .btn-secondary {
    min-height: 50px;
    padding: 11px 12px;
    font-size: 0.93rem;
  }

  .purchase-buy-column .order-bump {
    padding: 8px 10px;
  }

  .purchase-buy-column .product-trust-strip {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 0.74rem;
  }
}

@media (max-width: 780px) {
  .purchase-summary > .price,
  .purchase-summary > .offer-badge,
  .purchase-summary > .buybox-meta {
    display: none;
  }

  .purchase-card__mobile-offer {
    display: grid;
    gap: 10px;
    margin: -4px -4px 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .purchase-card__mobile-offer .price {
    margin: 0;
  }

  .purchase-card__mobile-offer .price-current {
    font-size: 1.85rem;
  }

  .purchase-card__mobile-offer .offer-badge {
    margin: 0;
  }

  .purchase-card__mobile-offer .buybox-meta {
    display: flex;
    margin: 0;
  }

  .purchase-card--controls {
    padding: 22px;
    border-color: #cfe0d7;
    background: #fff;
    box-shadow: 0 18px 46px rgba(14, 54, 46, 0.1);
  }

  .purchase-card__heading {
    margin-bottom: 18px;
  }

  .product-form {
    gap: 16px;
  }

  .checkout-page {
    padding: 18px 0 42px;
  }

  .checkout-card {
    width: min(100% - 20px, 1140px);
    padding: 20px;
    border-radius: 24px;
  }

  .checkout-card h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1;
  }

  .checkout-layout {
    gap: 18px;
    margin-top: 22px;
  }

  .checkout-details {
    padding: 18px;
    border-radius: 20px;
  }

  .checkout-summary-card {
    padding: 20px;
    border-radius: 20px;
  }

  .checkout-review-product {
    border-radius: 20px;
  }

  .checkout-actions .btn,
  .checkout-actions button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .purchase-buy-column {
    display: contents;
  }
}

@media (max-width: 520px) {
  .purchase-card__mobile-offer .buybox-meta {
    display: grid;
    gap: 5px;
  }

  .purchase-card__mobile-offer .buybox-meta span + span::before {
    display: none;
  }

  .checkout-review-product {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .checkout-review-media img {
    padding: 6px;
  }

  .checkout-review-copy h2 {
    font-size: 1.1rem;
  }

  .checkout-line-actions {
    grid-column: 1 / -1;
  }
}

/* Mobile-first purchase flow: product first, choice second, checkout without friction */
@media (max-width: 1024px) {
  .product-page__grid .purchase-summary {
    order: 1;
  }

  .product-page__grid .purchase-media {
    order: 2;
  }

  .product-page__grid .purchase-card--controls {
    order: 3;
  }
}

@media (max-width: 780px) {
  .product-breadcrumb-section {
    padding-top: 12px;
    padding-bottom: 4px;
  }

  .product-breadcrumb-section .breadcrumbs {
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .product-breadcrumb-section .breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .product-page {
    padding-top: 6px;
    padding-bottom: 36px;
  }

  .product-page__grid {
    gap: 14px;
  }

  .purchase-summary h1 {
    margin-bottom: 8px;
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
    line-height: 1;
  }

  .purchase-summary .eyebrow {
    margin-bottom: 8px;
  }

  .purchase-summary .subtitle {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .purchase-rating {
    margin: 8px 0;
  }

  .product-stage {
    max-height: 390px;
    border-radius: 20px;
  }

  .product-stage-pdp img {
    padding: 12px;
  }

  .product-thumbs {
    display: flex;
    gap: 8px;
    margin: 10px -2px 0;
    padding: 2px 2px 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-thumbs .thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    padding: 5px;
    scroll-snap-align: start;
  }

  .purchase-card--controls {
    padding: 18px;
    border-radius: 20px;
  }

  .purchase-card__heading {
    display: none;
  }

  .purchase-card__mobile-offer {
    gap: 8px;
    margin: 0 0 14px;
    padding-bottom: 14px;
  }

  .purchase-card__mobile-offer .price-current {
    font-size: 1.75rem;
  }

  .purchase-card__mobile-offer .offer-badge {
    width: fit-content;
    padding: 7px 11px;
    font-size: 0.8rem;
  }

  .product-form {
    gap: 12px;
  }

  .label-row {
    align-items: center;
  }

  .size-guide-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #cfe0d7;
    border-radius: 12px;
    background: #f4f8f5;
    font-size: 0.82rem;
    text-decoration: none;
  }

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

  .selector .chip {
    width: 100%;
    min-height: 48px;
    padding: 10px 6px;
    border-radius: 13px;
    font-weight: 750;
  }

  .selector-error:empty {
    min-height: 0;
  }

  .selector-group--quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .selector-group--quantity .label-row {
    margin: 0;
  }

  .quantity {
    min-height: 48px;
    padding: 5px 10px;
  }

  .quantity button {
    width: 36px;
    height: 36px;
  }

  .buybox-actions .btn-primary,
  .buybox-actions .btn-secondary {
    min-height: 54px;
  }

  .order-bump {
    min-height: 50px;
    padding: 10px 12px;
  }

  .order-bump input {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
  }

  .product-trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .sticky-cta {
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  }

  .cart-drawer__header {
    padding: 16px 16px 12px;
  }

  .cart-drawer__body {
    padding: 14px 16px;
  }

  .cart-drawer__footer {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: #fff;
  }

  .cart-drawer__footer .microcopy {
    margin-bottom: 14px;
  }

  .cart-drawer__footer .btn {
    width: 100%;
    min-height: 54px;
  }

  .checkout-card {
    padding: 16px;
    border-radius: 20px;
  }

  .checkout-card h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .checkout-details {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .field input,
  .field select {
    min-height: 52px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 104px;
    font-size: 16px;
  }

  .consent-box {
    padding: 15px;
    border-radius: 16px;
  }

  .check-field input {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .cookie-banner {
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-banner__content {
    gap: 10px;
  }

  .cookie-banner__content > div > p:last-child {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .cookie-banner .btn {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 390px) {
  .selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-cta__inner {
    grid-template-columns: minmax(74px, 0.7fr) minmax(150px, 1.3fr);
  }
}
