@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-900.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira Semi Condensed";
  src: url("../fonts/saira-semi-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira Semi Condensed";
  src: url("../fonts/saira-semi-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/dancing-script-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --charcoal: #353738;
  --charcoal-deep: #252728;
  --charcoal-soft: #4a4d4e;
  --paper: #f5f4f0;
  --paper-deep: #ebeae5;
  --white: #ffffff;
  --ink: #252829;
  --muted: #666d6f;
  --line: #d7d8d5;
  --line-dark: #505354;
  --teal: #008889;
  --teal-dark: #006d6e;
  --green: #408310;
  --green-dark: #31670b;
  --star: #e5ad00;
  --shadow: 0 18px 42px rgba(28, 31, 32, .10);
  --shell: 1280px;
  --font-display: "Saira Semi Condensed", "Arial Narrow", "Lato", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #28b9bb;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

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

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

.skip-link:focus {
  transform: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s ease;
}

.mmr-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
}

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

.script-line {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: "Dancing Script", cursive;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.15;
}

.eyebrow,
.product-type {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

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

.button--purchase {
  background: var(--green);
  color: var(--white);
}

.button--purchase:hover {
  background: var(--green-dark);
}

.button--outline {
  border-color: var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.button--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--charcoal-deep);
}

.text-link,
.card-detail-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.text-link span,
.card-detail-link span {
  transition: transform .18s ease;
}

.text-link:hover span,
.card-detail-link:hover span {
  transform: translateX(4px);
}

/* Private preview and navigation */

.preview-bar {
  min-height: 30px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.preview-bar__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.preview-bar__inner > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-bar__inner i {
  width: 7px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: var(--white);
}

.preview-bar__note {
  color: rgba(255, 255, 255, .72);
}

.preview-bar a {
  margin-left: auto;
  padding: 6px 0;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(0, 0, 0, .2);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.brand img {
  width: 218px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .94;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 22px;
}

.main-nav a {
  position: relative;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-buy {
  min-height: 44px;
  align-self: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .42);
}

.main-nav .nav-buy::after {
  display: none;
}

.main-nav .nav-buy:hover,
.main-nav .nav-buy.is-active {
  border-color: var(--teal);
  background: rgba(0, 136, 137, .14);
}

.nav-home {
  display: none !important;
}

.menu-toggle {
  display: none;
}

.menu-close {
  display: none;
}

.cart-button {
  min-width: 88px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cart-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cart-button b {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 10px;
}

/* Homepage hero */

.home-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-hero__layout {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: 64px;
}

.home-hero__copy {
  align-self: center;
  padding: 70px 0 76px;
}

.home-hero__copy h1 {
  max-width: 650px;
  margin: 14px 0 22px;
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .97;
}

.home-hero__copy h1 span {
  color: var(--teal-dark);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-product-summary {
  max-width: 610px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-product-summary > * {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 18px 15px 0;
}

.hero-product-summary > div {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-product-summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-product-summary strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
}

.rating-link > span,
.product-rating > span,
.review-stars,
.review-quote > div,
.product-review-band__layout > div > span {
  color: var(--star);
  letter-spacing: .06em;
}

.rating-link strong {
  font-size: 17px;
}

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

.hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal-deep);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
}

.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(27, 29, 30, .88);
  color: var(--white);
}

.hero-photo figcaption > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-photo figcaption strong {
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.hero-photo__mobile-cta {
  display: none;
}

/* Service promises */

.service-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 1px solid var(--line);
}

.service-grid svg {
  width: 29px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-grid h2 {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Shared section structures */

.range-section,
.comparison-section,
.reviews-section,
.alternatives-section,
.product-information,
.catalogue-section,
.shop-help {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2,
.catalogue-heading h2,
.product-information__intro h2,
.shop-help h2,
.help-section h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.section-heading > p,
.catalogue-heading > p,
.shop-help p,
.product-information__intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

/* ManMax quantity offers */

.offers-section {
  padding: 76px 0;
  background: var(--charcoal-deep);
  color: var(--white);
}

.offer-showcase {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 76px;
}

.offer-showcase__product {
  position: relative;
  min-height: 535px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 28px 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, #333637 0%, #1d1f20 72%);
}

.offer-showcase__product > .eyebrow {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 26px;
  color: #79d7d8;
}

.offer-product-stage {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .12), transparent 48%);
}

.offer-product-stage img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, .34));
  transform: translateY(16px) scale(1.05);
}

.offer-product-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
}

.offer-product-note strong {
  font-size: 14px;
}

.offer-product-note span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  text-align: right;
}

.offer-selector header {
  max-width: 660px;
  margin-bottom: 26px;
}

.offer-selector header .eyebrow {
  color: #79d7d8;
}

.offer-selector h2 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

.offer-selector header > p:last-child {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
}

.offer-options {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.offer-option {
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 52px minmax(150px, 1fr) 130px 110px;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background-color .16s ease, box-shadow .16s ease;
}

.offer-option:hover,
.offer-option.is-selected {
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 4px 0 0 var(--teal);
}

.offer-option__multiplier {
  color: #84dfe0;
  font-size: 24px;
  font-weight: 900;
}

.offer-option__name,
.offer-option__price {
  display: flex;
  flex-direction: column;
}

.offer-option__name strong {
  font-size: 18px;
}

.offer-option__name small,
.offer-option__price small {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.offer-option__price strong {
  font-size: 22px;
}

.offer-option__saving {
  color: #9ad774;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.offer-selector__footer {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: end;
  gap: 18px;
  margin-top: 24px;
}

.offer-selector__footer > div {
  display: flex;
  flex-direction: column;
}

.offer-selector__footer span {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-selector__footer strong {
  font-size: 25px;
}

.offer-selector__footer .button {
  width: 100%;
}

/* Product cards and studio */

.range-section {
  background: var(--paper);
}

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

.product-grid--home {
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  align-items: start;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 0;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-card:hover {
  box-shadow: 0 16px 40px rgba(28, 31, 32, .09);
}

.product-studio {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f4f0 0%, #ecece7 72%, #d6d7d2 72.5%, #e7e6e1 100%);
}

.product-studio::before {
  position: absolute;
  z-index: -1;
  inset: 8% 8% 24%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 68%);
  content: "";
}

.product-studio::after {
  position: absolute;
  z-index: 0;
  right: 24%;
  bottom: 10%;
  left: 24%;
  height: 6%;
  border-radius: 50%;
  background: rgba(35, 38, 39, .16);
  filter: blur(9px);
  content: "";
}

.product-studio > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 12px rgba(26, 29, 30, .12));
  transform: scale(1);
  transition: transform .22s ease;
}

.product-card:hover .product-studio > img,
.alternative-card:hover .product-studio > img {
  transform: scale(1.015);
}

.product-studio--manmax > img {
  transform: scale(1.1);
  filter: contrast(1.06) saturate(1.04) drop-shadow(0 14px 10px rgba(23, 26, 27, .22));
}

.product-card:hover .product-studio--manmax > img,
.alternative-card:hover .product-studio--manmax > img {
  transform: scale(1.12);
}

.product-card--range-feature .product-studio {
  aspect-ratio: 1.12;
}

.product-card--range-feature h3 {
  font-size: 27px;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 9px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card h3 {
  margin: 9px 0 11px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.18;
}

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

.product-card__body > p:not(.product-type) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.product-card__footer > strong {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.product-card__footer s {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.product-card__footer > a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.product-card__footer > button {
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-line {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stock-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* Honest comparison */

.comparison-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading--compact {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  margin-bottom: 28px;
}

.section-heading--compact h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  table-layout: fixed;
}

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

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

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.compare-product-heading {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  text-decoration: none !important;
}

.compare-product-heading img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #e6e6e1;
}

.compare-product-heading span {
  line-height: 1.3;
}

.compare-product-heading span small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 150px;
}

.comparison-table tbody th {
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--muted);
  font-size: 14px;
}

.comparison-price-row td {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.comparison-price-row td > strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.comparison-table a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.comparison-table tbody tr:last-child a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--teal-dark);
  text-decoration: none;
}

.mobile-scroll-hint {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Reviews and responsible-use note */

.reviews-section {
  background: var(--paper-deep);
}

.reviews-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 78px;
  align-items: start;
}

.reviews-summary > strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .9;
}

.reviews-summary > strong span {
  color: var(--muted);
  font-size: .32em;
  letter-spacing: -.02em;
}

.review-stars {
  margin-top: 18px;
  font-size: 22px;
}

.reviews-summary > p {
  margin: 9px 0 18px;
  color: var(--muted);
}

.review-list {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.review-quote {
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.review-quote--featured {
  grid-row: 1 / -1;
  padding: 30px;
  border-top: 5px solid var(--teal);
  background: var(--white);
}

.review-quote > div {
  font-size: 15px;
}

.review-quote > p {
  margin: 14px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.review-quote--featured > p {
  margin: 26px 0;
  font-size: 27px;
}

.review-quote footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.review-quote footer span {
  color: var(--muted);
  font-size: 12px;
}

.help-section {
  padding: 66px 0;
  background: var(--teal-dark);
  color: var(--white);
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.help-section .eyebrow {
  color: #8ee4e5;
}

.help-section h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.help-layout > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

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

.help-actions > a:last-child {
  font-size: 13px;
  font-weight: 900;
}

/* Shop */

.shop-intro {
  padding: 24px 0 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.shop-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  align-items: end;
  gap: 72px;
}

.shop-intro h1 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .98;
}

.shop-intro__layout > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.catalogue-section {
  padding-top: 24px;
  scroll-margin-top: 106px;
  background: var(--white);
}

.catalogue-toolbar {
  border-bottom: 1px solid var(--line);
}

.filter-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-scroll button {
  position: relative;
  min-height: 54px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  scroll-snap-align: start;
  text-transform: uppercase;
}

.filter-scroll button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
}

.filter-scroll button.is-active {
  color: var(--ink);
}

.filter-scroll button.is-active::after {
  transform: scaleX(1);
}

.filter-scroll button span {
  margin-left: 5px;
  color: var(--teal-dark);
}

.catalogue-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 22px 0 20px;
}

.catalogue-heading h2 {
  font-size: clamp(31px, 3vw, 42px);
}

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

.product-grid--catalogue .product-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.product-grid--catalogue .product-card:first-child .product-studio {
  aspect-ratio: auto;
  min-height: 450px;
  background: linear-gradient(145deg, #d6d7d2 0%, #f0efeb 50%, #bdc0bd 100%);
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.product-grid--catalogue .product-card:first-child .product-card__body {
  justify-content: flex-start;
  padding: 28px 30px;
}

.product-grid--catalogue .product-card:first-child .product-card__meta {
  order: 1;
}

.product-grid--catalogue .product-card:first-child h3 {
  order: 2;
}

.product-grid--catalogue .product-card:first-child .product-card__body > p:not(.product-type) {
  order: 3;
  margin-bottom: 15px;
}

.product-grid--catalogue .product-card:first-child .product-card__footer {
  order: 4;
}

.product-grid--catalogue .product-card:first-child .featured-proof {
  order: 5;
  margin-top: 15px;
}

.product-grid--catalogue .product-card:first-child .card-facts {
  order: 6;
}

.product-grid--catalogue .product-card:first-child .card-detail-link {
  order: 7;
}

.product-grid--catalogue .product-card:not(:first-child) {
  border: 1px solid var(--line);
}

.product-grid--catalogue .product-card:first-child h3 {
  margin-block: 6px 8px;
  font-size: 29px;
}

.featured-proof {
  display: grid;
  gap: 0;
  margin: 2px 0 15px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured-proof li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.featured-proof strong {
  color: var(--ink);
  font-weight: 900;
}

.featured-proof span {
  color: var(--muted);
}

.product-grid--catalogue .product-card:first-child .card-facts {
  margin: 0 0 12px;
  padding-block: 11px;
}

.product-grid--catalogue .product-card:first-child .product-card__footer {
  margin-top: 0;
  padding-top: 14px;
}

.product-grid--catalogue .product-card:first-child .card-detail-link {
  margin-top: 8px;
}

.product-grid--catalogue .product-card:first-child .product-studio::after {
  right: 29%;
  bottom: 12%;
  left: 29%;
  height: 4%;
  background: rgba(23, 26, 27, .22);
  filter: blur(7px);
}

.card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto 0 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-facts div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.card-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-facts dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.card-detail-link {
  margin-top: 12px;
  font-size: 12px;
}

.shop-help {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.shop-help__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: end;
  gap: 72px;
}

.shop-help h2 {
  max-width: 700px;
  font-size: clamp(36px, 4vw, 52px);
}

.shop-help .button {
  margin-top: 22px;
}

/* Product detail page */

.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb .shell {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}

.breadcrumb strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}

.product-hero {
  padding: 34px 0 62px;
  background: var(--paper);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  align-items: start;
  gap: 36px;
}

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

.product-studio--pdp {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #c9cbc8 0%, #f1f0ec 48%, #aeb2af 100%);
}

.product-studio--pdp::after {
  right: 20%;
  bottom: 9%;
  left: 20%;
  height: 7%;
  background: rgba(20, 23, 24, .24);
  filter: blur(12px);
}

.product-studio--pdp > img {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  filter: drop-shadow(0 24px 22px rgba(23, 26, 27, .2));
}

.product-studio--pdp.product-studio--manmax > img {
  transform: scale(1.14);
  filter: contrast(1.06) saturate(1.04) drop-shadow(0 15px 10px rgba(23, 26, 27, .25));
}

.product-gallery > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.purchase-panel {
  position: relative;
  z-index: 3;
  margin: 12px 0 12px -28px;
  padding: 18px 0 20px 46px;
  border-left: 4px solid var(--teal);
  background: linear-gradient(90deg, rgba(245, 244, 240, .98) 0%, var(--paper) 22%);
}

.product-rating {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
}

.product-rating strong {
  font-size: 14px;
}

.product-rating small {
  color: var(--muted);
  font-size: 13px;
}

.purchase-panel h1 {
  margin: 6px 0 13px;
  font-size: clamp(35px, 3.45vw, 47px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.purchase-benefit {
  max-width: 600px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--teal-dark);
  background: rgba(0, 128, 128, .07);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.mobile-inline-buy {
  display: none;
}

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.purchase-price s {
  color: var(--muted);
  font-size: 17px;
}

.purchase-price strong {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.purchase-price span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.purchase-summary {
  margin: 14px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-facts div {
  min-width: 0;
  padding: 13px 15px;
}

.product-facts div + div {
  border-left: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.pdp-offers {
  margin: 16px 0;
}


.pdp-offers h2 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pdp-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pdp-offers__grid button {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.pdp-offers__grid button.is-featured {
  border: 2px solid var(--teal);
}

.pdp-offers__grid span,
.pdp-offers__grid small {
  color: var(--muted);
  font-size: 11px;
}

.pdp-offers__grid small {
  color: var(--green-dark);
  font-weight: 900;
}

.purchase-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 10px;
}

.quantity-control {
  min-height: 54px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.quantity-control button {
  min-width: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.quantity-control button:disabled {
  color: #aeb1b0;
  cursor: not-allowed;
}

.quantity-control span {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.purchase-button {
  min-height: 54px;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.purchase-button:hover {
  background: var(--green-dark);
}

.purchase-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.purchase-notes > span:not(.stock-line)::before {
  margin-right: 7px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.purchase-guidance {
  max-width: 610px;
  margin: 11px 0 0;
  color: #6a7070;
  font-size: 12px;
  line-height: 1.5;
}

.purchase-guidance strong {
  color: #4b5151;
  font-weight: 700;
}

.order-confidence {
  position: relative;
  z-index: 4;
  padding: 0 0 52px;
  background: linear-gradient(180deg, var(--paper) 0 30px, var(--paper-deep) 30px 100%);
}

.order-confidence__console {
  position: relative;
  margin-top: -30px;
  border: 1px solid #c8cac7;
  border-top: 0;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(29, 32, 33, .14);
}

.order-confidence__console::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0 21%, #cfd2cf 21% 77%, #d9272e 77% 100%);
  content: "";
}

.order-confidence__header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px 21px;
  overflow: hidden;
  background: var(--charcoal-deep);
  color: var(--white);
}

.order-confidence__header::after {
  position: absolute;
  top: -54px;
  right: 21%;
  width: 1px;
  height: 150px;
  background: rgba(255, 255, 255, .12);
  content: "";
  transform: rotate(31deg);
}

.order-confidence__header p {
  margin: 0;
  color: #64d4d5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.order-confidence__header h2 {
  margin: 0;
  font-size: clamp(23px, 2.35vw, 31px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.order-confidence__header a {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
  border-bottom: 2px solid var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.order-confidence__header a span {
  color: #64d4d5;
  font-size: 17px;
}

.order-confidence__grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr 1.17fr;
}

.order-confidence__grid article {
  position: relative;
  min-width: 0;
  min-height: 174px;
  display: grid;
  align-items: center;
  gap: 18px;
  padding: 28px;
}

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

.order-confidence__grid article > div:last-child > span,
.confidence-payment > div:first-child > span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.order-confidence__grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.1;
}

.order-confidence__grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.confidence-shipping {
  grid-template-columns: 126px minmax(0, 1fr);
}

.confidence-shipping::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #d9272e;
  content: "";
}

.confidence-brand-plate {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid #dcddda;
  background: #fafafa;
  box-shadow: inset 0 0 0 4px var(--white), 0 8px 20px rgba(29, 32, 33, .07);
}

.confidence-brand-plate--auspost img {
  width: 126px;
}

.confidence-brand-plate--auspost {
  padding: 10px;
}

.confidence-privacy {
  grid-template-columns: 126px minmax(0, 1fr);
  background: #f8f7f3;
}

.confidence-brand-plate--privacy {
  grid-template-columns: 38px minmax(0, 1fr);
  justify-content: start;
  gap: 8px;
  padding: 10px;
}

.confidence-brand-plate--privacy img {
  width: 38px;
}

.confidence-service-wordmark {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--charcoal-deep);
  line-height: 1;
  text-transform: uppercase;
}

.confidence-service-wordmark small {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
}

.confidence-service-wordmark strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
}

.confidence-service-wordmark b {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
}

.confidence-payment {
  grid-template-columns: minmax(140px, .9fr) minmax(170px, 1.1fr);
}

.payment-marks {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #f8f8f6;
}

.payment-mark {
  width: 40px;
  height: 28px;
  object-fit: contain;
}

.payment-mark--paypal {
  width: 76px;
}

.product-review-band {
  padding: 36px 0;
  background: var(--charcoal);
  color: var(--white);
}

.product-review-band__layout {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 40px;
}

.product-review-band__layout > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 12px;
}

.product-review-band__layout > div > span {
  grid-column: 1 / -1;
}

.product-review-band__layout strong {
  font-size: 24px;
}

.product-review-band__layout p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

.product-review-band blockquote {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.product-review-band cite {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.product-review-band a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.product-information {
  padding-block: 72px;
  background: var(--paper-deep);
}

.product-information__layout {
  display: grid;
  grid-template-columns: minmax(270px, .6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 78px;
}

.product-information__intro {
  position: sticky;
  top: 118px;
}

.product-information__intro h2 {
  font-size: clamp(34px, 3.35vw, 46px);
}

.product-information__intro > p:not(.eyebrow) {
  margin-top: 20px;
}

.information-points {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.information-points li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.information-points li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--teal-dark);
  content: "\2192";
  font-weight: 900;
}

.product-accordions {
  padding: 0 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(29, 32, 33, .06);
}

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

#shipping {
  scroll-margin-top: 118px;
}

.accordion > button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.accordion > button strong {
  font-size: 17px;
}

.accordion > button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.accordion > button i::before,
.accordion > button i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--teal-dark);
  content: "";
}

.accordion > button i::after {
  transform: rotate(90deg);
  transition: transform .18s ease;
}

.accordion.is-open > button i::after {
  transform: rotate(0);
}

.accordion__panel {
  padding: 0 0 26px;
  color: var(--muted);
}

.accordion__panel p {
  margin: 0;
  line-height: 1.7;
}

.ingredient-panel .ingredient-overview {
  margin-bottom: 18px;
}

.ingredient-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  background: var(--white);
}

.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.ingredient-table thead {
  background: var(--charcoal);
  color: var(--white);
}

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

.ingredient-table thead th {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ingredient-table thead th:last-child,
.ingredient-table td:last-child {
  width: 190px;
  text-align: right;
}

.ingredient-table tbody th {
  font-weight: 700;
}

.ingredient-table tbody tr:nth-child(even) {
  background: var(--paper-deep);
}

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

.ingredient-table small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.accordion__panel .ingredient-other,
.accordion__panel .ingredient-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.accordion__panel .ingredient-other strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.accordion__panel .ingredient-note {
  padding-left: 12px;
  border-left: 3px solid var(--line);
}

.detail-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.detail-fact-grid div {
  padding: 16px;
  border-left: 3px solid var(--teal);
  background: var(--paper-deep);
}

.detail-fact-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-fact-grid strong {
  display: block;
  margin-top: 5px;
}

.alternatives-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.alternative-card {
  min-width: 0;
  padding-bottom: 20px;
  border: 0;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.alternative-card:hover {
  box-shadow: 0 16px 36px rgba(28, 31, 32, .08);
}

.alternative-card .product-studio {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.alternative-card > span,
.alternative-card > h3,
.alternative-card > strong {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.alternative-card > span {
  margin-top: 17px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.alternative-card h3 {
  margin-top: 6px;
  margin-bottom: 9px;
  font-size: 17px;
  line-height: 1.25;
}

.alternative-card > strong {
  font-size: 18px;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -10px 30px rgba(25, 28, 29, .12);
}

.mobile-buy-bar.is-visible {
  display: grid;
}

.mobile-buy-bar > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mobile-buy-bar span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-buy-bar button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Footer and preview notification */

.site-footer {
  padding: 70px 0 20px;
  background: var(--charcoal-deep);
  color: var(--white);
}

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

.footer-intro img {
  width: 220px;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .9;
}

.footer-intro p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .63);
  font-size: 14px;
}

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

.footer-column h2 {
  margin: 0 0 14px;
  color: #71d3d4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
}

.preview-toast {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  padding: 17px 20px;
  border-left: 4px solid var(--teal);
  background: var(--charcoal-deep);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.preview-toast.is-visible {
  opacity: 1;
  transform: none;
}

.preview-toast strong {
  font-size: 13px;
}

.preview-toast span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

/* Responsive */

@media (max-width: 1210px) {
  .header-inner {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 20px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .home-hero__layout {
    grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
    gap: 40px;
  }

  .service-grid article {
    padding: 24px 16px;
  }

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

  .product-card--range-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  }

  .product-card--range-feature .product-studio {
    min-height: 360px;
    aspect-ratio: auto;
  }
}

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

  .preview-bar__note {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: min(205px, 47vw);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 2px;
    background: transparent;
    color: var(--white);
  }

  .menu-toggle svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .main-nav {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 72px);
    display: block;
    overflow-y: auto;
    padding: 18px;
    background: var(--charcoal-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.menu-open .menu-lines {
    display: none;
  }

  body.menu-open .menu-close {
    display: block;
  }

  .main-nav a,
  .nav-home {
    min-height: 56px;
    display: flex !important;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    font-size: 13px;
  }

  .main-nav a::after {
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .main-nav a.is-active::after {
    transform: scaleY(1);
  }

  .cart-button {
    min-width: 60px;
    width: 60px;
    height: 46px;
    gap: 5px;
    padding: 0 5px;
  }

  .cart-button span {
    display: none;
  }

  .cart-button svg {
    width: 18px;
  }

  .home-hero__layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-hero__copy {
    padding: 58px 0 50px;
  }

  .hero-photo {
    height: min(68vw, 570px);
  }

  .hero-photo img {
    min-height: 0;
  }

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

  .service-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .service-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .offer-showcase {
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: 34px;
  }

  .offer-showcase__product {
    min-height: 465px;
  }

  .offer-product-stage {
    min-height: 355px;
  }

  .offer-product-stage img {
    height: 380px;
  }

  .offer-option {
    grid-template-columns: 44px minmax(115px, 1fr) 112px 92px;
    gap: 10px;
    padding-inline: 10px;
  }

  .section-heading,
  .shop-intro__layout,
  .shop-help__layout,
  .help-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .product-grid--catalogue .product-card:first-child {
    grid-column: 1 / -1;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-studio--pdp {
    max-height: 650px;
  }

  .order-confidence__header {
    grid-template-columns: auto 1fr;
  }

  .order-confidence__header a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .order-confidence__grid {
    grid-template-columns: 1fr 1fr;
  }

  .confidence-payment {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .product-information__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-information__intro {
    position: static;
  }

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

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

@media (max-width: 800px) {
  .offer-option {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 9px;
    padding-inline: 8px;
  }

  .offer-option__name,
  .offer-option__price,
  .offer-option__saving {
    min-width: 0;
  }

  .offer-option__saving {
    grid-column: 2 / -1;
    margin-top: -10px;
    overflow-wrap: anywhere;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .home-hero__copy h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .home-hero__copy {
    padding: 38px 0 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-product-summary > div {
    min-height: 68px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-photo {
    order: -1;
    width: calc(100% + 28px);
    height: 260px;
    margin-left: -14px;
  }

  .hero-photo figcaption {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 15px 18px;
  }

  .hero-photo__mobile-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 15px;
    border-radius: 2px;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .service-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid article,
  .service-grid article:nth-child(3),
  .service-grid article:nth-child(4) {
    min-height: 118px;
    padding: 18px 14px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid article:first-child,
  .service-grid article:nth-child(2) {
    border-top: 0;
  }

  .service-grid article:nth-child(2),
  .service-grid article:nth-child(4) {
    border-right: 0;
  }

  .service-grid article {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .service-grid h2 {
    font-size: 11px;
  }

  .service-grid p {
    font-size: 11px;
  }

  .range-section,
  .comparison-section,
  .reviews-section,
  .alternatives-section,
  .product-information,
  .catalogue-section,
  .shop-help {
    padding: 66px 0;
  }

  .offers-section {
    padding: 54px 0;
  }

  .offer-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .offer-showcase__product {
    min-height: 335px;
    padding: 0 18px 16px;
  }

  .offer-showcase__product > .eyebrow {
    top: 17px;
    left: 18px;
  }

  .offer-product-stage {
    min-height: 255px;
  }

  .offer-product-stage img {
    height: 290px;
  }

  .offer-product-note {
    padding-top: 14px;
  }

  .offer-product-note span {
    max-width: 145px;
  }

  .offer-selector h2 {
    font-size: 38px;
  }

  .offer-selector header {
    margin-bottom: 20px;
  }

  .offer-option {
    min-height: 76px;
    grid-template-columns: 40px 1fr auto;
    gap: 9px;
    padding: 10px 8px;
  }

  .offer-option__multiplier {
    font-size: 21px;
  }

  .offer-option__price {
    text-align: right;
  }

  .offer-option__saving {
    grid-column: 2 / -1;
    margin-top: -10px;
    text-align: left;
  }

  .offer-selector__footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .section-heading h2,
  .catalogue-heading h2,
  .product-information__intro h2,
  .shop-help h2,
  .help-section h2 {
    font-size: 31px;
  }

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

  .product-grid--catalogue {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card--range-feature {
    grid-column: 1 / -1;
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .product-card--range-feature .product-studio {
    min-height: 235px;
  }

  .product-card--range-feature .product-studio > img {
    transform: scale(1.55);
  }

  .product-card--range-feature .product-card__body {
    min-width: 0;
    padding: 18px;
  }

  .product-card--range-feature h3 {
    font-size: 21px;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) .product-card__body {
    padding: 14px;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) .product-card__body > p:not(.product-type) {
    display: none;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) h3 {
    margin: 7px 0 12px;
    font-size: 17px;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) .product-card__footer > strong {
    font-size: 19px;
  }

  .product-grid--home .product-card:not(.product-card--range-feature) .product-card__footer > a {
    min-height: 36px;
  }

  .product-grid--home .product-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .product-grid--home .product-card:last-child .product-studio {
    min-height: 210px;
    aspect-ratio: auto;
  }

  .product-grid--home .product-card:last-child .product-studio > img {
    transform: scale(1.5);
  }

  .product-grid--home .product-card:last-child .product-card__body {
    padding: 18px;
  }

  .product-grid--home .product-card:last-child h3 {
    font-size: 21px;
  }

  .product-grid--home .product-card:last-child .product-card__footer {
    align-items: center;
    flex-direction: row;
  }

  .product-grid--catalogue .product-card:first-child {
    display: grid;
    grid-column: auto;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .product-grid--catalogue .product-card,
  .product-grid--catalogue .product-card:first-child {
    min-height: 236px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    border: 1px solid var(--line);
  }

  .product-grid--catalogue .product-card .product-studio,
  .product-grid--catalogue .product-card:first-child .product-studio {
    min-height: 234px;
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-grid--catalogue .product-card .product-studio > img,
  .product-grid--catalogue .product-card:first-child .product-studio > img {
    transform: scale(1.36);
  }

  .product-grid--catalogue .product-card .product-card__body,
  .product-grid--catalogue .product-card:first-child .product-card__body {
    justify-content: center;
    padding: 15px;
  }

  .product-grid--catalogue .product-card h3,
  .product-grid--catalogue .product-card:first-child h3 {
    margin-block: 6px 8px;
    font-size: 19px;
  }

  .product-grid--catalogue .product-card__body > p:not(.product-type),
  .product-grid--catalogue .card-facts,
  .product-grid--catalogue .card-detail-link {
    display: none;
  }

  .product-grid--catalogue .featured-proof {
    margin: 4px 0 10px;
  }

  .product-grid--catalogue .featured-proof li:not(:first-child) {
    display: none;
  }

  .product-grid--catalogue .featured-proof li {
    grid-template-columns: auto 1fr;
    padding: 8px 0;
  }

  .product-grid--catalogue .product-card__footer {
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .product-grid--catalogue .product-card__footer > strong {
    font-size: 19px;
  }

  .product-grid--catalogue .product-card__footer > button {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .mobile-scroll-hint {
    display: block;
  }

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

  .review-quote {
    min-height: 0;
  }

  .review-quote--featured {
    grid-row: auto;
  }

  .help-section {
    padding: 58px 0;
  }

  .help-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .help-actions > * {
    justify-content: center;
    text-align: center;
  }

  .shop-intro {
    padding: 34px 0 30px;
  }

  .shop-intro h1 {
    font-size: 48px;
  }

  .catalogue-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0 24px;
  }

  .catalogue-section {
    padding-top: 34px;
  }

  .catalogue-heading .text-link {
    display: none;
  }

  .filter-scroll {
    gap: 24px;
    padding-right: 30px;
  }

  .catalogue-toolbar {
    position: relative;
  }

  .catalogue-toolbar::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 1px;
    width: 34px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white));
    content: "";
    pointer-events: none;
  }

  .breadcrumb .shell {
    min-height: 44px;
  }

  .breadcrumb .shell > :nth-child(n+3) {
    display: none;
  }

  .breadcrumb a:first-child::before {
    margin-right: 7px;
    content: "←";
  }

  .product-hero {
    padding: 22px 0 58px;
  }

  .order-confidence {
    padding-bottom: 42px;
    background: linear-gradient(180deg, var(--paper) 0 18px, var(--paper-deep) 18px 100%);
  }

  .order-confidence__console {
    margin-top: -18px;
  }

  .order-confidence__header {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 23px 20px 18px;
  }

  .order-confidence__header h2 {
    font-size: 25px;
  }

  .order-confidence__header a {
    grid-column: auto;
    margin-top: 5px;
  }

  .order-confidence__grid {
    grid-template-columns: 1fr;
  }

  .order-confidence__grid article {
    min-height: 0;
    padding: 21px 18px;
  }

  .order-confidence__grid article + article,
  .confidence-payment {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confidence-shipping {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .confidence-privacy {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .confidence-brand-plate {
    min-height: 64px;
    padding: 10px;
  }

  .confidence-brand-plate--auspost img {
    width: 103px;
  }

  .confidence-brand-plate--privacy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .confidence-brand-plate--privacy img {
    width: 34px;
  }

  .confidence-service-wordmark strong {
    font-size: 11px;
  }

  .confidence-payment {
    grid-template-columns: 1fr;
    gap: 14px !important;
  }

  .payment-marks {
    justify-content: flex-start;
  }

  .product-detail-layout {
    gap: 25px;
  }

  .product-studio--pdp {
    height: 295px;
    aspect-ratio: auto;
    max-height: 295px;
  }

  .product-studio--pdp > img {
    transform: scale(1.08);
  }

  .product-gallery > p {
    display: none;
  }

  .purchase-panel {
    margin: 0;
    padding: 0;
    border-left: 0;
    background: transparent;
  }

  .purchase-panel h1 {
    margin-top: 4px;
    font-size: 31px;
    line-height: 1.05;
  }

  .purchase-price strong {
    font-size: 33px;
  }

  .mobile-inline-buy {
    width: 100%;
    min-height: 50px;
    display: block;
    margin: 12px 0 18px;
    border: 0;
    border-radius: 2px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

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

  .product-facts div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pdp-offers__grid {
    grid-template-columns: 1fr;
  }

  .pdp-offers__grid button {
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .pdp-offers__grid button small {
    grid-column: 1 / -1;
  }

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

  body[data-page="product"] {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  body.menu-open .mobile-buy-bar {
    display: none !important;
  }

  body[data-page="product"] .preview-toast {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .product-review-band__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-review-band blockquote {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .detail-fact-grid {
    grid-template-columns: 1fr;
  }

  .product-accordions {
    padding-inline: 18px;
  }

  .information-points {
    margin-top: 22px;
  }

  .ingredient-table {
    font-size: 12px;
  }

  .ingredient-table th,
  .ingredient-table td {
    padding: 11px 10px;
  }

  .ingredient-table thead th:last-child,
  .ingredient-table td:last-child {
    width: 118px;
  }

  .ingredient-table thead th {
    font-size: 9px;
  }

  .alternative-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .alternative-card > span,
  .alternative-card > h3,
  .alternative-card > strong {
    margin-right: 12px;
    margin-left: 12px;
  }

  .alternative-card h3 {
    font-size: 14px;
  }

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

  .footer-intro,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .footer-column:last-child h2 {
    grid-column: 1 / -1;
  }

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

  .preview-toast {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 172px;
  }

  .home-hero__copy h1,
  .shop-intro h1 {
    font-size: 42px;
  }

}

/* Scan-first UX pass */

.section-heading--single {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.section-heading--single.section-heading--compact {
  grid-template-columns: 1fr;
}

.product-card__cue {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 18px !important;
  padding: 6px 9px;
  border-left: 3px solid var(--teal);
  background: rgba(0, 128, 128, .07);
  color: var(--ink) !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
}

.product-card__chips span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Homepage format guide */

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

.format-guide__card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 190px 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal-dark);
  background: var(--paper);
  transition: box-shadow .2s ease, transform .2s ease;
}

.format-guide__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.format-guide__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #e2e2dd, #faf9f5 58%, #d1d3cf);
}

.format-guide__visual::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 52px;
  height: 3px;
  background: var(--teal);
  box-shadow: 0 -7px 0 rgba(0, 136, 137, .28);
  content: "";
}

.format-guide__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(25, 28, 29, .16));
  transform: scale(1.12);
}

.format-guide__card > div:nth-child(2) {
  padding: 22px 22px 15px;
}

.format-guide__card span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.format-guide__card h3 {
  margin: 7px 0 5px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.format-guide__card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.format-guide__card > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.format-guide__card > strong i {
  color: var(--teal-dark);
  font-size: 18px;
  font-style: normal;
}

.full-comparison {
  margin-top: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.full-comparison__heading {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.full-comparison .comparison-scroll {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.full-comparison .mobile-scroll-hint {
  padding: 0 16px 12px;
}

.catalogue-comparison {
  margin-top: 36px;
  scroll-margin-top: 110px;
}

.catalogue-comparison .comparison-table {
  min-width: 960px;
}

/* Shop: visual format first, equal product cards */

.shop-intro {
  padding-block: 38px 34px;
}

.shop-intro__layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.shop-intro h1 {
  font-size: clamp(44px, 4.4vw, 62px);
}

.catalogue-section {
  padding-top: 26px;
}

.catalogue-toolbar {
  border: 0;
}

.rail-hint {
  display: none;
}

.shop-format-choices {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 0;
}

.filter-scroll .shop-format-choice {
  min-width: 0;
  min-height: 104px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  text-transform: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.filter-scroll .shop-format-choice::after {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.filter-scroll .shop-format-choice:hover {
  border-color: #b9bcb9;
  transform: translateY(-2px);
}

.filter-scroll .shop-format-choice.is-active {
  border-color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(28, 31, 32, .10);
}

.filter-scroll .shop-format-choice.is-active::after {
  transform: scaleX(1);
}

.shop-format-choice > span:last-child {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.shop-format-choice strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.shop-format-choice small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.shop-format-choice__visual {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8e8e3;
}

.shop-format-choice__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.15);
}

.shop-format-choice__visual--count {
  background: var(--charcoal-deep);
  color: var(--white);
}

.shop-format-choice__visual--count b {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.catalogue-heading {
  margin: 30px 0 22px;
}

.catalogue-heading h2 {
  margin-top: 4px;
}

.product-grid--catalogue {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.product-grid--catalogue .product-card,
.product-grid--catalogue .product-card:first-child,
.product-grid--catalogue .product-card:not(:first-child) {
  min-height: 0;
  display: flex;
  grid-column: span 2;
  grid-template-columns: none;
  border: 1px solid var(--line);
}

.product-grid--catalogue[data-visible-count="1"] .product-card[data-visible-index="1"] {
  grid-column: 3 / span 2;
}

.product-grid--catalogue[data-visible-count="2"] .product-card[data-visible-index="1"],
.product-grid--catalogue[data-visible-count="5"] .product-card[data-visible-index="4"] {
  grid-column: 2 / span 2;
}

.product-grid--catalogue[data-visible-count="2"] .product-card[data-visible-index="2"],
.product-grid--catalogue[data-visible-count="5"] .product-card[data-visible-index="5"] {
  grid-column: 4 / span 2;
}

.product-grid--catalogue[data-visible-count="4"] .product-card[data-visible-index="1"],
.product-grid--catalogue[data-visible-count="4"] .product-card[data-visible-index="3"] {
  grid-column: 2 / span 2;
}

.product-grid--catalogue[data-visible-count="4"] .product-card[data-visible-index="2"],
.product-grid--catalogue[data-visible-count="4"] .product-card[data-visible-index="4"] {
  grid-column: 4 / span 2;
}

.product-grid--catalogue .product-card--original {
  border-top: 4px solid var(--teal-dark);
}

.product-grid--catalogue .product-card .product-studio,
.product-grid--catalogue .product-card:first-child .product-studio {
  min-height: 0;
  aspect-ratio: 1;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.product-grid--catalogue .product-card:first-child .product-card__body,
.product-grid--catalogue .product-card .product-card__body {
  justify-content: flex-start;
  padding: 22px;
}

.product-grid--catalogue .product-card:first-child .product-card__meta,
.product-grid--catalogue .product-card:first-child h3,
.product-grid--catalogue .product-card:first-child .product-card__cue,
.product-grid--catalogue .product-card:first-child .product-card__footer,
.product-grid--catalogue .product-card:first-child .card-detail-link {
  order: initial !important;
}

.product-grid--catalogue .product-card h3,
.product-grid--catalogue .product-card:first-child h3 {
  margin: 8px 0 12px;
  font-size: 22px;
}

.product-grid--catalogue .product-card__cue {
  display: inline-flex;
}

.comparison-benefit-row td {
  color: var(--teal-dark);
  font-weight: 900;
}

.product-grid--catalogue .product-card__footer,
.product-grid--catalogue .product-card:first-child .product-card__footer {
  margin-top: auto;
  padding-top: 16px;
}

.product-grid--catalogue .card-detail-link,
.product-grid--catalogue .product-card:first-child .card-detail-link {
  min-height: 40px;
  display: inline-flex;
  margin-top: 8px;
}

/* Product pages: concise purchase and information flow */

.listing-badge {
  width: fit-content;
  margin: -5px 0 14px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pdp-offers__grid button.is-selected {
  border: 2px solid var(--teal-dark);
  background: #f2fbfa;
  box-shadow: inset 0 0 0 1px rgba(0, 136, 137, .12);
}

.pdp-offers__selection {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 16px;
  margin-top: 8px;
  padding: 9px 12px;
  background: var(--charcoal-deep);
  color: var(--white);
}

.pdp-offers__selection span {
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.pdp-offers__selection strong {
  grid-row: span 2;
  font-size: 21px;
}

.pdp-offers__selection small {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

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

.product-studio--pdp-staged {
  background: var(--charcoal-deep);
}

.product-studio--pdp-staged::before,
.product-studio--pdp-staged::after {
  display: none;
}

.product-studio--pdp-staged > img,
.product-studio--pdp-staged.product-studio--manmax > img {
  object-fit: cover;
  filter: none;
  transform: none;
}

.order-confidence {
  padding: 0 0 34px;
  background: var(--paper);
}

.order-confidence__compact {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  border: 1px solid #cfd1ce;
  border-top: 4px solid var(--teal-dark);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(29, 32, 33, .10);
}

.order-confidence__compact article {
  position: relative;
  min-width: 0;
  min-height: 100px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
}

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

.order-confidence__compact .confidence-brand-plate {
  min-height: 54px;
  padding: 7px;
  box-shadow: inset 0 0 0 3px var(--white), 0 5px 13px rgba(29, 32, 33, .06);
}

.order-confidence__compact .confidence-brand-plate--auspost img {
  width: 88px;
}

.order-confidence__compact .confidence-brand-plate--privacy {
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 6px;
}

.order-confidence__compact .confidence-brand-plate--privacy img {
  width: 29px;
}

.order-confidence__compact .confidence-service-wordmark strong {
  font-size: 10px;
}

.order-confidence__compact .confidence-service-wordmark b {
  font-size: 7px;
}

.order-confidence__compact .confidence-service-wordmark small {
  margin-bottom: 2px;
  font-size: 6px;
}

.order-confidence__compact article > p {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.25;
}

.order-confidence__compact article > p strong {
  font-size: 13px;
  font-weight: 900;
}

.order-confidence__compact article > p span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.order-confidence__compact .confidence-payment {
  grid-template-columns: minmax(0, 1.4fr) minmax(105px, .6fr);
  gap: 12px;
}

.order-confidence__compact .payment-marks {
  min-height: 54px;
  justify-content: center;
  padding: 7px;
}

.order-confidence__compact .payment-mark {
  width: 33px;
  height: 24px;
}

.order-confidence__compact .payment-mark--paypal {
  width: 65px;
}

.product-information {
  padding-block: 58px;
}

.product-information__scan {
  max-width: 980px;
}

.product-information__compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 22px;
}

.product-information__compact h2 {
  margin: 6px 0 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.product-information__compact > p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-information__scan .product-accordions {
  padding: 0;
  box-shadow: none;
}

.product-information__scan .accordion > button {
  min-height: 66px;
  padding: 14px 20px;
}

.product-information__scan .accordion > button > span {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
}

.product-information__scan .accordion > button small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.product-information__scan .accordion__panel {
  padding: 0 20px 22px;
}

.alternatives-section .section-heading {
  margin-bottom: 28px;
}

.alternative-card > span {
  padding-left: 8px;
  border-left: 3px solid var(--teal);
  color: var(--ink);
}

@media (max-width: 1050px) {
  .shop-format-choices {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .filter-scroll .shop-format-choice {
    min-height: 88px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
  }

  .shop-format-choice__visual {
    width: 58px;
    height: 58px;
  }

  .shop-format-choice strong {
    font-size: 11px;
  }

  .shop-format-choice small {
    font-size: 9.5px;
  }

  .product-grid--catalogue {
    grid-template-columns: repeat(2, minmax(0, 380px));
    justify-content: center;
  }

  .product-grid--catalogue .product-card,
  .product-grid--catalogue[data-active-filter] .product-card {
    width: 100%;
    max-width: 380px;
    grid-column: auto !important;
    justify-self: center;
  }

  .product-grid--catalogue[data-visible-count="1"] {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
  }

  .product-grid--catalogue[data-visible-count="3"] .product-card[data-visible-index="3"],
  .product-grid--catalogue[data-visible-count="5"] .product-card[data-visible-index="5"] {
    width: calc((100% - 22px) / 2);
    max-width: 380px;
    grid-column: 1 / -1 !important;
    justify-self: center;
  }

  .order-confidence__compact {
    grid-template-columns: 1fr 1fr;
  }

  .order-confidence__compact .confidence-payment {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (min-width: 1211px) {
  .product-grid--catalogue[data-active-filter="all"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid--catalogue[data-active-filter="all"] .product-card[data-visible-index] {
    grid-column: auto !important;
  }
}

@media (min-width: 961px) and (max-width: 1210px) {
  .product-grid--catalogue[data-active-filter="all"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid--catalogue[data-active-filter="all"] .product-card[data-visible-index] {
    grid-column: auto !important;
  }

  .product-grid--catalogue[data-active-filter="all"] .product-card[data-visible-index="4"] {
    grid-column: 2 !important;
  }
}

@media (max-width: 1100px) {
  .full-comparison .mobile-scroll-hint {
    display: block;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .catalogue-toolbar {
    position: relative;
  }

  .catalogue-toolbar::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 30px;
    width: 46px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white));
    content: "";
    pointer-events: none;
  }

  .shop-format-choices {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 46px 12px 0;
    scroll-snap-type: x mandatory;
  }

  .filter-scroll .shop-format-choice {
    min-width: 224px;
    min-height: 82px;
    flex: 0 0 224px;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 11px;
    padding: 8px 11px 8px 8px;
    scroll-snap-align: start;
  }

  .shop-format-choice__visual {
    width: 60px;
    height: 60px;
  }

  .rail-hint {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -7px 0 0;
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .rail-hint span {
    font-size: 15px;
  }

  .product-grid--catalogue,
  .product-grid--catalogue[data-visible-count] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .product-grid--catalogue .product-card,
  .product-grid--catalogue .product-card:first-child,
  .product-grid--catalogue .product-card:not(:first-child),
  .product-grid--catalogue[data-active-filter] .product-card,
  .product-grid--catalogue[data-visible-count] .product-card[data-visible-index] {
    width: auto;
    max-width: none;
    min-height: 252px;
    display: grid;
    grid-column: auto !important;
    grid-template-columns: clamp(154px, 22vw, 180px) minmax(0, 1fr);
    justify-self: stretch;
  }

  .product-grid--catalogue .product-card .product-studio,
  .product-grid--catalogue .product-card:first-child .product-studio {
    min-height: 250px;
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-grid--catalogue .product-card .product-studio > img,
  .product-grid--catalogue .product-card:first-child .product-studio > img {
    transform: scale(1.14);
  }

  .product-grid--catalogue .product-card:first-child .product-card__body,
  .product-grid--catalogue .product-card .product-card__body {
    justify-content: center;
    padding: 20px 24px;
  }
}

@media (max-width: 720px) {
  .home-hero__layout {
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    order: 1;
    padding: 34px 0 30px;
  }

  .hero-photo {
    order: 2;
    height: 275px;
  }

  .hero-photo figcaption {
    padding: 12px 16px;
  }

  .hero-product-summary {
    grid-template-columns: 1fr auto;
    margin-top: 22px;
  }

  .hero-product-summary > * {
    min-height: 68px;
    padding: 10px 12px 10px 0;
  }

  .hero-product-summary > div {
    min-width: 112px;
    padding-left: 14px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .hero-actions {
    margin-top: 20px;
  }

  .service-grid article,
  .service-grid article:nth-child(3),
  .service-grid article:nth-child(4) {
    min-height: 76px;
    padding-block: 13px;
  }

  .service-grid p {
    display: none;
  }

  .format-guide {
    width: calc(100% + 14px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 14px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .format-guide::-webkit-scrollbar {
    display: none;
  }

  .format-guide__card {
    min-width: min(78vw, 300px);
    flex: 0 0 min(78vw, 300px);
    grid-template-rows: 150px 1fr auto;
    scroll-snap-align: start;
  }

  .format-guide__card > div:nth-child(2) {
    padding: 18px 18px 12px;
  }

  .format-guide__card h3 {
    font-size: 21px;
  }

  .format-guide__card > strong {
    padding: 13px 18px;
  }

  .full-comparison {
    margin-top: 16px;
  }

  .full-comparison__heading {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .shop-intro {
    padding: 26px 0 20px;
  }

  .shop-intro__layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shop-intro h1 {
    font-size: 41px;
  }

  .shop-intro__layout > p {
    font-size: 14px;
    line-height: 1.5;
  }

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

  .catalogue-toolbar::after {
    top: 0;
    bottom: 0;
    width: 42px;
  }

  .shop-format-choices {
    width: calc(100% + 14px);
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 0 26px 12px 0;
    scroll-snap-type: x mandatory;
  }

  .rail-hint {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -7px 0 0;
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .rail-hint span {
    font-size: 15px;
  }

  .filter-scroll .shop-format-choice {
    min-width: 214px;
    min-height: 82px;
    flex: 0 0 214px;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 11px;
    padding: 8px 11px 8px 8px;
    scroll-snap-align: start;
  }

  .shop-format-choice__visual {
    width: 60px;
    height: 60px;
  }

  .catalogue-heading {
    margin: 17px 0 14px;
  }

  .catalogue-heading h2 {
    font-size: 27px;
  }

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

  .product-grid--catalogue[data-visible-count] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .product-grid--catalogue .product-card,
  .product-grid--catalogue[data-active-filter] .product-card,
  .product-grid--catalogue[data-visible-count] .product-card[data-visible-index] {
    width: auto;
    max-width: none;
    grid-column: auto !important;
    justify-self: stretch;
  }

  .product-grid--catalogue .product-card,
  .product-grid--catalogue .product-card:first-child,
  .product-grid--catalogue .product-card:not(:first-child) {
    min-height: 220px;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .product-grid--catalogue .product-card .product-studio,
  .product-grid--catalogue .product-card:first-child .product-studio {
    min-height: 218px;
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-grid--catalogue .product-card .product-studio > img,
  .product-grid--catalogue .product-card:first-child .product-studio > img {
    transform: scale(1.2);
  }

  .product-grid--catalogue .product-card:first-child .product-card__body,
  .product-grid--catalogue .product-card .product-card__body {
    justify-content: center;
    padding: 13px;
  }

  .product-grid--catalogue .product-card h3,
  .product-grid--catalogue .product-card:first-child h3 {
    margin: 5px 0 8px;
    font-size: 17px;
  }

  .product-grid--catalogue .product-card .product-card__body > .product-card__cue {
    display: inline-flex;
    margin-bottom: 8px !important;
    padding: 4px 6px;
    font-size: 9px !important;
  }

  .product-grid--catalogue .product-card__chips {
    gap: 4px;
    margin-bottom: 7px;
  }

  .product-grid--catalogue .product-card__chips span {
    padding: 3px 5px;
    font-size: 8px;
  }

  .product-grid--catalogue .product-card__footer,
  .product-grid--catalogue .product-card:first-child .product-card__footer {
    gap: 6px;
    margin-top: 0;
    padding-top: 8px;
  }

  .product-grid--catalogue .product-card__footer > strong {
    font-size: 18px;
  }

  .product-grid--catalogue .product-card__footer > button {
    min-height: 44px;
    padding-inline: 9px;
  }

  .product-grid--catalogue .card-detail-link,
  .product-grid--catalogue .product-card:first-child .card-detail-link {
    min-height: 32px;
    display: inline-flex;
    margin-top: 2px;
    font-size: 11px;
  }

  .mobile-inline-buy {
    display: none;
  }

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

  .product-facts div {
    padding: 10px 9px;
  }

  .product-facts div:nth-child(3) {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

.product-facts dd {
    font-size: 11px;
    line-height: 1.3;
  }

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

  .pdp-offers__grid button {
    min-height: 78px;
    display: flex;
    align-items: flex-start;
    padding: 9px 8px;
  }

  .pdp-offers__grid button strong {
    font-size: 12px;
  }

  .pdp-offers__grid button span,
  .pdp-offers__grid button small {
    font-size: 9px;
  }

  .pdp-offers__selection {
    padding-block: 8px;
  }

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

  .order-confidence {
    padding-bottom: 28px;
    background: var(--paper);
  }

  .order-confidence__compact {
    grid-template-columns: 1fr 1fr;
  }

  .order-confidence__compact article {
    min-height: 82px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

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

  .order-confidence__compact .confidence-brand-plate {
    min-height: 46px;
    padding: 5px;
  }

  .order-confidence__compact .confidence-brand-plate--auspost img {
    width: 65px;
  }

  .order-confidence__compact .confidence-brand-plate--privacy {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 4px;
  }

  .order-confidence__compact .confidence-brand-plate--privacy img {
    width: 23px;
  }

  .order-confidence__compact .confidence-service-wordmark strong {
    font-size: 8px;
  }

  .order-confidence__compact .confidence-service-wordmark b,
  .order-confidence__compact .confidence-service-wordmark small {
    font-size: 5px;
  }

  .order-confidence__compact article > p strong {
    font-size: 11px;
  }

  .order-confidence__compact article > p span {
    font-size: 9px;
  }

  .order-confidence__compact .confidence-payment {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.35fr) minmax(100px, .65fr);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .order-confidence__compact .payment-marks {
    min-height: 46px;
    gap: 4px;
    padding: 5px;
  }

  .order-confidence__compact .payment-mark {
    width: 29px;
    height: 20px;
  }

  .order-confidence__compact .payment-mark--paypal {
    width: 58px;
  }

  .product-information {
    padding-block: 48px;
  }

  .product-information__compact {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 17px;
  }

  .product-information__compact h2 {
    font-size: 32px;
  }

  .product-information__compact > p {
    font-size: 12px;
  }

  .product-review-band {
    padding-block: 22px;
  }

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

  .product-review-band__layout > div {
    display: block;
  }

  .product-review-band__layout > div > span,
  .product-review-band__layout > div > strong {
    display: block;
  }

  .product-review-band__layout > div > p {
    display: none;
  }

  .product-review-band blockquote {
    padding: 7px 0 7px 14px;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
    font-size: 15px;
  }

  .product-review-band a {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .product-information__scan .product-accordions {
    padding: 0;
  }

  .product-information__scan .accordion > button {
    min-height: 62px;
    padding: 11px 14px;
  }

  .product-information__scan .accordion > button > span {
    grid-template-columns: 105px 1fr;
    gap: 10px;
  }

  .product-information__scan .accordion > button strong {
    font-size: 14px;
  }

  .product-information__scan .accordion > button small {
    font-size: 10px;
    line-height: 1.3;
  }

  .product-information__scan .accordion__panel {
    padding: 0 14px 18px;
  }

  .alternative-grid {
    width: calc(100% + 14px);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 14px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .alternative-grid::-webkit-scrollbar {
    display: none;
  }

  .alternative-card {
    min-width: min(72vw, 270px);
    flex: 0 0 min(72vw, 270px);
    scroll-snap-align: start;
  }

  .footer-grid {
    gap-block: 22px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Long-form guide refinement */

.content-hero--article .content-hero__copy h1,
.article-overview h2,
.article-comparison h2,
.article-section h2,
.article-faqs h2,
.article-related h2,
.article-sources h2,
.guide-row__content strong,
.guides-library__group > h2 {
  font-family: "Barlow Semi Condensed", "Arial Narrow", "Lato", sans-serif;
}

.article-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-byline span + span {
  position: relative;
}

.article-byline span + span::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 4px;
  height: 4px;
  background: var(--teal);
  transform: translateY(-50%);
  content: "";
}

.article-overview {
  position: relative;
  padding: 43px 46px 48px;
  border: 0;
  background:
    linear-gradient(132deg, rgba(0, 128, 128, .09), transparent 44%),
    var(--paper-deep);
}

.article-overview::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
  content: "";
}

.article-overview__lede {
  max-width: 66ch;
}

.article-comparison,
.article-section,
.article-faqs,
.article-related,
.article-sources {
  scroll-margin-top: 104px;
}

.article-section__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.article-section__link span {
  transition: transform .2s ease;
}

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

.article-faqs,
.article-related {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.article-faqs > header,
.article-related > header {
  margin-bottom: 30px;
}

.article-faqs h2,
.article-related h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
}

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

.article-faqs__grid article {
  min-height: 190px;
  padding: 27px 28px 29px;
  border: 1px solid #d1d3d0;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(27, 31, 32, .055);
}

.article-faqs__grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

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

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

.article-related__grid > a {
  min-height: 155px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 26px;
  border-top: 4px solid var(--teal);
  background: var(--charcoal-deep);
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-related__grid > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(25, 29, 30, .16);
}

.article-related__grid small {
  color: #71d7d8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-related__grid strong {
  max-width: 28ch;
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.28;
}

.article-related__grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
  line-height: 1.5;
}

.article-related__grid span {
  margin-top: auto;
  padding-top: 19px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
}

.guides-library__group + .guides-library__group {
  margin-top: 70px;
}

.guides-library__group > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.guides-library__group > header h2 {
  max-width: 760px;
  margin: 7px 0 0;
  font-size: clamp(31px, 3.2vw, 45px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
}

.guides-library__group > header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guides-library__group .guides-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.guides-library__group .guide-row {
  min-height: 238px;
  grid-template-columns: 50px minmax(0, 1fr) 28px;
  gap: 20px;
  padding: 30px 25px;
  border: 0;
  background: var(--white);
}

.guides-library__group .guide-row:hover {
  padding-left: 32px;
  background: var(--paper-deep);
}

.guides-library__group .guide-row__content strong {
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.guides-library__group .guide-row__content p {
  margin-top: 12px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .guides-library__group .guides-list {
    grid-template-columns: 1fr;
  }

  .guides-library__group .guide-row {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .article-byline {
    margin-top: 19px;
  }

  .article-overview {
    padding: 31px 24px 36px 28px;
  }

  .article-faqs,
  .article-related {
    padding: 52px 0;
  }

  .article-faqs h2,
  .article-related h2 {
    font-size: 37px;
  }

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

  .article-faqs__grid article {
    min-height: 0;
    padding: 23px 22px 25px;
  }

  .guides-library__group + .guides-library__group {
    margin-top: 54px;
  }

  .guides-library__group > header {
    display: block;
  }

  .guides-library__group > header span {
    display: block;
    margin-top: 12px;
  }

  .guides-library__group .guide-row {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 24px 18px;
  }

  .guides-library__group .guide-row:hover {
    padding-left: 18px;
  }

  .guides-library__group .guide-row__content strong {
    font-size: 27px;
  }
}

/* Real discreet-parcel photography */

.order-confidence__compact .confidence-privacy {
  grid-template-columns: 112px minmax(0, 1fr);
}

.order-confidence__compact .confidence-brand-plate--privacy {
  min-height: 64px;
  display: block;
  padding: 0;
  overflow: hidden;
}

.order-confidence__compact .confidence-brand-plate--privacy .confidence-parcel-photo {
  width: 100%;
  height: 64px;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
}

@media (max-width: 720px) {
  .order-confidence__compact .confidence-privacy {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .order-confidence__compact .confidence-brand-plate--privacy {
    min-height: 46px;
  }

  .order-confidence__compact .confidence-brand-plate--privacy .confidence-parcel-photo {
    height: 46px;
  }
}

/* Compact, clearly grouped payment marks */

.order-confidence__compact .confidence-payment {
  grid-template-columns: 198px minmax(105px, 1fr);
}

.order-confidence__compact .payment-marks {
  width: 198px;
  min-width: 0;
  justify-content: flex-start;
  gap: 0;
  padding-inline: 12px;
}

.order-confidence__compact .payment-mark--paypal {
  width: 48px;
  height: auto;
  flex: 0 0 auto;
}

.order-confidence__compact .confidence-payment .payment-card-marks {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #d2d5d2;
}

.order-confidence__compact .confidence-payment .payment-card-marks .payment-mark {
  width: 29px;
  height: 20px;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .order-confidence__compact .confidence-payment {
    grid-template-columns: 180px minmax(100px, 1fr);
  }

  .order-confidence__compact .payment-marks {
    width: 180px;
    padding-inline: 9px;
  }

  .order-confidence__compact .payment-mark--paypal {
    width: 43px;
  }

  .order-confidence__compact .confidence-payment .payment-card-marks {
    gap: 5px;
    margin-left: 8px;
    padding-left: 8px;
  }

  .order-confidence__compact .confidence-payment .payment-card-marks .payment-mark {
    width: 27px;
    height: 18px;
  }
}

/* Optically aligned payment marks */

.order-confidence__compact .payment-mark--paypal {
  width: 19px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.order-confidence__compact .confidence-payment .payment-card-marks {
  height: 22px;
}

.order-confidence__compact .confidence-payment .payment-card-marks .payment-mark {
  width: 33px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* Homepage performance hero and editorial review proof */

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 74% 33%, rgba(0, 136, 137, .24), transparent 26%),
    linear-gradient(132deg, #444849 0%, #292c2d 54%, #17191a 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  clip-path: polygon(0 0, 56% 0, 49% 100%, 0 100%);
  background: var(--paper);
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr);
  align-items: stretch;
  gap: 0;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 660px;
  padding: 86px 72px 92px 0;
}

.home-hero__copy h1 {
  max-width: 650px;
  margin: 16px 0 25px;
  font-size: clamp(62px, 5.85vw, 88px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .88;
}

.home-hero__copy h1 .hero-heading__line {
  display: block;
  color: var(--ink);
}

.home-hero__copy h1 .hero-heading__line--accent {
  margin-top: .14em;
  color: var(--teal-dark);
}

.home-hero .hero-lead {
  max-width: 545px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-rating {
  width: fit-content;
  min-height: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-rating:hover > span:last-child {
  color: var(--teal-dark);
}

.hero-rating__stars {
  color: var(--star);
  font-size: 17px;
  letter-spacing: .045em;
}

.hero-rating strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.home-hero .hero-actions {
  gap: 22px;
  margin-top: 24px;
}

.hero-purchase {
  min-width: 220px;
  justify-content: space-between;
  gap: 22px;
  padding-inline: 22px;
  box-shadow: 0 12px 28px rgba(64, 131, 16, .18);
}

.hero-purchase strong {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  letter-spacing: .02em;
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-availability > span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(64, 131, 16, .12);
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 710px;
  display: grid;
  place-items: center;
  margin: 0;
}

.hero-stage::before {
  content: "MANMAX";
  position: absolute;
  right: -3%;
  bottom: 5%;
  color: rgba(255, 255, 255, .038);
  font-size: clamp(112px, 10vw, 166px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  white-space: nowrap;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 74px;
  width: 78%;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .56);
  filter: blur(20px);
  transform: rotate(-2deg);
}

.hero-stage__number {
  position: absolute;
  z-index: 0;
  top: 75px;
  right: 5px;
  display: flex;
  align-items: flex-end;
  color: rgba(255, 255, 255, .09);
  font-size: 146px;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .75;
}

.hero-stage__number small {
  margin: 0 0 4px 12px;
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.hero-stage img {
  position: relative;
  z-index: 1;
  width: min(46vw, 590px);
  max-height: 660px;
  object-fit: contain;
  filter: drop-shadow(25px 32px 30px rgba(0, 0, 0, .42));
  transform: translate(4%, 1%) rotate(-1.4deg) scale(1.06);
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .6s ease;
}

.home-hero:hover .hero-stage img {
  filter: drop-shadow(29px 38px 34px rgba(0, 0, 0, .48));
  transform: translate(4%, -1%) rotate(-.6deg) scale(1.075);
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 76px;
  padding: clamp(64px, 5.2vw, 82px) 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .46), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(0, 136, 137, .16), transparent 30%),
    linear-gradient(118deg, #b7c2be 0%, #d1d6d2 51%, #b3c4c0 100%);
  color: var(--ink);
}

.reviews-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30% 5% -30% auto;
  width: 31%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .24) 35%, rgba(0, 136, 137, .11) 72%, transparent);
  transform: skewX(-11deg);
  pointer-events: none;
}

.reviews-proof {
  position: relative;
  z-index: 1;
}

.reviews-proof__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-bottom: clamp(32px, 3.4vw, 46px);
}

.reviews-proof__link {
  position: absolute;
  top: 5px;
  right: 0;
}

.reviews-section .eyebrow {
  color: #075f61;
}

.reviews-section .text-link {
  color: #24302f;
}

.reviews-proof__intro h2 {
  max-width: 670px;
  margin: 10px 0 0;
  font-size: clamp(35px, 3.8vw, 57px);
  letter-spacing: -.045em;
  line-height: .98;
}

.reviews-score-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 250px;
  padding: 18px 34px 18px 23px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 206, 205, .15), transparent 48%),
    linear-gradient(125deg, #355553, #2b4342);
  color: var(--white);
}

.reviews-score-inline > strong {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .82;
}

.reviews-score-inline > strong small {
  margin-left: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  letter-spacing: 0;
}

.reviews-score-inline > span {
  display: grid;
  gap: 4px;
}

.reviews-score-inline i {
  color: #f0b300;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 2px;
  white-space: nowrap;
}

.reviews-score-inline span small {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  white-space: nowrap;
}

.reviews-carousel {
  min-width: 0;
}

.reviews-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  margin-bottom: 18px;
}

.reviews-carousel__header p,
.reviews-carousel__header span {
  margin: 0;
  color: #344341;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reviews-carousel__header span {
  color: #53615f;
  letter-spacing: .08em;
}

.reviews-carousel__toolbar,
.reviews-carousel__controls {
  display: flex;
  align-items: center;
}

.reviews-carousel__toolbar {
  gap: 18px;
}

.reviews-carousel__toolbar > [data-review-count] {
  white-space: nowrap;
}

.reviews-carousel__controls {
  gap: 8px;
}

.reviews-carousel__controls[hidden] {
  display: none;
}

.reviews-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  padding: 8px 2px 24px;
  scrollbar-width: none;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 clamp(350px, 29vw, 390px);
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 28px clamp(26px, 2.6vw, 34px) 27px;
  border: 1px solid rgba(34, 52, 50, .1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(249, 248, 244, .96));
  box-shadow:
    0 18px 42px rgba(28, 44, 42, .1),
    0 2px 8px rgba(28, 44, 42, .045),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.review-slide--feature {
  flex-basis: clamp(450px, 35vw, 480px);
  padding-inline: clamp(28px, 2.7vw, 36px);
}

.review-slide.is-active {
  border-color: rgba(0, 115, 116, .4);
  box-shadow:
    0 22px 50px rgba(25, 54, 51, .14),
    0 2px 8px rgba(28, 44, 42, .05),
    inset 0 3px 0 rgba(0, 128, 128, .88);
}

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

.review-slide__stars {
  color: #c58e00;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-slide__sentiment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075f61;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-slide__sentiment::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b8c2c;
  box-shadow: 0 0 0 4px rgba(75, 140, 44, .12);
  content: "";
}

.review-slide__meta time {
  color: #596663;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-slide h3 {
  max-width: 17ch;
  margin: 22px 0 13px;
  color: #202827;
  font-size: clamp(27px, 2.25vw, 35px);
  letter-spacing: -.035em;
  line-height: 1.02;
}

.review-slide > p {
  max-width: 48ch;
  margin: 0;
  color: #34413f;
  font-size: 16px;
  line-height: 1.58;
}

.review-slide > .review-slide__quote--untitled {
  margin-top: 23px;
  color: #263230;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.52;
}

.review-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: auto;
  padding-top: 25px;
}

.review-author strong {
  color: #24302f;
  font-size: 15px;
}

.review-author strong small {
  color: #687370;
  font-size: 12px;
  font-weight: 400;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c5b59;
  font-size: 12px;
}

.review-verified i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: #4b8c2c;
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.reviews-carousel__controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(36, 48, 47, .2);
  border-radius: 13px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 20px rgba(28, 44, 42, .07);
  color: #25302f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.reviews-carousel__controls button:hover:not(:disabled) {
  border-color: var(--teal-dark);
  background: rgba(255, 255, 255, .96);
  transform: translateY(-2px);
}

.reviews-carousel__controls button:disabled {
  opacity: .34;
  cursor: default;
}

.reviews-carousel__progress {
  height: 2px;
  margin-top: 6px;
  overflow: hidden;
  background: rgba(34, 52, 50, .2);
}

.reviews-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal-dark);
  transform: scaleX(.125);
  transform-origin: left center;
  transition: transform .24s ease;
}

.reviews-section--marketplace {
  padding-block: clamp(70px, 6vw, 94px);
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 255, 255, .65), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(0, 136, 137, .1), transparent 30%),
    linear-gradient(122deg, #c4ceca 0%, #e0e3df 52%, #bdcbc7 100%);
}

.reviews-section--marketplace .reviews-proof__top--single {
  max-width: 920px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 32px;
}

.reviews-section--marketplace .review-slide {
  flex-basis: clamp(370px, 31vw, 440px);
}

.reviews-section--marketplace .review-slide--feature {
  flex-basis: clamp(440px, 36vw, 500px);
}

.reviews-section--marketplace .reviews-proof__link {
  position: static;
  width: fit-content;
  margin-top: 26px;
}

@media (max-width: 1210px) {
  .home-hero__layout {
    grid-template-columns: minmax(0, .98fr) minmax(460px, 1.02fr);
  }

  .home-hero__copy {
    padding-right: 50px;
  }

  .hero-stage img {
    width: min(48vw, 550px);
  }
}

@media (max-width: 960px) {
  .home-hero::before {
    clip-path: polygon(0 0, 59% 0, 50% 100%, 0 100%);
  }

  .home-hero__layout {
    min-height: 650px;
    grid-template-columns: minmax(0, .96fr) minmax(390px, 1.04fr);
  }

  .home-hero__copy {
    padding: 66px 46px 70px 0;
  }

  .hero-stage {
    min-height: 650px;
  }

  .hero-stage img {
    width: min(49vw, 500px);
  }

  .review-slide {
    flex-basis: clamp(340px, 48vw, 410px);
  }

  .review-slide--feature {
    flex-basis: clamp(430px, 62vw, 500px);
  }
}

@media (max-width: 720px) {
  .home-hero {
    overflow: hidden;
    background: var(--paper);
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero__layout {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    order: 0;
    max-width: none;
    padding: 36px 0 30px;
  }

  .home-hero__copy h1 {
    margin: 12px 0 18px;
    font-size: clamp(44px, 13vw, 56px);
    line-height: .91;
  }

  .home-hero__copy h1 .hero-heading__line--accent {
    margin-top: .11em;
  }

  .home-hero .hero-lead {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-rating {
    margin-top: 16px;
  }

  .home-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
  }

  .home-hero .hero-actions .button,
  .home-hero .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-purchase {
    min-height: 54px;
  }

  .hero-availability {
    justify-content: center;
    margin-top: 13px;
    font-size: 10px;
  }

  .hero-stage {
    order: 1;
    width: 100vw;
    min-height: 350px;
    margin-left: calc(50% - 50vw);
    padding-top: 24px;
    overflow: hidden;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    background:
      radial-gradient(circle at 52% 38%, rgba(0, 136, 137, .3), transparent 34%),
      linear-gradient(134deg, #404445 0%, #242728 58%, #161819 100%);
  }

  .hero-stage::before {
    right: -12%;
    bottom: 2%;
    font-size: 100px;
  }

  .hero-stage::after {
    right: 13%;
    bottom: 35px;
    width: 74%;
  }

  .hero-stage__number {
    top: 62px;
    right: 7%;
    font-size: 96px;
  }

  .hero-stage img {
    width: min(94vw, 390px);
    max-height: 350px;
    transform: translate(1%, 2%) rotate(-1deg) scale(1.04);
  }

  .home-hero:hover .hero-stage img {
    transform: translate(1%, 2%) rotate(-1deg) scale(1.04);
  }

  .reviews-section {
    padding: 54px 0 62px;
    background:
      radial-gradient(circle at 88% 24%, rgba(255, 255, 255, .3), transparent 32%),
      linear-gradient(145deg, #bdc7c3 0%, #d3d8d4 54%, #b4c6c1 100%);
  }

  .reviews-proof__top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 31px;
  }

  .reviews-proof__intro h2 {
    max-width: 360px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .reviews-score-inline {
    width: fit-content;
    min-width: 220px;
    padding: 15px 30px 15px 18px;
  }

  .reviews-score-inline > strong {
    font-size: 38px;
  }

  .reviews-carousel__header {
    align-items: center;
    margin-bottom: 16px;
  }

  .reviews-carousel__header > p {
    max-width: 126px;
    line-height: 1.35;
  }

  .reviews-carousel__toolbar {
    gap: 11px;
  }

  .reviews-carousel__controls {
    gap: 6px;
  }

  .reviews-carousel__controls button {
    width: 44px;
    height: 44px;
  }

  .review-slide,
  .review-slide--feature {
    flex-basis: calc(100% - 30px);
    padding: 24px 22px 23px;
    border: 1px solid rgba(34, 52, 50, .1);
    border-radius: 15px;
  }

  .reviews-section--marketplace .review-slide,
  .reviews-section--marketplace .review-slide--feature {
    flex-basis: calc(100% - 24px);
  }

  .reviews-section--marketplace .reviews-proof__top--single {
    margin-bottom: 26px;
  }

  .review-slide + .review-slide {
    padding-left: 22px;
  }

  .review-slide h3 {
    margin-top: 18px;
    font-size: 27px;
  }

  .review-slide > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .review-author {
    gap: 8px 14px;
    margin-top: auto;
    padding-top: 22px;
  }

  .reviews-carousel__progress {
    margin-top: 2px;
  }

  .reviews-proof__link {
    position: static;
    width: fit-content;
    margin-top: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage img,
  .home-hero:hover .hero-stage img {
    transition: none;
    transform: translate(4%, 1%) rotate(-1.4deg) scale(1.06);
  }

  .review-slide,
  .reviews-carousel__progress span,
  .reviews-carousel__controls button {
    transition: none;
  }
}

/* Product dossier */
.product-information {
  position: relative;
  scroll-margin-top: 96px;
  padding: 92px 0 112px;
  overflow: clip;
  background:
    linear-gradient(116deg, rgba(0, 136, 137, .045) 0, rgba(0, 136, 137, 0) 34%),
    var(--paper-deep);
}

.product-information::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(31vw, 470px);
  height: 5px;
  background: var(--teal);
  content: "";
}

.product-information__scan.product-information__layout {
  max-width: var(--shell);
  display: grid;
  grid-template-columns: minmax(260px, .54fr) minmax(0, 1.46fr);
  align-items: start;
  gap: clamp(56px, 7vw, 100px);
}

.product-information .product-information__intro {
  position: sticky;
  top: 116px;
}

.product-information .product-information__intro h2 {
  max-width: 390px;
  margin: 10px 0 0;
  font-size: clamp(43px, 4.2vw, 60px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.product-information .product-information__intro > p:last-child {
  max-width: 36ch;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid rgba(0, 136, 137, .36);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.product-dossier {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.product-disclosure {
  scroll-margin-top: 104px;
  border-bottom: 1px solid var(--line);
  transition: background-color .18s ease, box-shadow .18s ease;
}

.product-disclosure[open] {
  background: rgba(255, 255, 255, .66);
  box-shadow: inset 4px 0 0 var(--teal);
}

.product-disclosure summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 18px;
  padding: 19px 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.product-disclosure summary::-webkit-details-marker {
  display: none;
}

.product-disclosure summary::marker {
  content: "";
}

.product-disclosure summary:focus-visible {
  outline: 3px solid #28b9bb;
  outline-offset: -3px;
}

.product-disclosure__number {
  align-self: start;
  padding-top: 6px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.product-disclosure__heading strong,
.product-disclosure__heading small {
  display: block;
}

.product-disclosure__heading strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.product-disclosure__heading small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.product-disclosure__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid #b9bfbd;
  border-radius: 50%;
  background: rgba(255, 255, 255, .56);
}

.product-disclosure__toggle::before,
.product-disclosure__toggle::after {
  position: absolute;
  top: 17px;
  left: 11px;
  width: 14px;
  height: 2px;
  background: var(--teal-dark);
  content: "";
  transition: transform .18s ease;
}

.product-disclosure__toggle::after {
  transform: rotate(90deg);
}

.product-disclosure[open] .product-disclosure__toggle {
  border-color: var(--teal);
  background: var(--teal);
}

.product-disclosure[open] .product-disclosure__toggle::before,
.product-disclosure[open] .product-disclosure__toggle::after {
  background: var(--white);
}

.product-disclosure[open] .product-disclosure__toggle::after {
  transform: rotate(0);
}

.product-disclosure__body {
  max-width: 790px;
  padding: 0 70px 42px 84px;
  color: var(--muted);
}

.product-disclosure__body--wide {
  max-width: none;
}

.product-disclosure__body p {
  margin: 0;
  max-width: 65ch;
  font-size: 16.5px;
  line-height: 1.72;
}

.product-disclosure__body .product-disclosure__support-note {
  max-width: 67ch;
  margin-top: 20px;
  padding: 15px 18px;
  border-left: 3px solid rgba(0, 136, 137, .34);
  background: rgba(0, 136, 137, .055);
  color: #5f6666;
  font-size: 14px;
  line-height: 1.65;
}

.product-disclosure__body .product-disclosure__lede {
  max-width: 62ch;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.product-disclosure__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-disclosure__points li {
  position: relative;
  padding: 14px 0 0 18px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.product-disclosure__points li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.product-disclosure .ingredient-intro {
  max-width: 70ch;
  margin-bottom: 28px;
  color: var(--ink);
}

.product-disclosure .ingredient-table-wrap {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  box-shadow: 0 12px 30px rgba(29, 32, 33, .06);
}

.product-disclosure .ingredient-other {
  max-width: none;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-disclosure .ingredient-other strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

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

.delivery-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.delivery-copy p {
  font-size: 15px;
  line-height: 1.68;
}

.delivery-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 0;
  background: var(--charcoal-deep);
  color: var(--white);
  list-style: none;
}

.delivery-highlights li {
  min-height: 86px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 18px 20px;
}

.delivery-highlights li + li {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.delivery-highlights strong,
.delivery-highlights span {
  display: block;
}

.delivery-highlights strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
}

.delivery-highlights span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .product-information__scan.product-information__layout {
    grid-template-columns: minmax(220px, .46fr) minmax(0, 1.54fr);
    gap: 42px;
  }

  .product-information .product-information__intro h2 {
    font-size: 42px;
  }

  .product-disclosure__body {
    padding-right: 34px;
  }

  .delivery-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .product-information {
    padding: 58px 0 calc(118px + env(safe-area-inset-bottom));
  }

  .product-information::before {
    width: 48vw;
    height: 4px;
  }

  .product-information__scan.product-information__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-information .product-information__intro {
    position: static;
  }

  .product-information .product-information__intro h2 {
    max-width: 330px;
    font-size: clamp(38px, 11.5vw, 46px);
  }

  .product-information .product-information__intro > p:last-child {
    max-width: none;
    margin-top: 20px;
    font-size: 15px;
  }

  .product-disclosure {
    scroll-margin-top: 82px;
  }

  .product-disclosure summary {
    min-height: 78px;
    grid-template-columns: 30px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 15px 12px;
  }

  .product-disclosure__number {
    padding-top: 4px;
    font-size: 10px;
  }

  .product-disclosure__heading strong {
    font-size: 17px;
  }

  .product-disclosure__heading small {
    margin-top: 4px;
    font-size: 11.5px;
  }

  .product-disclosure__toggle {
    width: 36px;
    height: 36px;
  }

  .product-disclosure__toggle::before,
  .product-disclosure__toggle::after {
    top: 16px;
    left: 10px;
  }

  .product-disclosure__body {
    max-width: none;
    padding: 0 12px 30px 52px;
  }

  .product-disclosure__body p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .product-disclosure__body .product-disclosure__support-note {
    margin-top: 17px;
    padding: 13px 14px;
    font-size: 13.5px;
  }

  .product-disclosure__body .product-disclosure__lede {
    font-size: 17px;
    line-height: 1.55;
  }

  .product-disclosure__points {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 22px;
  }

  .product-disclosure__points li {
    padding: 0 0 0 18px;
    border-top: 0;
    font-size: 12px;
  }

  .product-disclosure__points li::before {
    top: 5px;
  }

  .product-disclosure .ingredient-intro {
    margin-bottom: 20px;
  }

  .product-disclosure .ingredient-table {
    font-size: 12px;
  }

  .product-disclosure .ingredient-table th,
  .product-disclosure .ingredient-table td {
    padding: 10px 9px;
  }

  .product-disclosure .ingredient-table thead th:last-child,
  .product-disclosure .ingredient-table td:last-child {
    width: 94px;
  }

  .product-disclosure .ingredient-table small {
    font-size: 10px;
  }

  .delivery-copy {
    gap: 22px;
  }

  .delivery-highlights {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .delivery-highlights li {
    min-height: 70px;
    padding: 14px 17px;
  }

  .delivery-highlights li + li {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }
}

@media (max-width: 360px) {
  .product-disclosure__body {
    padding-left: 12px;
  }
}

/* Dedicated destinations and editorial guides */

.content-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.content-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 53%;
  background:
    linear-gradient(120deg, rgba(0, 136, 137, .2), transparent 31%),
    linear-gradient(140deg, #3c4041 0%, #242728 62%, #1b1d1e 100%);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.content-hero::before {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: 6%;
  width: 19%;
  height: 130%;
  background: rgba(255, 255, 255, .035);
  transform: skewX(-12deg);
  content: "";
}

.content-hero__layout {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: stretch;
}

.content-hero__copy {
  align-self: center;
  max-width: 690px;
  padding: 76px 64px 78px 0;
}

.content-hero__copy h1 {
  max-width: 720px;
  margin: 16px 0 25px;
  font-size: clamp(54px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
}

.content-hero__copy h1 span {
  color: var(--teal-dark);
}

.content-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.content-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 31px;
}

.content-hero__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.content-hero__number {
  position: absolute;
  top: 28px;
  right: 10px;
  color: rgba(255, 255, 255, .075);
  font-size: clamp(150px, 19vw, 286px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}

.content-hero__stage::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 11%;
  height: 11%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  filter: blur(26px);
  content: "";
}

.compare-hero-stage {
  isolation: isolate;
}

.compare-hero-stage::before {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -20px;
  left: 1%;
  height: 112px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 151, 150, .55) 30%, rgba(255, 255, 255, .18) 58%, transparent 100%) top / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(0, 0, 0, .3));
  clip-path: polygon(7% 0, 95% 0, 100% 100%, 0 100%);
  content: "";
}

.compare-hero-stage::after {
  z-index: 1;
  right: 1%;
  bottom: 0;
  left: 1%;
  height: 14%;
}

.compare-hero-stage .content-hero__number {
  z-index: 0;
}

.compare-hero-stage__product,
.content-hero__stage > img {
  position: absolute;
  z-index: 2;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(0, 0, 0, .35));
}

.compare-hero-stage__product--1 {
  z-index: 5;
  right: 10%;
  bottom: -8%;
  width: 76%;
}

.compare-hero-stage__product--2 {
  z-index: 4;
  right: -8%;
  bottom: -5%;
  width: 50%;
}

.compare-hero-stage__product--3 {
  z-index: 4;
  right: auto;
  bottom: -5%;
  left: -2%;
  width: 48%;
}

.compare-hero-stage__product--4 {
  z-index: 3;
  right: auto;
  bottom: -5%;
  left: -17%;
  width: 48%;
}

/* Shared editorial product stage: size by product height, not transparent canvas width. */

.single-product-stage {
  --stage-product-bottom: -5%;
  --stage-product-height: 98%;
  --stage-product-left: 48%;
  isolation: isolate;
}

.single-product-stage::before {
  position: absolute;
  z-index: 0;
  inset: 5% 8% 14%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .17), rgba(255, 255, 255, .045) 34%, transparent 69%),
    linear-gradient(118deg, rgba(0, 145, 146, .13), transparent 42%);
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
  content: "";
}

.single-product-stage::after {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 7.5%;
  left: 10%;
  height: 15%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent, rgba(101, 213, 214, .68) 23%, rgba(255, 255, 255, .18) 58%, transparent 86%) center 72% / 100% 2px no-repeat,
    radial-gradient(ellipse at center, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .18) 43%, transparent 72%);
  filter: none;
  content: "";
}

.single-product-stage .content-hero__number {
  z-index: 0;
}

.single-product-stage > img {
  top: auto;
  right: auto;
  bottom: var(--stage-product-bottom);
  left: var(--stage-product-left);
  width: auto;
  max-width: none;
  height: var(--stage-product-height);
  object-position: center;
  filter: contrast(1.04) saturate(1.03) drop-shadow(0 28px 22px rgba(0, 0, 0, .42));
  transform: translateX(-50%);
  transform-origin: 50% 86%;
}

.single-product-stage--manmax,
.article-hero-stage--manmax {
  --stage-product-bottom: -5%;
  --stage-product-height: 98%;
  --stage-product-left: 47%;
}

.article-hero-stage--red-devils {
  --stage-product-bottom: -5.2%;
  --stage-product-height: 100%;
  --stage-product-left: 48%;
}

.article-hero-stage--gen-power {
  --stage-product-bottom: -5.2%;
  --stage-product-height: 101%;
  --stage-product-left: 48%;
}

.article-hero-stage--tiger {
  --stage-product-bottom: -4.4%;
  --stage-product-height: 103%;
  --stage-product-left: 48%;
}

.compare-goals,
.delivery-journey,
.guides-library {
  padding: 92px 0 104px;
  background: var(--white);
}

.compare-section-heading,
.delivery-section-heading,
.guides-library__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.compare-section-heading h2,
.delivery-section-heading h2,
.guides-library__heading h2,
.compare-matrix__intro h2,
.delivery-parcel h2,
.delivery-tracking__copy h2,
.delivery-payment h2,
.reviews-product-strip h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 4.3vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

.compare-goals__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-goal {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-rows: 196px auto;
  align-content: start;
  gap: 20px;
  padding: 24px 20px 29px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.compare-goal + .compare-goal {
  border-left: 1px solid var(--line);
}

.compare-goal:hover {
  z-index: 2;
  background: var(--paper-deep);
  transform: translateY(-5px);
}

.compare-goal__number {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 18px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.compare-goal__media {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .38) 38%, transparent 70%),
    linear-gradient(180deg, #f3f2ee, #e6e6e1);
}

.compare-goal__media::before {
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: 9%;
  left: 12%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(25, 30, 31, .27), transparent 70%);
  content: "";
}

.compare-goal__media::after {
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 128, 129, .55), transparent);
  content: "";
}

.compare-goal__media img {
  position: absolute;
  z-index: 1;
  bottom: -10%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 118%;
  object-fit: contain;
  filter: contrast(1.03) saturate(1.02) drop-shadow(0 16px 12px rgba(25, 29, 30, .22));
  transform: translateX(-50%);
  transform-origin: 50% 86%;
  transition: transform .22s ease;
}

.compare-goal__media--tiger img {
  bottom: -8%;
  height: 114%;
}

.compare-goal:hover .compare-goal__media img {
  transform: translateX(-50%) scale(1.025);
}

.compare-goal > span:last-child {
  display: grid;
  gap: 7px;
}

.compare-goal strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.compare-goal small {
  color: var(--muted);
  font-size: 12px;
}

.compare-matrix {
  padding: 98px 0 112px;
  scroll-margin-top: 104px;
  background: var(--paper-deep);
}

.compare-matrix__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.compare-matrix__intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.compare-matrix .full-comparison {
  margin: 0;
  border: 0;
  background: transparent;
}

.compare-matrix .full-comparison__heading {
  display: none;
}

.compare-matrix .comparison-scroll {
  border: 1px solid #c7c9c6;
  box-shadow: 0 22px 60px rgba(28, 31, 32, .09);
}

.compare-cta,
.article-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #006f70 0%, #004f50 56%, #263435 56.2%, #222627 100%);
  color: var(--white);
}

.compare-cta__inner,
.article-cta__inner {
  min-height: 224px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.compare-cta .eyebrow,
.article-cta .eyebrow {
  color: #87dedf;
}

.compare-cta h2,
.article-cta h2 {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--white);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
}

.shop-compare-teaser {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-top: 88px;
  padding: 42px 52px;
  border-top: 4px solid var(--teal);
  background: linear-gradient(115deg, var(--paper-deep), #fff 68%);
}

.shop-compare-teaser h2 {
  max-width: 700px;
  margin: 8px 0 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

/* Reviews destination */

.reviews-hero-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
}

.reviews-hero-score > strong {
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .8;
}

.reviews-hero-score strong small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 19px;
  letter-spacing: 0;
}

.reviews-hero-score > span {
  display: grid;
  gap: 3px;
}

.reviews-hero-score i {
  color: var(--star);
  font-size: 18px;
  font-style: normal;
  letter-spacing: 3px;
}

.reviews-hero-score b {
  color: var(--muted);
  font-size: 12px;
}

.reviews-hero-stage {
  isolation: isolate;
}

.reviews-hero-stage::before {
  position: absolute;
  z-index: 0;
  inset: 5% 0 13% 22%;
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, .18), transparent 48%),
    linear-gradient(122deg, rgba(0, 151, 150, .18), transparent 54%);
  clip-path: polygon(17% 0, 100% 0, 86% 100%, 0 100%);
  content: "";
}

.reviews-hero-stage::after {
  z-index: 1;
  right: 0;
  bottom: 7%;
  left: 27%;
  height: 15%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent, rgba(101, 213, 214, .58) 30%, rgba(255, 255, 255, .14), transparent 88%) center 72% / 100% 2px no-repeat,
    radial-gradient(ellipse, rgba(0, 0, 0, .48), transparent 70%);
  filter: none;
}

.reviews-hero-stage > img {
  top: auto;
  right: auto;
  bottom: -5%;
  left: 69%;
  width: auto;
  max-width: none;
  height: 112%;
  filter: contrast(1.05) saturate(1.03) drop-shadow(0 28px 22px rgba(0, 0, 0, .43));
  transform: translateX(-50%);
}

.reviews-hero-stage blockquote {
  position: absolute;
  z-index: 3;
  top: 14%;
  left: 3%;
  width: 59%;
  margin: 0;
  padding: 36px 30px 32px;
  border-left: 4px solid #69d1d2;
  background: rgba(31, 35, 36, .9);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.reviews-hero-stage blockquote > span {
  position: absolute;
  top: -31px;
  left: 18px;
  color: #69d1d2;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.reviews-hero-stage blockquote > p {
  position: relative;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.reviews-hero-stage blockquote footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.reviews-hero-stage .review-verified {
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
}

.reviews-section--dedicated {
  padding-top: 92px;
  padding-bottom: 104px;
}

.reviews-section--dedicated .reviews-proof__link {
  position: static;
  margin-top: 28px;
}

.reviews-product-strip {
  padding: 30px 0;
  background: linear-gradient(105deg, var(--white), var(--paper) 72%);
  border-top: 1px solid var(--line);
}

.reviews-product-strip__inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.reviews-product-strip__media {
  position: relative;
  isolation: isolate;
  height: 176px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .3) 48%, transparent 72%),
    linear-gradient(180deg, #eeede8, #dfe0db);
}

.reviews-product-strip__media::before {
  position: absolute;
  z-index: 0;
  right: 10%;
  bottom: 8%;
  left: 10%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27, 31, 32, .28), transparent 72%);
  content: "";
}

.reviews-product-strip__media::after {
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 128, 129, .6), transparent);
  content: "";
}

.reviews-product-strip__media img {
  position: absolute;
  z-index: 1;
  bottom: -10%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 120%;
  object-fit: contain;
  filter: contrast(1.05) saturate(1.03) drop-shadow(0 17px 13px rgba(25, 29, 30, .22));
  transform: translateX(-50%);
  transition: transform .22s ease;
}

.reviews-product-strip__media:hover img {
  transform: translateX(-50%) scale(1.025);
}

.reviews-product-strip h2 {
  font-size: 34px;
}

.reviews-product-strip p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.reviews-product-strip__inner > div:last-child {
  display: grid;
  justify-items: end;
  gap: 13px;
}

.reviews-product-strip__inner > div:last-child > strong {
  font-size: 28px;
}

/* Delivery destination */

.delivery-hero-stage > img {
  right: -5%;
  bottom: 2%;
  width: 92%;
  transform: rotate(-2deg);
}

.delivery-hero-stage__mark {
  position: absolute;
  z-index: 4;
  top: 44px;
  left: 10%;
  min-width: 160px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  background: var(--white);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.delivery-hero-stage__mark img {
  width: 132px;
}

.delivery-facts {
  background: var(--charcoal-deep);
  color: var(--white);
}

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

.delivery-facts__rail > div {
  min-height: 108px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 18px 28px;
}

.delivery-facts__rail > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.delivery-facts strong,
.delivery-facts span {
  display: block;
}

.delivery-facts strong {
  color: #75d5d6;
  font-size: 17px;
}

.delivery-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.delivery-tracking {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .11);
  background:
    linear-gradient(118deg, rgba(0, 128, 128, .14), transparent 43%),
    linear-gradient(100deg, #171b1c 0%, #23292a 66%, #243334 100%);
  color: var(--white);
}

.delivery-tracking::after {
  position: absolute;
  top: -45%;
  right: 8%;
  width: 240px;
  height: 190%;
  border-right: 1px solid rgba(117, 213, 214, .16);
  border-left: 1px solid rgba(117, 213, 214, .08);
  transform: skewX(-13deg);
  content: "";
  pointer-events: none;
}

.delivery-tracking__inner {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(45px, 6vw, 88px);
  padding-top: 38px;
  padding-bottom: 38px;
}

.delivery-tracking__copy h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 50px);
}

.delivery-tracking__copy > p:last-child {
  max-width: 500px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.62;
}

.delivery-tracking__form {
  padding: 23px 24px 20px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  background: #f7f6f2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
  color: var(--ink);
}

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

.delivery-tracking__form-heading img {
  width: 116px;
  height: auto;
}

.delivery-tracking__form-heading span,
.delivery-tracking__form > label {
  color: #5f6668;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-tracking__form > label {
  display: block;
  margin-bottom: 8px;
}

.delivery-tracking__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.delivery-tracking__controls input,
.delivery-tracking__controls .button {
  min-height: 58px;
}

.delivery-tracking__controls input {
  width: 100%;
  padding: 0 17px;
  border: 1px solid #b9bdbd;
  border-radius: 2px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: 700 16px/1 "Lato", Arial, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.delivery-tracking__controls input::placeholder {
  color: #969c9d;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.delivery-tracking__controls input:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, .14);
}

.delivery-tracking__controls input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .1);
}

.delivery-tracking__controls .button {
  white-space: nowrap;
}

.delivery-tracking__help,
.delivery-tracking__error {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.delivery-tracking__help {
  color: #747b7d;
}

.delivery-tracking__error {
  color: #a51d13;
  font-weight: 700;
}

.delivery-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.delivery-timeline li {
  position: relative;
  min-height: 240px;
  padding: 30px 26px 26px;
}

.delivery-timeline li + li {
  border-left: 1px solid var(--line);
}

.delivery-timeline li::before {
  position: absolute;
  top: -5px;
  left: 26px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  content: "";
}

.delivery-timeline li > span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.delivery-timeline strong {
  display: block;
  margin-top: 34px;
  font-size: 24px;
  font-weight: 900;
}

.delivery-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.delivery-parcel {
  padding: 104px 0;
  background: var(--paper-deep);
}

.delivery-parcel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr);
  align-items: center;
  gap: 78px;
}

.delivery-parcel figure {
  position: relative;
  margin: 0;
}

.delivery-parcel figure::before {
  position: absolute;
  z-index: 0;
  inset: 8% -3% -5% 7%;
  background: var(--charcoal-deep);
  transform: skewY(-3deg);
  content: "";
}

.delivery-parcel figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: 0 28px 70px rgba(26, 30, 31, .18);
}

.delivery-parcel__layout > div > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.delivery-parcel ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.delivery-parcel li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
}

.delivery-parcel li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  content: "";
}

.delivery-payment {
  padding: 70px 0;
  background: var(--white);
}

.delivery-payment__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.delivery-payment h2 {
  font-size: 40px;
}

.delivery-payment__marks {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.delivery-payment__paypal,
.delivery-payment__cards {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.delivery-payment__paypal img {
  width: 102px;
  max-height: 35px;
}

.delivery-payment__cards {
  gap: 13px;
}

.delivery-payment__cards img {
  width: 46px;
  height: 34px;
  object-fit: contain;
}

/* Guides hub */

.guides-hero-stage__line,
.article-hero-stage__label {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 20px;
  bottom: auto;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 128, 129, .88);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.guides-hero-stage__line i {
  margin-inline: 8px;
  color: #8de7e8;
  font-style: normal;
}

.guides-lead {
  padding: 92px 0;
  background: var(--paper-deep);
}

.guides-lead__layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  border-top: 5px solid var(--teal);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(27, 31, 32, .09);
}

.guides-lead__number {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 42px;
  background: var(--charcoal-deep);
  color: #6bd0d1;
  font-size: 29px;
  font-weight: 900;
}

.guides-lead__layout h2 {
  max-width: 680px;
  margin: 11px 0 20px;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .96;
}

.guides-lead__layout p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.guides-lead__layout > img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  align-self: end;
  filter: drop-shadow(0 24px 18px rgba(23, 27, 28, .22));
  transform: scale(1.12) translateY(6%);
}

.guides-list {
  border-top: 1px solid var(--line);
}

.guide-row {
  min-height: 210px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 34px;
  padding: 28px 14px 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}

.guide-row:hover {
  padding-left: 18px;
  background: var(--paper);
}

.guide-row__number {
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
}

.guide-row__content {
  display: block;
}

.guide-row__content small {
  display: block;
  margin-bottom: 9px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.guide-row__content strong {
  display: block;
  max-width: 900px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.guide-row__content p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-row__arrow {
  color: var(--teal-dark);
  font-size: 30px;
  transition: transform .2s ease;
}

.guide-row:hover .guide-row__arrow {
  transform: translateX(7px);
}

.guides-proof {
  background: var(--charcoal-deep);
  color: var(--white);
}

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

.guides-proof__rail > div {
  min-height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 24px 28px;
}

.guides-proof__rail > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.guides-proof strong,
.guides-proof span {
  display: block;
}

.guides-proof strong {
  color: #73d4d5;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.guides-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

/* Article reading system */

.content-hero--article .content-hero__copy h1 {
  font-size: clamp(48px, 5vw, 68px);
}

.content-hero--article .content-hero__copy .text-link {
  margin-top: 27px;
}

.article-hero-stage__label {
  right: 20px;
  bottom: auto;
  left: auto;
}

.article-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  justify-content: space-between;
  gap: 78px;
  padding-top: 92px;
  padding-bottom: 118px;
}

.article-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.article-aside nav {
  padding: 22px 0;
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--line);
}

.article-aside nav p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-aside nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.article-aside nav a:hover {
  color: var(--teal-dark);
}

.article-aside__product {
  --aside-product-bottom: -10%;
  --aside-product-height: 118%;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 0 14px 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--teal);
  background: linear-gradient(125deg, var(--paper-deep), var(--white));
}

.article-aside__product-media {
  position: relative;
  isolation: isolate;
  align-self: start;
  width: 100%;
  min-height: 0;
  aspect-ratio: 118 / 136;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .22) 48%, transparent 72%),
    linear-gradient(180deg, #edede8, #dedfda);
}

.article-aside__product-media::before {
  position: absolute;
  z-index: 0;
  right: 9%;
  bottom: 8%;
  left: 9%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27, 31, 32, .27), transparent 72%);
  content: "";
}

.article-aside__product-media img {
  position: absolute;
  z-index: 1;
  bottom: var(--aside-product-bottom);
  left: 50%;
  width: auto;
  max-width: none;
  height: var(--aside-product-height);
  object-fit: contain;
  filter: contrast(1.04) saturate(1.02) drop-shadow(0 13px 10px rgba(25, 29, 30, .2));
  transform: translateX(-50%);
  transition: transform .2s ease;
}

.article-aside__product-media:hover img {
  transform: translateX(-50%) scale(1.025);
}

.article-aside__product--red-devils {
  --aside-product-height: 119%;
}

.article-aside__product--gen-power {
  --aside-product-height: 120%;
}

.article-aside__product--tiger {
  --aside-product-bottom: -9%;
  --aside-product-height: 122%;
}

.article-aside__product p {
  margin: 0;
}

.article-aside__product strong,
.article-aside__product span {
  display: block;
}

.article-aside__product strong {
  font-size: 13px;
}

.article-aside__product span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.article-aside__product .button {
  grid-column: 1 / -1;
  min-height: 44px;
  margin-left: 14px;
  padding-inline: 14px;
  font-size: 10px;
}

.article-content {
  min-width: 0;
}

.article-overview,
.article-comparison,
.article-section,
.article-sources {
  scroll-margin-top: 104px;
}

.article-overview {
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line);
}

.article-overview h2,
.article-comparison h2,
.article-section h2,
.article-sources h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}

.article-overview__lede {
  margin: 27px 0 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.article-key-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.article-key-points li {
  position: relative;
  padding: 18px 0 0 18px;
  border-top: 3px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.article-key-points li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  content: "";
}

.article-comparison,
.article-section,
.article-sources {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.article-comparison > header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 29px;
}

.article-comparison > header > span,
.article-section__number {
  padding-top: 7px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.article-comparison > header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article-comparison .comparison-table {
  min-width: 720px;
}

.article-comparison .comparison-table thead th:first-child,
.article-comparison .comparison-table tbody th {
  width: 150px;
}

.article-section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
}

.article-section__subtitle {
  margin: 0 0 9px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-section__lede {
  margin: 28px 0 20px;
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.55 !important;
}

.article-section p:not(.article-section__subtitle):not(.article-section__lede),
.article-sources > p:not(.eyebrow) {
  max-width: 70ch;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-section ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.article-section li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.article-section li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  content: "";
}

.article-sources ol {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.article-sources li {
  display: grid;
  grid-template-columns: minmax(210px, .7fr) minmax(0, 1.3fr);
  gap: 26px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.article-sources a {
  color: var(--teal-dark);
  font-weight: 900;
}

.article-sources span {
  color: var(--muted);
}

.article-cta__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .7fr);
  padding-top: 56px;
  padding-bottom: 56px;
}

.article-cta__inner > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.6;
}

.article-cta__inner > div:last-child > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 24px;
}

.article-cta__inner > div:last-child > div > a:not(.button) {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.footer-grid {
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 38px;
}

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

  .main-nav a {
    font-size: 10px;
  }

  .content-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
  }

  .compare-goal {
    padding-inline: 18px;
  }

  .guides-lead__layout {
    grid-template-columns: 86px minmax(0, 1fr) 270px;
    gap: 34px;
  }

  .article-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 55px;
  }

  .article-aside__product {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (max-width: 960px) {
  .content-hero::after {
    left: 50%;
  }

  .content-hero__layout {
    min-height: 470px;
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .content-hero__copy {
    padding-right: 32px;
  }

  .content-hero__copy h1 {
    font-size: clamp(46px, 6vw, 62px);
  }

  .content-hero__stage {
    min-height: 470px;
  }

  .content-hero--article::after {
    inset: auto -20% 0 -12%;
    width: auto;
    height: 470px;
    clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%);
  }

  .content-hero--article::before {
    top: auto;
    right: 15%;
    bottom: -7%;
    width: 26%;
    height: 480px;
  }

  .content-hero--article .content-hero__layout {
    min-height: 0;
    display: block;
  }

  .content-hero--article .content-hero__copy {
    max-width: 780px;
    padding: 58px 0 50px;
  }

  .reviews-hero-stage > img {
    right: -110px;
    left: auto;
    transform: none;
  }

  .compare-goals__rail,
  .delivery-timeline,
  .delivery-facts__rail,
  .guides-proof__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-tracking__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .delivery-tracking__copy {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr);
    align-items: end;
    gap: 32px;
  }

  .delivery-tracking__copy > p:last-child {
    margin-top: 0;
  }

  .compare-goal:nth-child(3),
  .compare-goal:nth-child(3) + .compare-goal,
  .delivery-timeline li:nth-child(3),
  .delivery-timeline li:nth-child(3) + li,
  .delivery-facts__rail > div:nth-child(3),
  .delivery-facts__rail > div:nth-child(4),
  .guides-proof__rail > div:nth-child(3),
  .guides-proof__rail > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .compare-goal:nth-child(3),
  .delivery-timeline li:nth-child(3),
  .delivery-facts__rail > div:nth-child(3),
  .guides-proof__rail > div:nth-child(3) {
    border-left: 0;
  }

  .delivery-parcel__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 50px;
  }

  .delivery-payment__inner {
    grid-template-columns: 1fr;
  }

  .delivery-payment__marks {
    justify-self: start;
  }

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

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
    gap: 30px;
  }

  .article-aside__product {
    margin-top: 0;
  }

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

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

@media (min-width: 721px) and (max-width: 960px) {
  .content-hero--article .article-hero-stage {
    min-height: 420px;
  }

  .guides-hero-stage__line,
  .article-hero-stage__label {
    top: 24px;
    right: auto;
    bottom: auto;
    left: 24px;
    padding: 10px 13px;
    transform: none;
    writing-mode: horizontal-tb;
  }
}

@media (max-width: 720px) {
  .content-hero {
    padding-bottom: 0;
  }

  .content-hero::after {
    inset: auto -20% 0 -12%;
    height: 43%;
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%);
  }

  .content-hero::before {
    top: auto;
    right: 15%;
    bottom: -8%;
    width: 28%;
    height: 52%;
  }

  .content-hero__layout {
    min-height: 0;
    display: block;
  }

  .content-hero__copy {
    max-width: none;
    padding: 52px 0 42px;
  }

  .content-hero__copy h1,
  .content-hero--article .content-hero__copy h1 {
    margin-top: 13px;
    font-size: clamp(42px, 12.8vw, 51px);
    letter-spacing: -.045em;
    line-height: .96;
  }

  .content-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .content-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .content-hero__actions .button {
    width: 100%;
  }

  .content-hero__stage {
    min-height: 340px;
  }

  .content-hero__number {
    top: 42px;
    right: 3%;
    font-size: 160px;
  }

  .compare-hero-stage__product--1 {
    right: 5%;
    bottom: -9%;
    width: 80%;
  }

  .compare-hero-stage__product--2 {
    right: -12%;
    bottom: -7%;
    width: 54%;
  }

  .compare-hero-stage__product--3 {
    right: auto;
    bottom: -7%;
    left: -2%;
    width: 52%;
  }

  .compare-hero-stage__product--4 {
    right: auto;
    bottom: -7%;
    left: -18%;
    width: 52%;
  }

  .compare-goals,
  .delivery-journey,
  .guides-library,
  .compare-matrix,
  .delivery-parcel,
  .guides-lead {
    padding: 62px 0 70px;
  }

  .compare-section-heading,
  .delivery-section-heading,
  .guides-library__heading,
  .compare-matrix__intro {
    display: block;
    margin-bottom: 30px;
  }

  .compare-section-heading h2,
  .delivery-section-heading h2,
  .guides-library__heading h2,
  .compare-matrix__intro h2,
  .delivery-parcel h2 {
    font-size: 39px;
  }

  .compare-matrix__intro > p,
  .delivery-section-heading > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .compare-goals__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .compare-goal {
    flex: 0 0 78vw;
    min-height: 312px;
    grid-template-rows: 178px auto;
    scroll-snap-align: start;
  }

  .compare-goal + .compare-goal,
  .compare-goal:nth-child(3),
  .compare-goal:nth-child(3) + .compare-goal {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .compare-matrix .mobile-scroll-hint,
  .article-comparison .mobile-scroll-hint {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 0;
  }

  .compare-matrix .comparison-table {
    min-width: 920px;
  }

  .compare-cta__inner,
  .article-cta__inner {
    min-height: 0;
    display: block;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .compare-cta h2,
  .article-cta h2 {
    font-size: 42px;
  }

  .compare-cta .button {
    width: 100%;
    margin-top: 28px;
  }

  .shop-compare-teaser {
    display: block;
    margin-top: 58px;
    padding: 34px 24px;
  }

  .shop-compare-teaser h2 {
    font-size: 34px;
  }

  .shop-compare-teaser .button {
    width: 100%;
    margin-top: 25px;
  }

  .reviews-hero-score > strong {
    font-size: 53px;
  }

  .reviews-hero-stage {
    min-height: 410px;
  }

  .reviews-hero-stage > img {
    right: -92px;
    bottom: -5%;
    left: auto;
    width: auto;
    height: 112%;
    transform: none;
  }

  .reviews-hero-stage blockquote {
    top: 12%;
    left: 0;
    width: 72%;
    padding: 31px 21px 26px;
  }

  .reviews-hero-stage blockquote > p {
    font-size: 16px;
  }

  .reviews-product-strip__inner {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 21px;
  }

  .reviews-product-strip__media {
    height: 132px;
  }

  .reviews-product-strip__media img {
    height: 120%;
  }

  .reviews-product-strip h2 {
    font-size: 25px;
  }

  .reviews-product-strip__inner > div:last-child {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: stretch;
  }

  .delivery-hero-stage {
    min-height: 330px;
  }

  .delivery-hero-stage > img {
    right: 0;
    bottom: 2%;
    width: 100%;
    transform: rotate(-1deg);
  }

  .delivery-hero-stage__mark {
    top: 42px;
    left: 0;
    min-width: 135px;
    min-height: 62px;
  }

  .delivery-facts__rail,
  .guides-proof__rail {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-facts__rail > div,
  .guides-proof__rail > div {
    min-height: 104px;
    padding: 16px;
  }

  .delivery-tracking__inner {
    gap: 22px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .delivery-tracking__copy {
    display: block;
  }

  .delivery-tracking__copy h2 {
    font-size: 36px;
  }

  .delivery-tracking__copy > p:last-child {
    margin-top: 12px;
  }

  .delivery-tracking__form {
    padding: 20px 18px 18px;
  }

  .delivery-tracking__form-heading img {
    width: 104px;
  }

  .delivery-tracking__controls {
    grid-template-columns: 1fr;
  }

  .delivery-tracking__controls input,
  .delivery-tracking__controls .button {
    min-height: 54px;
  }

  .delivery-tracking__controls .button {
    width: 100%;
  }

  .delivery-timeline {
    display: block;
    margin-left: 9px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .delivery-timeline li,
  .delivery-timeline li:nth-child(3) {
    min-height: 0;
    padding: 0 0 42px 34px;
    border-top: 0;
    border-left: 0;
  }

  .delivery-timeline li::before {
    top: 4px;
    left: -5px;
  }

  .delivery-timeline strong {
    margin-top: 9px;
  }

  .delivery-parcel__layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .delivery-parcel__layout > div {
    order: -1;
  }

  .delivery-parcel figure::before {
    right: 0;
  }

  .delivery-payment {
    padding: 55px 0;
  }

  .delivery-payment h2 {
    font-size: 34px;
  }

  .delivery-payment__marks {
    width: 100%;
    gap: 10px;
  }

  .delivery-payment__paypal,
  .delivery-payment__cards {
    min-height: 68px;
    padding: 12px;
  }

  .delivery-payment__paypal {
    flex: .78;
  }

  .delivery-payment__cards {
    flex: 1.22;
    gap: 7px;
  }

  .delivery-payment__cards img {
    width: 38px;
  }

  .guides-hero-stage,
  .article-hero-stage {
    min-height: 330px;
  }

  .single-product-stage {
    --stage-product-left: 46%;
  }

  .guides-hero-stage__line,
  .article-hero-stage__label {
    right: 10px;
    padding: 13px 8px;
    font-size: 10px;
  }

  .guides-lead__layout {
    min-height: 0;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 23px;
    padding-right: 22px;
  }

  .guides-lead__number {
    padding-top: 30px;
  }

  .guides-lead__layout > div:nth-child(2) {
    padding: 34px 0 38px;
  }

  .guides-lead__layout h2 {
    font-size: 37px;
  }

  .guides-lead__layout > img {
    display: none;
  }

  .guide-row {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 13px;
    padding: 27px 0;
  }

  .guide-row__number {
    font-size: 16px;
  }

  .guide-row__content strong {
    font-size: 28px;
  }

  .guide-row__content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .article-layout {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    min-width: 0;
    gap: 50px;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .article-aside {
    min-width: 0;
    display: block;
  }

  .article-aside nav {
    max-width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .article-aside nav p {
    display: none;
  }

  .article-aside nav a {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0 13px;
    border: 1px solid var(--line);
    background: var(--white);
    scroll-snap-align: start;
  }

  .article-aside__product {
    max-width: 360px;
    display: grid;
    margin-top: 22px;
  }

  .article-overview {
    padding-bottom: 50px;
  }

  .article-overview h2,
  .article-comparison h2,
  .article-section h2,
  .article-sources h2 {
    font-size: 37px;
  }

  .article-overview__lede {
    font-size: 18px;
  }

  .article-key-points {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .article-key-points li {
    padding: 0 0 0 18px;
    border-top: 0;
  }

  .article-key-points li::before {
    top: 6px;
  }

  .article-comparison,
  .article-section,
  .article-sources {
    min-width: 0;
    padding: 52px 0;
  }

  .article-comparison > header,
  .article-section {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
  }

  .article-comparison .comparison-table {
    min-width: 680px;
  }

  .article-section__lede {
    font-size: 18px !important;
  }

  .article-section p:not(.article-section__subtitle):not(.article-section__lede),
  .article-sources > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.7;
  }

  .article-sources li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article-cta__inner > div:last-child {
    margin-top: 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

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

@media (max-width: 410px) {
  .delivery-payment__paypal img {
    width: 79px;
  }

  .delivery-payment__cards img {
    width: 34px;
  }

}

/* Homepage hero typography refinement */

.home-hero__copy {
  max-width: 680px;
  padding-right: 20px;
}

.home-hero__copy h1 {
  max-width: none;
  margin: 22px 0 30px;
  font-family: "Barlow Semi Condensed", "Arial Narrow", "Lato", sans-serif;
  font-size: clamp(78px, 5.55vw, 80px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .94;
}

.home-hero__copy h1 .hero-heading__line {
  white-space: nowrap;
}

.home-hero .eyebrow,
.home-hero .hero-actions .text-link,
.hero-availability {
  font-weight: 700;
}

.hero-rating {
  gap: 7px 9px;
  margin-top: 28px;
  font-weight: 600;
}

.home-hero .hero-actions {
  margin-top: 28px;
}

.hero-availability {
  margin-top: 17px;
  letter-spacing: .055em;
}

@media (min-width: 961px) and (max-width: 1210px) {
  .home-hero__layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  }

  .home-hero__copy {
    padding-right: 18px;
  }

  .home-hero__copy h1 {
    font-size: clamp(60px, 6.2vw, 72px);
  }

  .hero-stage img {
    width: min(45vw, 520px);
  }
}

@media (max-width: 960px) {
  .home-hero {
    background: var(--paper);
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero__layout {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    order: 0;
    max-width: 760px;
    padding: 54px 0 44px;
  }

  .home-hero__copy h1 {
    margin: 20px 0 28px;
    font-size: clamp(56px, 8vw, 72px);
  }

  .hero-stage {
    order: 1;
    width: 100vw;
    min-height: clamp(430px, 58vw, 540px);
    margin-left: calc(50% - 50vw);
    padding-top: 24px;
    overflow: hidden;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    background:
      radial-gradient(circle at 52% 38%, rgba(0, 136, 137, .3), transparent 34%),
      linear-gradient(134deg, #404445 0%, #242728 58%, #161819 100%);
  }

  .hero-stage img {
    width: min(64vw, 520px);
  }
}

@media (max-width: 720px) {
  .home-hero__copy {
    max-width: none;
    padding: 38px 0 32px;
  }

  .home-hero__copy h1 {
    margin: 18px 0 24px;
    font-size: clamp(38px, 11.8vw, 46px);
    letter-spacing: -.02em;
    line-height: .94;
  }

  .home-hero .hero-lead {
    line-height: 1.55;
  }

  .hero-rating {
    margin-top: 24px;
  }

  .home-hero .hero-actions {
    margin-top: 26px;
  }

  .hero-availability {
    margin-top: 13px;
  }

  .hero-stage {
    min-height: 350px;
  }

  .hero-stage img {
    width: min(94vw, 390px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-goal,
  .compare-goal__media img,
  .reviews-product-strip__media img,
  .article-aside__product-media img {
    transition: none;
  }

  .compare-goal:hover {
    transform: none;
  }

  .compare-goal:hover .compare-goal__media img,
  .reviews-product-strip__media:hover img,
  .article-aside__product-media:hover img {
    transform: translateX(-50%);
  }
}

@media (max-width: 360px) {
  .home-hero .eyebrow {
    font-size: 10.5px;
    letter-spacing: .11em;
  }
}

/* Homepage performance control deck */

.home-hero__copy {
  isolation: isolate;
}

.home-hero__copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -120px -70px -130px -180px;
  pointer-events: none;
  background:
    linear-gradient(132deg, transparent 0 67%, rgba(0, 136, 137, .052) 67% 71%, transparent 71% 77%, rgba(37, 40, 41, .032) 77% 81%, transparent 81% 100%);
}

.home-hero .hero-lead {
  max-width: 570px;
}

.hero-capabilities {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-capabilities li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 15px;
  padding-right: 16px;
  white-space: nowrap;
}

.hero-capabilities li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 25px;
  background: rgba(37, 40, 41, .2);
  transform: translateY(-50%) rotate(15deg);
}

.hero-capabilities li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.hero-capabilities span {
  color: var(--teal-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", "Lato", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero-capabilities strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.hero-rating {
  margin-top: 20px;
}

.home-hero .hero-actions {
  width: min(100%, 590px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 12px;
  margin-top: 24px;
}

.hero-purchase,
.hero-range {
  min-width: 0;
  min-height: 62px;
  position: relative;
  overflow: hidden;
}

.hero-purchase {
  padding-inline: 20px;
  background: linear-gradient(112deg, #37780c, #468e11);
  box-shadow: 0 16px 34px rgba(64, 131, 16, .25);
}

.hero-purchase > span {
  font-size: 12.5px;
  letter-spacing: .04em;
}

.hero-purchase strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
}

.hero-purchase strong i {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  font-style: normal;
  transition: transform .18s ease;
}

.hero-purchase:hover strong i {
  transform: translateX(3px);
}

.hero-range {
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 0 19px;
  border-color: #252829;
  background: linear-gradient(118deg, #323536, #202223);
  color: var(--white);
  text-align: left;
  box-shadow: 0 15px 32px rgba(28, 31, 32, .18);
}

.hero-range::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #43cfd0);
  transform: scaleX(.38);
  transform-origin: left center;
  transition: transform .24s ease;
}

.hero-range:hover {
  border-color: var(--teal-dark);
  background: linear-gradient(118deg, #292d2e, #17191a);
}

.hero-range:hover::after {
  transform: scaleX(1);
}

.hero-range > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.hero-range small {
  color: #75d9d7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.1;
}

.hero-range strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-range > b {
  flex: 0 0 auto;
  color: #75d9d7;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform .18s ease;
}

.hero-range:hover > b {
  transform: translateX(3px);
}

.hero-availability {
  margin-top: 15px;
}

.hero-stage__arcs {
  position: absolute;
  z-index: 0;
  top: 25%;
  left: 1%;
  width: 86%;
  height: 48%;
  border: 1px solid transparent;
  border-top-color: rgba(62, 219, 220, .34);
  border-right-color: rgba(62, 219, 220, .16);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-11deg);
}

.hero-stage__arcs::before,
.hero-stage__arcs::after {
  content: "";
  position: absolute;
  border: 1px solid transparent;
  border-top-color: rgba(62, 219, 220, .18);
  border-right-color: rgba(62, 219, 220, .1);
  border-radius: 50%;
}

.hero-stage__arcs::before {
  inset: 28px 38px;
}

.hero-stage__arcs::after {
  inset: 58px 82px;
}

.hero-stage__signal {
  position: absolute;
  z-index: 2;
  left: 3%;
  bottom: 108px;
  padding: 10px 28px 10px 15px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  background: #c75222;
  color: var(--white);
  box-shadow: 0 13px 28px rgba(0, 0, 0, .28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero-stage::before {
  color: rgba(255, 255, 255, .026);
}

.hero-stage img {
  z-index: 1;
  width: min(48vw, 625px);
  max-height: 680px;
  filter: drop-shadow(32px 38px 34px rgba(0, 0, 0, .48));
  transform: translate(-8%, 0) rotate(-2deg) scale(1.12);
}

.home-hero:hover .hero-stage img {
  filter: drop-shadow(38px 44px 38px rgba(0, 0, 0, .54));
  transform: translate(-8%, -1.5%) rotate(-1deg) scale(1.14);
}

@media (min-width: 961px) and (max-width: 1100px) {
  .home-hero .hero-actions {
    max-width: 350px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-purchase,
  .hero-range {
    min-height: 56px;
  }
}

@media (max-width: 960px) {
  .home-hero__copy {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .home-hero .hero-actions {
    width: min(100%, 590px);
  }

  .hero-stage {
    min-height: clamp(400px, 54vw, 500px);
  }

  .hero-stage img {
    width: min(72vw, 590px);
    max-height: 570px;
    transform: translate(-4%, -7%) rotate(-2deg) scale(1.1);
  }

  .home-hero:hover .hero-stage img {
    transform: translate(-4%, -7%) rotate(-2deg) scale(1.1);
  }

  .hero-stage__signal {
    left: 7%;
    bottom: 72px;
  }
}

@media (max-width: 720px) {
  .home-hero__copy {
    padding: 29px 0 23px;
  }

  .home-hero__copy::before {
    inset: -70px -30px -80px -80px;
    opacity: .72;
  }

  .home-hero__copy h1 {
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .home-hero .hero-lead {
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-capabilities {
    display: none;
  }

  .hero-rating {
    margin-top: 18px;
  }

  .home-hero .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-purchase,
  .hero-range {
    width: 100%;
    min-height: 58px;
  }

  .hero-purchase {
    justify-content: space-between;
  }

  .hero-range {
    justify-content: space-between;
  }

  .hero-range small {
    font-size: 9px;
  }

  .hero-range strong {
    font-size: 12px;
  }

  .hero-availability {
    margin-top: 10px;
  }

  .hero-stage {
    min-height: 320px;
    padding-top: 18px;
  }

  .hero-stage__arcs {
    top: 19%;
    left: -7%;
    width: 114%;
    height: 58%;
  }

  .hero-stage__signal {
    top: 43px;
    bottom: auto;
    left: 14px;
    padding-block: 9px;
  }

  .hero-stage img {
    width: min(102vw, 420px);
    max-height: 370px;
    transform: translate(-2%, -10%) rotate(-1.8deg) scale(1.08);
  }

  .home-hero:hover .hero-stage img {
    transform: translate(-2%, -10%) rotate(-1.8deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-purchase strong i,
  .hero-range::after,
  .hero-range > b,
  .hero-stage img,
  .home-hero:hover .hero-stage img {
    transition: none;
  }
}

/* Homepage featured-product carousel */

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

.hero-carousel__panel.is-entering {
  animation: hero-panel-enter .38s cubic-bezier(.2, .72, .2, 1) both;
}

@keyframes hero-panel-enter {
  from {
    opacity: .28;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel__switcher {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  width: 51%;
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-right: max(24px, calc((100vw - var(--shell)) / 2));
  padding-left: 18px;
  border-top: 1px solid rgba(118, 223, 222, .22);
  background: linear-gradient(90deg, rgba(24, 27, 28, .78), rgba(14, 16, 17, .95));
  backdrop-filter: blur(9px);
}

.hero-carousel__switcher button {
  position: relative;
  min-width: 0;
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px 9px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  cursor: pointer;
  text-transform: uppercase;
}

.hero-carousel__switcher button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #54d6d5);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.hero-carousel__switcher button small {
  color: #5dcecd;
  font-family: "Barlow Semi Condensed", "Arial Narrow", Lato, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero-carousel__switcher button span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-carousel__switcher button[aria-selected="true"] {
  background: linear-gradient(180deg, rgba(0, 136, 137, .12), rgba(0, 136, 137, .03));
  color: var(--white);
}

.hero-carousel__switcher button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.hero-carousel__switcher button:focus-visible {
  z-index: 1;
  outline-offset: -5px;
}

.hero-carousel__panel .hero-stage {
  width: calc(100% + max(24px, calc((100vw - var(--shell)) / 2)));
  padding: 0;
}

.hero-carousel__panel .hero-stage::before {
  content: none;
}

.hero-stage__word {
  position: absolute;
  right: 1%;
  bottom: 5%;
  color: rgba(255, 255, 255, .026);
  font-size: clamp(112px, 10vw, 166px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  white-space: nowrap;
}

.hero-carousel__panel .hero-stage::after {
  right: 12%;
  bottom: 78px;
  left: 12%;
  width: auto;
}

.hero-stage__product {
  position: absolute;
  z-index: 1;
  inset: 0 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  overflow: hidden;
}

.hero-stage__product:focus-visible {
  outline-offset: -8px;
}

.hero-carousel__panel .hero-stage__product img,
.home-hero:hover .hero-carousel__panel .hero-stage__product img {
  position: relative;
  z-index: 1;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(30px 36px 32px rgba(0, 0, 0, .48));
  transition: none;
}

.hero-carousel__panel .hero-stage__image--manmax,
.home-hero:hover .hero-carousel__panel .hero-stage__image--manmax {
  width: 750px;
  transform: translate(3px, 18px) rotate(-1.5deg);
}

.hero-carousel__panel .hero-stage__image--gen-power,
.home-hero:hover .hero-carousel__panel .hero-stage__image--gen-power {
  width: 680px;
  transform: translate(2px, -2px) rotate(-.6deg);
}

.hero-carousel__panel .hero-stage__image--tiger,
.home-hero:hover .hero-carousel__panel .hero-stage__image--tiger {
  width: 680px;
  transform: translate(4px, 30px) rotate(.4deg);
}

.hero-rating--product {
  gap: 9px;
}

.hero-rating--product strong {
  color: var(--teal-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Lato, sans-serif;
  font-size: 23px;
  letter-spacing: -.01em;
}

.hero-rating--product span {
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-availability--neutral > span {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 136, 137, .12);
}

.hero-carousel__panel[data-hero-panel="gen-power"] .home-hero__copy h1 {
  font-size: clamp(64px, 4.9vw, 70px);
}

@media (min-width: 961px) and (max-width: 1210px) {
  .hero-carousel__switcher {
    width: 47.2%;
  }

  .hero-carousel__panel[data-hero-panel="gen-power"] .home-hero__copy h1 {
    font-size: clamp(54px, 5.5vw, 60px);
  }
}

@media (max-width: 960px) {
  .hero-carousel__switcher {
    top: 0;
    bottom: auto;
    width: 100%;
    min-height: 64px;
    padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
  }

  .hero-carousel__switcher button {
    min-height: 63px;
  }

  .hero-carousel__panel .hero-stage {
    width: 100vw;
  }

  .hero-carousel__panel .eyebrow {
    display: none;
  }

  .hero-carousel__panel .home-hero__copy {
    padding-top: 64px;
  }

  .hero-stage__product {
    bottom: 0;
  }

  .hero-carousel__panel .hero-stage__image--manmax,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--manmax {
    width: 600px;
    transform: translate(2px, 15px) rotate(-1.2deg);
  }

  .hero-carousel__panel .hero-stage__image--gen-power,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--gen-power {
    width: 560px;
    transform: translate(1px, -1px) rotate(-.4deg);
  }

  .hero-carousel__panel .hero-stage__image--tiger,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--tiger {
    width: 560px;
    transform: translate(4px, 25px) rotate(.3deg);
  }

  .hero-carousel__panel[data-hero-panel="gen-power"] .home-hero__copy h1 {
    font-size: clamp(48px, 6.7vw, 58px);
  }
}

@media (max-width: 720px) {
  .hero-carousel__switcher {
    min-height: 56px;
    padding-inline: 7px;
  }

  .hero-carousel__switcher button {
    min-height: 55px;
    gap: 5px;
    padding-inline: 5px;
  }

  .hero-carousel__switcher button::after {
    right: 6px;
    left: 6px;
  }

  .hero-carousel__switcher button small {
    font-size: 10px;
  }

  .hero-carousel__switcher button span {
    font-size: 8.5px;
    letter-spacing: .045em;
  }

  .hero-carousel__panel .home-hero__copy {
    padding-top: 54px;
  }

  .hero-stage__product {
    bottom: 0;
  }

  .hero-carousel__panel .hero-stage::after {
    bottom: 76px;
  }

  .hero-carousel__panel .hero-stage__image--manmax,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--manmax {
    width: min(106vw, 415px);
    transform: translate(1px, 10px) rotate(-1.2deg);
  }

  .hero-carousel__panel .hero-stage__image--gen-power,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--gen-power {
    width: min(92vw, 360px);
    transform: translate(1px, -1px) rotate(-.4deg);
  }

  .hero-carousel__panel .hero-stage__image--tiger,
  .home-hero:hover .hero-carousel__panel .hero-stage__image--tiger {
    width: min(100vw, 390px);
    transform: translate(2px, 17px) rotate(.3deg);
  }

  .hero-carousel__panel[data-hero-panel="gen-power"] .home-hero__copy h1 {
    font-size: clamp(34px, 9.6vw, 38px);
  }

  .hero-rating--product span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__panel.is-entering {
    animation: none;
  }
}

/* Homepage hero edge and depth pass */

.home-hero .home-hero__copy::before {
  background: linear-gradient(132deg, transparent 0 67%, rgba(0, 136, 137, .07) 67% 75%, transparent 75% 100%);
}

.home-hero .hero-carousel__panel .hero-stage {
  isolation: isolate;
  background: radial-gradient(ellipse at 46% 43%, rgba(47, 213, 210, .13), transparent 42%);
}

.home-hero .hero-carousel__panel .hero-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: soft-light;
  opacity: .075;
}

.home-hero [data-hero-panel="manmax"] .hero-stage::after {
  content: none;
}

.home-hero .hero-stage__word {
  display: none;
}

.home-hero .hero-stage__arcs {
  top: 22%;
  left: -12%;
  width: 86%;
  height: 56%;
  border-top-width: 2px;
  border-top-color: rgba(62, 219, 220, .34);
  border-right-color: rgba(62, 219, 220, .11);
  transform: rotate(-15deg);
}

.home-hero .hero-stage__arcs::before {
  inset: 36px 50px 46px 32px;
  border-top-color: rgba(62, 219, 220, .14);
  border-right-color: rgba(62, 219, 220, .06);
}

.home-hero .hero-stage__arcs::after {
  display: none;
}

.home-hero .hero-stage__number {
  top: 82px;
  right: 16px;
  color: rgba(255, 255, 255, .065);
  font-size: clamp(100px, 8.5vw, 132px);
}

.home-hero .hero-stage__number small {
  color: rgba(255, 255, 255, .38);
}

.home-hero [data-hero-panel="manmax"] .hero-stage__signal {
  z-index: 2;
  left: 8%;
  background: #cf5423;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

.home-hero [data-hero-panel="manmax"] .hero-stage__image--manmax,
.home-hero:hover [data-hero-panel="manmax"] .hero-stage__image--manmax {
  width: 800px;
  filter: drop-shadow(-8px 0 14px rgba(47, 213, 210, .12)) drop-shadow(30px 36px 32px rgba(0, 0, 0, .5));
  transform: translate(-10px, 14px) rotate(-1.7deg);
  transition: transform .28s ease, filter .28s ease;
}

.home-hero .hero-range {
  padding-right: 26px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  box-shadow: none;
  filter: drop-shadow(0 15px 16px rgba(28, 31, 32, .18));
}

.home-hero .hero-carousel__switcher {
  --hero-indicator-inset: 12px;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, .92fr));
}

.home-hero .hero-carousel__switcher::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: var(--hero-indicator-width, 0px);
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal), #54d6d5);
  box-shadow: 0 -7px 20px rgba(44, 208, 210, .2);
  transform: translateX(var(--hero-indicator-x, 0px));
  transition: width .24s ease, transform .24s cubic-bezier(.2, .72, .2, 1);
}

.home-hero .hero-carousel__switcher button::after {
  display: none;
}

.home-hero .hero-carousel__switcher button[data-hero-tab="manmax"] {
  background: rgba(0, 136, 137, .045);
  color: rgba(255, 255, 255, .76);
}

.home-hero .hero-carousel__switcher button[data-hero-tab="manmax"][aria-selected="true"] {
  background: linear-gradient(180deg, rgba(0, 136, 137, .23), rgba(0, 136, 137, .055));
  color: #fff;
}

.hero-carousel__panel.is-measuring {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden !important;
  pointer-events: none !important;
  animation: none !important;
}

.hero-carousel__panel.is-entering {
  animation: hero-panel-edge-enter .42s cubic-bezier(.2, .72, .2, 1) both;
}

.hero-carousel__panel.is-entering--next {
  --hero-copy-enter-x: 14px;
  --hero-product-enter-x: 28px;
}

.hero-carousel__panel.is-entering--previous {
  --hero-copy-enter-x: -14px;
  --hero-product-enter-x: -28px;
}

.hero-carousel__panel.is-entering .home-hero__copy {
  animation: hero-copy-edge-enter .28s cubic-bezier(.2, .72, .2, 1) both;
}

.hero-carousel__panel.is-entering .hero-stage__product {
  animation: hero-product-edge-enter .4s cubic-bezier(.16, .76, .2, 1) both;
}

.hero-carousel__panel.is-entering .hero-stage__signal {
  animation: hero-signal-edge-enter .34s .06s cubic-bezier(.2, .72, .2, 1) both;
}

@keyframes hero-panel-edge-enter {
  from { opacity: .26; }
  to { opacity: 1; }
}

@keyframes hero-copy-edge-enter {
  from { opacity: .38; transform: translateX(var(--hero-copy-enter-x)); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-product-edge-enter {
  from { opacity: .42; transform: translateX(var(--hero-product-enter-x)) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes hero-signal-edge-enter {
  from { opacity: 0; transform: translateX(var(--hero-product-enter-x)) rotate(-1deg); }
  to { opacity: 1; transform: translateX(0) rotate(-1deg); }
}

@media (min-width: 961px) and (max-width: 1210px) {
  .home-hero [data-hero-panel="manmax"] .hero-stage__image--manmax,
  .home-hero:hover [data-hero-panel="manmax"] .hero-stage__image--manmax {
    width: 770px;
    transform: translate(-8px, 14px) rotate(-1.6deg);
  }

  .home-hero .hero-stage__number {
    display: none;
  }
}

@media (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .home-hero [data-hero-panel="manmax"] .hero-stage__product:hover .hero-stage__image--manmax {
    filter: drop-shadow(-10px 0 16px rgba(47, 213, 210, .14)) drop-shadow(34px 42px 36px rgba(0, 0, 0, .54));
    transform: translate(-10px, 10px) rotate(-1.25deg);
  }
}

@media (max-width: 960px) {
  .home-hero .hero-carousel__panels {
    touch-action: pan-y pinch-zoom;
  }

  .home-hero[data-carousel-ready="true"] .home-hero__copy {
    min-height: var(--hero-copy-min-height, auto);
  }

  .home-hero .hero-carousel__panel .hero-stage {
    background: radial-gradient(ellipse at 48% 40%, rgba(47, 213, 210, .2), transparent 40%), linear-gradient(134deg, #3b4041 0%, #222627 58%, #141617 100%);
  }

  .home-hero [data-hero-panel="manmax"] .hero-stage__image--manmax,
  .home-hero:hover [data-hero-panel="manmax"] .hero-stage__image--manmax {
    width: 640px;
    transform: translate(-8px, 10px) rotate(-1.5deg);
  }

  .home-hero .hero-stage__number {
    display: none;
  }
}

@media (max-width: 720px) {
  .home-hero .hero-carousel__switcher {
    --hero-indicator-inset: 6px;
  }

  .home-hero .hero-carousel__panel .hero-stage {
    margin-top: -16px;
  }

  .home-hero .hero-stage__arcs {
    top: 24%;
    left: -22%;
    width: 112%;
    height: 58%;
  }

  .home-hero .hero-stage__signal {
    top: 26px;
    padding: 9px 18px 9px 12px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .home-hero [data-hero-panel="manmax"] .hero-stage__image--manmax,
  .home-hero:hover [data-hero-panel="manmax"] .hero-stage__image--manmax {
    width: min(110vw, 430px);
    transform: translate(-6px, 6px) rotate(-1.4deg);
  }

  .home-hero .hero-range {
    width: calc(100% - 16px);
    min-height: 52px;
    justify-self: start;
  }
}

@media (max-width: 360px) {
  .home-hero .hero-range small {
    display: none;
  }

  .home-hero .hero-range > span {
    gap: 0;
  }

  .hero-carousel__panel[data-hero-panel="gen-power"] .home-hero__copy h1 {
    font-size: clamp(32px, 9.25vw, 35px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-carousel__switcher::after,
  .home-hero [data-hero-panel="manmax"] .hero-stage__image--manmax,
  .home-hero [data-hero-panel="manmax"] .hero-stage__product:hover .hero-stage__image--manmax {
    transition: none;
  }

  .hero-carousel__panel.is-entering,
  .hero-carousel__panel.is-entering .home-hero__copy,
  .hero-carousel__panel.is-entering .hero-stage__product,
  .hero-carousel__panel.is-entering .hero-stage__signal {
    animation: none;
  }
}

/* Site-wide performance typography hierarchy */

.home-hero__copy h1,
.shop-intro h1,
.purchase-panel h1,
.content-hero__copy h1,
.content-hero--article .content-hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.022em;
}

.section-heading h2,
.catalogue-heading h2,
.product-information__intro h2,
.product-information__compact h2,
.product-information .product-information__intro h2,
.shop-help h2,
.help-section h2,
.offer-selector h2,
.reviews-proof__intro h2,
.compare-section-heading h2,
.delivery-section-heading h2,
.guides-library__heading h2,
.compare-matrix__intro h2,
.delivery-parcel h2,
.delivery-tracking__copy h2,
.delivery-payment h2,
.reviews-product-strip h2,
.compare-cta h2,
.article-cta h2,
.shop-compare-teaser h2,
.guides-lead__layout h2,
.guides-library__group > header h2,
.article-overview h2,
.article-comparison h2,
.article-section h2,
.article-faqs h2,
.article-related h2,
.article-sources h2,
.full-comparison__heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.018em;
}

.product-card h3,
.alternative-card h3,
.review-slide h3,
.article-faqs__grid h3,
.order-confidence__grid h3,
.delivery-copy h3,
.compare-goal strong,
.delivery-timeline strong,
.guide-row__content strong,
.guides-library__group .guide-row__content strong {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.008em;
}

.eyebrow,
.product-type,
.main-nav a,
.cart-button,
.text-link,
.card-detail-link,
.preview-bar,
.filter-scroll button,
.product-badge,
.stock-line,
.listing-badge,
.article-aside nav p,
.article-byline,
.article-section__subtitle,
.article-comparison > header > span,
.article-section__number,
.article-sources a,
.article-section__link,
.article-cta__inner > div:last-child > div > a:not(.button),
.footer-column h2,
.guides-hero-stage__line,
.article-hero-stage__label,
.guide-row__number,
.guide-row__content small,
.compare-goal__number,
.delivery-timeline li > span,
.reviews-carousel__header p,
.reviews-carousel__header span,
.reviews-proof__link,
.product-disclosure__number,
.product-disclosure__heading strong,
.product-disclosure .ingredient-other strong,
.delivery-highlights strong,
.pdp-offers h2,
.pdp-offers__grid small,
.pdp-offers__selection span,
.order-confidence__header p,
.order-confidence__header a,
.order-confidence__grid article > div:last-child > span,
.confidence-payment > div:first-child > span,
.order-confidence__compact article > p strong,
.service-grid h2,
.product-card__cue,
.breadcrumb strong,
.ingredient-table th,
.alternative-card > span,
.comparison-benefit-row td,
.guides-proof strong {
  font-weight: 700;
}

.button {
  font-weight: 700;
}

.button--purchase,
.purchase-button,
.product-card__footer > button,
.mobile-buy-bar button,
.hero-purchase {
  font-weight: 700;
}

.hero-capabilities span,
.hero-carousel__switcher button small,
.hero-rating--product strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.hero-capabilities strong,
.hero-rating,
.hero-rating--product span,
.review-slide__meta time,
.review-verified,
.article-byline,
.purchase-benefit,
.article-overview__lede,
.article-section__lede,
.article-section li,
.article-key-points li,
.product-disclosure__body .product-disclosure__lede,
.product-disclosure__points li,
.delivery-parcel li {
  font-weight: 400;
}

.hero-range strong,
.hero-stage__signal,
.hero-carousel__switcher button span,
.hero-availability,
.offer-option__saving,
.offer-selector__footer span,
.product-card__footer > a,
.featured-proof strong,
.card-facts dt,
.comparison-table thead th,
.comparison-table tbody th,
.comparison-table a,
.product-gallery > p,
.purchase-price span,
.product-facts dt,
.quantity-control span,
.reviews-carousel__header p,
.reviews-carousel__header span,
.review-author strong,
.article-faqs__grid h3,
.article-related__grid small,
.article-related__grid span {
  font-weight: 700;
}

.card-facts dd,
.product-facts dd,
.reviews-hero-stage blockquote > p {
  font-weight: 400;
}

.reviews-score-inline > strong,
.reviews-hero-score > strong,
.reviews-summary > strong,
.purchase-price strong,
.product-card__footer > strong,
.offer-selector__footer strong,
.comparison-price-row td,
.comparison-price-row td > strong,
.offer-option__multiplier,
.guides-lead__number,
.guide-row__number,
.hero-stage__number,
.content-hero__number {
  font-family: var(--font-display);
  font-weight: 800;
}

@media (max-width: 720px) {
  .home-hero__copy h1,
  .content-hero__copy h1,
  .content-hero--article .content-hero__copy h1 {
    letter-spacing: -.016em;
  }
}

/* Editorial product-stage alignment: keep the real product mass centred in
   the dark RHS panel while preserving the tested mobile overlaps. */
@media (min-width: 961px) {
  .single-product-stage--manmax,
  .article-hero-stage--manmax,
  .article-hero-stage--red-devils,
  .article-hero-stage--gen-power,
  .article-hero-stage--tiger {
    --stage-product-left: 51%;
  }

  .compare-hero-stage__product {
    transform: translateX(3%);
  }

  .compare-hero-stage__product--3 {
    left: 2%;
  }

  .compare-hero-stage__product--4 {
    left: -9%;
  }

  .reviews-hero-stage > img {
    left: 72%;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .single-product-stage--manmax,
  .article-hero-stage--manmax,
  .article-hero-stage--red-devils,
  .article-hero-stage--gen-power,
  .article-hero-stage--tiger {
    --stage-product-left: 50%;
  }

  .compare-hero-stage__product {
    transform: translateX(2%);
  }

  .compare-hero-stage__product--3 {
    left: 2%;
  }

  .compare-hero-stage__product--4 {
    left: -9%;
  }
}

/* Let editorial product compositions use the full visible RHS panel. The
   stage previously stopped at the content shell, leaving the diagonal and
   viewport edge with different padding even though the products were meant
   to read as one spread. */
@media (min-width: 721px) {
  .compare-hero-stage,
  .single-product-stage,
  .reviews-hero-stage {
    width: calc(100% + max(24px, calc((100vw - var(--shell)) / 2)));
  }
}

/* WordPress + WooCommerce production integration */

body.admin-bar .site-header {
  top: 32px;
}

.mmr-storefront .site-header,
.mmr-storefront .site-footer,
.mmr-storefront main {
  width: 100%;
}

[data-cart-action][disabled],
.button[disabled],
.purchase-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(.45);
  opacity: .55;
}

[data-cart-action].is-loading {
  cursor: progress;
}

.preview-toast.is-visible {
  pointer-events: auto;
}

.preview-toast > a {
  width: fit-content;
  margin-top: 10px;
  color: #7dd8d9;
  font-size: 12px;
  font-weight: 700;
}

.payment-fallback {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.commerce-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(116deg, transparent 0 68%, rgba(0, 136, 137, .1) 68.1% 74%, transparent 74.1%),
    var(--paper);
}

.commerce-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--charcoal);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: .98;
}

.commerce-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 54px;
}

.commerce-hero h1 {
  max-width: 760px;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .92;
}

.commerce-hero h1 span {
  color: var(--teal-dark);
}

.commerce-hero__inner > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.commerce-page {
  padding: 56px 0 88px;
  background: var(--paper-deep);
}

.commerce-page__inner {
  min-height: 340px;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(28, 31, 32, .07);
}

.commerce-page .woocommerce {
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
}

.commerce-page .woocommerce a {
  color: var(--teal-dark);
}

.commerce-page .woocommerce h2,
.commerce-page .woocommerce h3,
.commerce-page .woocommerce-checkout h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.015em;
}

.commerce-page .woocommerce-message,
.commerce-page .woocommerce-info,
.commerce-page .woocommerce-error {
  position: relative;
  margin: 0 0 28px;
  padding: 16px 18px 16px 50px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  background: #f7fbfb;
  color: var(--ink);
  list-style: none;
}

.commerce-page .woocommerce-error {
  border-top-color: #b5432d;
  background: #fff8f6;
}

.commerce-page table.shop_table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: collapse;
  border-radius: 0;
  background: var(--white);
  text-align: left;
}

.commerce-page table.shop_table th,
.commerce-page table.shop_table td {
  padding: 18px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.commerce-page table.shop_table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.commerce-page table.shop_table img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.commerce-page .quantity .qty,
.commerce-page input.input-text,
.commerce-page input[type="text"],
.commerce-page input[type="email"],
.commerce-page input[type="tel"],
.commerce-page input[type="password"],
.commerce-page select,
.commerce-page textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #bfc3c2;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.commerce-page .quantity .qty {
  width: 76px;
  text-align: center;
}

.commerce-page label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.commerce-page .button,
.commerce-page .woocommerce a.button,
.commerce-page button.button,
.commerce-page input.button,
.commerce-page #place_order {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.commerce-page .button:hover,
.commerce-page .woocommerce a.button:hover,
.commerce-page button.button:hover,
.commerce-page input.button:hover,
.commerce-page #place_order:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.commerce-page .cart-collaterals {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.commerce-page .cart_totals {
  width: min(100%, 520px);
}

.commerce-page .cart_totals h2,
.commerce-page .woocommerce-billing-fields > h3,
.commerce-page #order_review_heading {
  margin: 0 0 18px;
  font-size: 32px;
}

.commerce-page .checkout_coupon,
.commerce-page .woocommerce-form-login {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.commerce-page form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
}

.commerce-page form.checkout > #customer_details,
.commerce-page form.checkout > #order_review_heading,
.commerce-page form.checkout > #order_review {
  width: auto;
  float: none;
}

.commerce-page form.checkout > #customer_details {
  grid-row: 1 / span 2;
}

.commerce-page #order_review {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.commerce-page #payment {
  border-radius: 0;
  background: transparent;
}

.commerce-page #payment ul.payment_methods {
  padding: 18px 0;
  border-bottom-color: var(--line);
}

.commerce-page #payment div.payment_box {
  background: var(--white);
  color: var(--ink);
}

.commerce-page #payment div.payment_box::before {
  border-bottom-color: var(--white);
}

.commerce-page .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.commerce-page .woocommerce-MyAccount-navigation a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.commerce-page .woocommerce-MyAccount-navigation .is-active a {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white);
}

.commerce-page .woocommerce-MyAccount-content {
  width: 100%;
  float: none;
}

.commerce-hero--not-found .hero-actions {
  margin-top: 28px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 960px) {
  .commerce-hero::after {
    width: 18%;
    opacity: .9;
  }

  .commerce-page form.checkout {
    display: block;
  }

  .commerce-page #order_review_heading {
    margin-top: 42px;
  }
}

@media (max-width: 720px) {
  .commerce-hero__inner {
    min-height: 220px;
    padding-block: 42px;
  }

  .commerce-hero h1 {
    max-width: 82%;
    font-size: clamp(44px, 14vw, 62px);
  }

  .commerce-hero__inner > p:last-child {
    max-width: 78%;
    font-size: 15px;
  }

  .commerce-page {
    padding: 28px 0 56px;
  }

  .commerce-page__inner {
    padding: 20px 16px;
  }

  .commerce-page table.shop_table,
  .commerce-page table.shop_table tbody,
  .commerce-page table.shop_table tr,
  .commerce-page table.shop_table td {
    display: block;
    width: 100%;
  }

  .commerce-page table.shop_table thead {
    display: none;
  }

  .commerce-page table.shop_table td {
    min-height: 52px;
    padding: 14px;
    text-align: right;
  }

  .commerce-page table.shop_table td::before {
    font-weight: 700;
  }

  .commerce-page .cart-collaterals,
  .commerce-page .cart_totals {
    width: 100%;
  }

  .commerce-page #order_review {
    padding: 16px;
  }
}
