@font-face {
  font-family: "Anuphan";
  src: url("/assets/fonts/Anuphan-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --navy: #002569;
  --navy-deep: #001c50;
  --navy-soft: #173f7f;
  --red: #e44044;
  --red-action: #d4383d;
  --saffron: #d98d16;
  --ink: #121c2d;
  --muted: #5b6678;
  --line: #d7e0ec;
  --line-strong: #b8c6d9;
  --sky: #eaf1ff;
  --mist: #f5f8fc;
  --white: #fff;
  --green: #16744a;
  --green-pale: #e8f5ee;
  --amber-pale: #fff5df;
  --red-pale: #fff0f1;
  --focus: #f3a81b;
  --shadow: 0 12px 30px rgba(0, 37, 105, 0.09);
  --shadow-small: 0 6px 18px rgba(0, 37, 105, 0.08);
  --radius: 12px;
  --radius-small: 8px;
  --shell: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Anuphan", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection { color: var(--white); background: var(--navy); }
* { scrollbar-color: var(--navy-soft) var(--mist); scrollbar-width: thin; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--mist); }
*::-webkit-scrollbar-thumb { background: var(--navy-soft); border: 2px solid var(--mist); border-radius: 999px; }

img { display: block; max-width: 100%; }
button,
input,
select,
textarea { font: inherit; color: inherit; }
button,
select { cursor: pointer; }
button:disabled,
input:disabled,
select:disabled { cursor: not-allowed; opacity: 0.58; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.24em; }
a:hover { text-decoration-color: var(--red); }
p,
h1,
h2,
h3,
dl,
dd { margin-top: 0; }
h1,
h2,
h3 { line-height: 1.18; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5vw, 5.6rem); }
h2 { font-size: clamp(1.75rem, 3vw, 3.15rem); }
h3 { font-size: 1.1rem; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section-shell { padding-block: clamp(64px, 8vw, 112px); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-small);
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.35em; height: 1.35em; flex: 0 0 auto; }
.icon--large { width: 2rem; height: 2rem; }
.icon--xl { width: 3rem; height: 3rem; }
.icon--back { transform: rotate(180deg); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.button:hover:not(:disabled) { transform: translateY(-2px); text-decoration: none; }
.button--large { min-height: 54px; padding: 13px 22px; }
.button--full { width: 100%; }
.button--navy { color: var(--white); background: var(--navy); }
.button--navy:hover:not(:disabled) { background: var(--navy-deep); box-shadow: var(--shadow-small); }
.button--red { color: var(--white); background: var(--red-action); }
.button--red:hover:not(:disabled) { background: #bd292f; box-shadow: var(--shadow-small); }
.button--light { color: var(--navy); background: var(--white); border-color: rgba(255,255,255,.72); }
.button--light:hover:not(:disabled) { background: var(--sky); }
.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 650;
}
.text-button { padding: 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: .24em; }
.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}
.icon-button:hover:not(:disabled) { background: var(--sky); border-color: var(--navy); }
.icon-button--solid { color: var(--white); background: var(--navy); border-color: var(--navy); }
.icon-button--solid:hover:not(:disabled) { color: var(--navy); background: var(--white); }

.delivery-ribbon { color: var(--white); background: var(--navy); }
.delivery-ribbon__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .86rem;
}
.delivery-ribbon p,
.delivery-ribbon a { margin: 0; }
.delivery-ribbon p { display: flex; align-items: center; gap: 10px; }
.delivery-ribbon p span { color: #dce8ff; }
.delivery-ribbon a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; font-weight: 650; }

.site-header { position: sticky; z-index: 50; top: 0; background: var(--white); border-bottom: 1px solid var(--line); }
.site-header__main { min-height: 82px; display: grid; grid-template-columns: 210px minmax(300px, 1fr) auto; align-items: center; gap: 34px; }
.brand { display: block; width: 190px; text-decoration: none; }
.brand img { width: 100%; height: auto; aspect-ratio: 2.9 / 1; object-fit: contain; }
.header-search { position: relative; display: grid; min-height: 48px; grid-template-columns: 1fr 48px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); }
.header-search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,37,105,.12); }
.header-search input { width: 100%; min-width: 0; padding: 10px 16px; border: 0; outline: 0; background: transparent; }
.header-search input::placeholder { color: #687385; opacity: 1; }
.header-search button { display: grid; place-items: center; color: var(--white); background: var(--navy); border: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.locale-switch { min-width: 44px; min-height: 44px; display: grid; place-items: center; color: var(--navy); border: 1px solid var(--line); border-radius: var(--radius-small); font-weight: 700; text-decoration: none; }
.header-action { position: relative; min-width: 58px; display: grid; justify-items: center; gap: 2px; padding: 0; color: var(--navy); background: transparent; border: 0; font-size: .72rem; text-decoration: none; }
.header-action .icon { width: 1.55rem; height: 1.55rem; }
.header-action strong { position: absolute; top: -5px; right: 1px; min-width: 20px; height: 20px; display: grid; place-items: center; padding-inline: 5px; color: var(--white); background: var(--red-action); border: 2px solid var(--white); border-radius: 999px; font-size: .65rem; font-variant-numeric: tabular-nums; }
.menu-button { display: none; width: 44px; height: 44px; place-items: center; padding: 0; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-small); }
.menu-button span { display: grid; place-items: center; }
.site-header__nav { border-top: 1px solid var(--line); }
.primary-nav { min-height: 46px; display: flex; align-items: center; gap: clamp(20px, 4vw, 54px); }
.primary-nav a { color: var(--navy); font-size: .91rem; font-weight: 600; text-decoration: none; }
.primary-nav a:hover { color: var(--red-action); }
.primary-nav__account { display: none !important; }

.hero-canopy { position: relative; isolation: isolate; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-canopy__grid { position: relative; z-index: 2; min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); align-items: center; gap: clamp(42px, 6vw, 84px); padding-block: 54px; }
.hero-canopy__seams { position: absolute; z-index: 1; inset: 0; pointer-events: none; overflow: hidden; }
.hero-canopy__seams span { position: absolute; width: 920px; height: 360px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transform: rotate(-12deg); }
.hero-canopy__seams span:nth-child(1) { right: -340px; top: -115px; border-color: rgba(228,64,68,.84); }
.hero-canopy__seams span:nth-child(2) { right: -245px; top: -52px; border-color: rgba(217,141,22,.72); }
.hero-canopy__seams span:nth-child(3) { left: -430px; bottom: -300px; border-color: rgba(255,255,255,.18); }
.hero-canopy__copy { max-width: 760px; }
.hero-canopy h1 { max-width: 15ch; margin-bottom: 20px; font-size: clamp(3rem, 5vw, 4.65rem); letter-spacing: -.035em; }
.hero-canopy__lead { max-width: 60ch; margin-bottom: 26px; color: #dce8ff; font-size: clamp(1.02rem, 1.35vw, 1.18rem); }
.hero-search { position: relative; margin-block: 0 26px; }
.hero-search > label { display: block; margin-bottom: 10px; color: #dce8ff; font-weight: 600; }
.hero-search__control { min-height: 66px; display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 6px 7px 6px 18px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.hero-search__control > .icon { color: var(--navy); }
.hero-search__control input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; }
.hero-search__control input::placeholder { color: #667085; opacity: 1; }
.search-suggestions { position: absolute; z-index: 90; top: calc(100% + 8px); right: 0; left: 0; max-height: min(480px, 70vh); overflow: auto; padding: 10px; color: var(--ink); background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: 0 18px 48px rgba(0,24,70,.2); }
.search-suggestions[hidden] { display: none; }
.search-suggestion-group + .search-suggestion-group { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.search-suggestion-group h2 { margin: 0; padding: 5px 9px; color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.search-suggestion-group a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 12px; padding: 10px; color: var(--ink); border-radius: var(--radius-small); text-decoration: none; }
.search-suggestion-group a:hover, .search-suggestion-group a:focus, .search-suggestion-group a[aria-selected="true"] { color: var(--navy); background: var(--sky); outline: none; }
.search-suggestion-group a small { color: var(--muted); font-size: .75rem; }
.search-suggestion-group a span:last-child { grid-row: 1 / span 2; grid-column: 2; align-self: center; color: var(--navy); }
.hero-canopy__actions { display: flex; align-items: center; gap: 24px; }
.hero-canopy__actions p { max-width: 330px; display: flex; align-items: flex-start; gap: 10px; margin: 0; color: #dce8ff; font-size: .86rem; }
.hero-canopy__actions p .icon { margin-top: 3px; }

.delivery-dossier { color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(0,0,0,.22); overflow: hidden; }
.delivery-dossier::before { content: ""; display: block; width: 100%; height: 6px; background: var(--red); }
.delivery-dossier__header { display: flex; align-items: center; gap: 14px; padding: 28px 28px 0; color: var(--navy); }
.delivery-dossier__header h2 { margin: 0; font-size: clamp(1.55rem, 2.7vw, 2.25rem); }
.delivery-dossier > p { margin: 16px 28px 22px; color: var(--muted); }
.postcode-check { padding: 0 28px 26px; }
.postcode-check label { display: block; margin-bottom: 8px; font-size: .88rem; font-weight: 650; }
.postcode-check > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.postcode-check input { width: 100%; min-height: 48px; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); outline: 0; }
.postcode-check input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,37,105,.12); }
.field-status { min-height: 1.5em; margin: 8px 0 0; color: var(--navy); font-size: .84rem; }
.field-status.is-error { color: #a51f25; }
.field-status.is-success { color: var(--green); }
.delivery-dossier__facts { margin: 0; background: var(--mist); border-top: 1px solid var(--line); }
.delivery-dossier__facts div { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; padding: 14px 28px; border-bottom: 1px solid var(--line); }
.delivery-dossier__facts div:last-child { border-bottom: 0; }
.delivery-dossier__facts dt { color: var(--muted); font-size: .82rem; }
.delivery-dossier__facts dd { margin: 0; color: var(--navy); font-size: .86rem; font-weight: 600; }

.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { max-width: 70ch; margin-bottom: 0; color: var(--muted); }
.section-heading--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.section-heading--split > div { max-width: 820px; }
.category-route { background: var(--mist); }
.category-route__track { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-small); }
.category-route__track a { position: relative; min-height: 220px; display: grid; grid-template-rows: auto auto 1fr auto; align-content: start; gap: 8px; padding: 26px; background: var(--white); border-right: 1px solid var(--line); text-decoration: none; }
.category-route__track a:last-child { border-right: 0; }
.category-route__track a::after { content: ""; position: absolute; top: 31px; right: -7px; z-index: 2; width: 13px; height: 13px; background: var(--red); border: 3px solid var(--white); border-radius: 50%; }
.category-route__track a:last-child::after { display: none; }
.category-route__track a > span { color: var(--red-action); font-size: .82rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.category-route__track strong { color: var(--navy); font-size: 1.12rem; }
.category-route__track small { color: var(--muted); line-height: 1.55; }
.category-route__track .icon { align-self: end; color: var(--navy); }
.category-route__track a:hover { background: var(--sky); }
.brand-directory { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.trust-card { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; align-items: start; padding: 28px; color: var(--ink); background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.trust-card .icon { grid-row: 1 / span 2; width: 2rem; height: 2rem; color: var(--navy); }
.trust-card h3 { margin: 0; color: var(--navy); }
.trust-card p { margin: 0; color: var(--muted); }
.trust-card:hover { border-color: var(--navy); background: var(--sky); }

.product-shelf { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease); }
.product-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 1 / .88; display: grid; place-items: center; padding: 26px; background: var(--mist); overflow: hidden; text-decoration: none; }
.product-picture { display: contents; }
.product-card__media::after { content: ""; position: absolute; right: -80px; bottom: -68px; width: 180px; height: 116px; border: 1px solid rgba(0,37,105,.24); border-radius: 50%; transform: rotate(-18deg); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 250ms var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.status-tag { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 9px; border-radius: 999px; font-size: .72rem; font-weight: 700; line-height: 1; }
.status-tag--demo { color: #6f3d00; background: var(--amber-pale); border: 1px solid #e6c982; }
.product-card__media .status-tag { position: absolute; z-index: 2; top: 12px; left: 12px; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.product-card__brand { margin-bottom: 5px; color: var(--navy); font-size: .78rem; font-weight: 700; letter-spacing: .02em; }
.product-card h3 { min-height: 2.7em; margin-bottom: 8px; font-size: 1.02rem; }
.product-card h3 a { text-decoration: none; }
.product-card__description { display: -webkit-box; min-height: 3.1em; margin-bottom: 13px; overflow: hidden; color: var(--muted); font-size: .82rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.delivery-hint { display: flex; align-items: center; gap: 7px; margin: auto 0 16px; color: var(--navy); font-size: .76rem; font-weight: 600; }
.delivery-hint .icon { width: 1.1rem; height: 1.1rem; color: var(--red-action); }
.product-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.price-block { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.price-block strong { color: var(--navy); font-size: 1.32rem; font-variant-numeric: tabular-nums; }
.price-block del { color: var(--muted); font-size: .82rem; }
.stock-copy { margin: 10px 0 0; font-size: .75rem; font-weight: 600; }
.stock-copy.is-available { color: var(--green); }
.stock-copy.is-unavailable { color: #a51f25; }
.compare-toggle { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 13px; color: var(--navy); background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-small); font-size: .8rem; font-weight: 650; line-height: 1.2; transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease); }
.compare-toggle:hover { background: var(--sky); border-color: var(--navy); transform: translateY(-1px); }
.compare-toggle[aria-pressed="true"] { color: var(--white); background: var(--navy); border-color: var(--navy); }
.compare-toggle[aria-pressed="true"]:hover { background: var(--navy-deep); }
.compare-toggle .icon { width: 1.1rem; height: 1.1rem; }
.compare-toggle--card { width: 100%; margin-top: 12px; }
.compare-toggle--pdp { width: 100%; margin: -8px 0 16px; }
.empty-state { display: grid; justify-items: center; padding: 60px 30px; text-align: center; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); }
.empty-state > .icon { margin-bottom: 16px; color: var(--navy); }
.empty-state h2,
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { max-width: 56ch; margin-bottom: 24px; color: var(--muted); }

.evidence-field { background: var(--sky); }
.evidence-field__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: clamp(54px, 9vw, 130px); }
.evidence-field__intro h2 { margin-bottom: 18px; }
.evidence-field__intro p { max-width: 60ch; margin-bottom: 28px; color: var(--navy-soft); }
.evidence-ledger { background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.evidence-ledger div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.evidence-ledger div:last-child { border-bottom: 0; }
.evidence-ledger strong { color: var(--navy); }
.evidence-ledger span { color: var(--muted); }

.catalog-header { position: relative; overflow: hidden; background: var(--sky); border-bottom: 1px solid var(--line); }
.catalog-header__seam { position: absolute; right: -160px; top: -220px; width: 700px; height: 350px; border: 1px solid var(--red); border-radius: 50%; transform: rotate(-8deg); opacity: .55; }
.catalog-header__seam::after { content: ""; position: absolute; inset: 26px; border: 1px solid var(--saffron); border-radius: inherit; }
.catalog-header__inner { position: relative; min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 52px; }
.catalog-header h1 { margin-bottom: 10px; font-size: clamp(2.7rem, 5vw, 4.7rem); color: var(--navy); }
.catalog-header p { margin: 0; color: var(--navy-soft); }
.catalog-header__delivery { max-width: 430px; display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.catalog-header__delivery > .icon { width: 2rem; height: 2rem; color: var(--red-action); }
.catalog-header__delivery p { display: grid; gap: 2px; }
.catalog-header__delivery span { color: var(--muted); font-size: .84rem; }
.taxonomy-header + .taxonomy-results { padding-block: 42px 80px; }
.taxonomy-header .eyebrow { margin-bottom: 8px; color: var(--red-action); }
.catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 42px; padding-block: 48px 90px; }
.filter-sheet { align-self: start; }
.filter-sheet > summary { display: none; }
.filter-form { position: sticky; top: 145px; }
.filter-form__heading { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-form__heading h2 { margin: 0; font-size: 1.22rem; }
.filter-form__heading a { color: var(--navy); font-size: .78rem; }
.filter-form > label,
.filter-form fieldset { display: grid; gap: 9px; margin: 0 0 24px; padding: 0 0 24px; border: 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.filter-form legend { width: 100%; margin-bottom: 10px; color: var(--navy); font-weight: 700; }
.filter-form input[type="search"],
.filter-form input[type="number"] { width: 100%; min-height: 44px; padding: 8px 10px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); background: var(--white); }
.radio-row,
.check-row { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 9px !important; margin: 0 !important; padding: 5px 0 !important; border: 0 !important; color: var(--muted); font-size: .88rem; font-weight: 500 !important; }
.radio-row input,
.check-row input,
.consent-row input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--navy); }
.consent-row a { color: var(--navy); font-weight: 700; }
.price-range { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 8px; }
.price-range label { display: grid; gap: 6px; color: var(--muted); font-size: .75rem; }
.catalog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.catalog-toolbar h2 { margin-bottom: 3px; font-size: 1.2rem; }
.catalog-toolbar p { margin: 0; color: var(--muted); font-size: .82rem; }
.sort-form { display: flex; align-items: center; gap: 10px; }
.sort-form label { color: var(--muted); font-size: .85rem; }
.sort-form select { min-height: 44px; padding: 8px 38px 8px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); background: var(--white); }
.product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 42px; }
.pagination a { min-width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); border: 1px solid var(--line); border-radius: var(--radius-small); text-decoration: none; font-variant-numeric: tabular-nums; }
.pagination a[aria-current="page"] { color: var(--white); background: var(--navy); border-color: var(--navy); }
.empty-state--wide { min-height: 420px; align-content: center; }

.product-page { padding-block: 28px 100px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .82rem; }
.site-header + main > .breadcrumbs, main > .breadcrumbs:first-child { padding-top: 24px; }
.breadcrumbs .icon { width: .95rem; height: .95rem; }
.breadcrumbs span { color: var(--ink); }
.product-detail { display: grid; grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); gap: clamp(52px, 8vw, 112px); align-items: start; }
.product-detail__media { position: sticky; top: 156px; display: grid; place-items: center; padding: 54px; background: var(--mist); border-radius: var(--radius); overflow: hidden; }
.product-detail__media::after { content: ""; position: absolute; right: -150px; bottom: -95px; width: 440px; height: 230px; border: 1px solid rgba(0,37,105,.2); border-radius: 50%; transform: rotate(-14deg); }
.product-detail__media .status-tag { position: absolute; z-index: 3; top: 18px; left: 18px; }
.product-detail__media img { position: relative; z-index: 2; width: min(100%, 520px); max-height: 600px; object-fit: contain; }
.product-detail__media > p { position: relative; z-index: 2; align-self: end; margin: 24px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
.product-detail__category { display: inline-block; margin-bottom: 10px; color: var(--red-action); font-weight: 650; }
.product-detail__brand { margin-bottom: 5px; color: var(--navy); font-size: .88rem; font-weight: 700; }
.product-detail h1 { max-width: 18ch; margin-bottom: 18px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 4.2rem); }
.product-detail__lead { max-width: 65ch; margin-bottom: 22px; color: var(--muted); font-size: 1.04rem; }
.notice { display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius-small); }
.notice p { display: grid; gap: 2px; margin: 0; }
.notice p span { color: var(--muted); font-size: .83rem; }
.notice--demo { margin-bottom: 24px; background: var(--amber-pale); border-color: #e6c982; }
.notice--warning { margin-bottom: 22px; background: var(--red-pale); border-color: #efb4b7; }
.notice--plain { background: var(--mist); }
.product-detail__price { display: flex; align-items: baseline; gap: 12px; margin-top: 28px; }
.product-detail__price strong { color: var(--navy); font-size: 2.2rem; font-variant-numeric: tabular-nums; }
.product-detail__price del { color: var(--muted); }
.product-detail__price span { color: var(--muted); font-size: .8rem; font-weight: 700; }
.tax-note { margin: 0 0 24px; color: var(--muted); font-size: .8rem; }
.product-purchase > label { display: block; margin-bottom: 7px; font-size: .84rem; font-weight: 650; }
.product-purchase__row { display: grid; grid-template-columns: 94px minmax(0, 1fr); gap: 10px; }
.product-purchase select { width: 100%; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); background: var(--white); }
.pdp-delivery { margin-top: 24px; padding: 22px; background: var(--sky); border: 1px solid #c8d8f0; border-radius: var(--radius); }
.pdp-delivery > div:first-child { display: flex; align-items: flex-start; gap: 13px; }
.pdp-delivery > div:first-child > .icon { color: var(--red-action); }
.pdp-delivery p { display: grid; gap: 3px; margin: 0; }
.pdp-delivery p span { color: var(--navy-soft); font-size: .82rem; }
.postcode-check--compact { margin-top: 16px; padding: 0; }
.postcode-check--compact button { padding-inline: 15px; color: var(--white); background: var(--navy); border: 0; border-radius: var(--radius-small); font-weight: 650; }
.product-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 26px 0 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-facts div { min-width: 0; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-facts dt { color: var(--muted); font-size: .74rem; }
.product-facts dd { margin: 4px 0 0; color: var(--navy); font-size: .88rem; font-weight: 600; overflow-wrap: anywhere; }
.regulatory-note { display: flex; align-items: flex-start; gap: 8px; margin: 13px 0 0; color: var(--muted); font-size: .76rem; }
.regulatory-note .icon { color: var(--navy); }
.source-record { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 18px; padding: 16px; background: var(--mist); border-radius: var(--radius-small); }
.source-record p { flex: 1 1 260px; display: grid; gap: 2px; margin: 0; }
.source-record p span { color: var(--muted); font-size: .76rem; }
.source-record a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: .78rem; font-weight: 650; }
.product-record { margin-top: 90px; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); }
.record-sections { border-top: 1px solid var(--line-strong); }
.record-sections details { border-bottom: 1px solid var(--line-strong); }
.record-sections summary { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-weight: 700; list-style: none; cursor: pointer; }
.record-sections summary::-webkit-details-marker { display: none; }
.record-sections summary .icon { transition: transform 180ms var(--ease); }
.record-sections details[open] summary .icon { transform: rotate(45deg); }
.record-sections details > div { padding: 0 0 24px; color: var(--muted); }
.record-sections details > div p { max-width: 70ch; white-space: pre-line; }
.record-warning summary { color: #9a2429; }
.mobile-purchase-bar,
.mobile-checkout-bar { display: none; }

.commerce-page { padding-block: 52px 100px; }
.commerce-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.commerce-heading h1 { margin-bottom: 7px; color: var(--navy); font-size: clamp(2.5rem, 5vw, 4.6rem); }
.commerce-heading p { margin: 0; color: var(--muted); }
.empty-state--commerce { min-height: 460px; align-content: center; }
.cart-layout,
.checkout-layout,
.order-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(330px, .7fr); gap: clamp(36px, 6vw, 76px); align-items: start; }
.cart-lines { border-top: 1px solid var(--line-strong); }
.cart-line { display: grid; grid-template-columns: 110px minmax(0, 1fr) 100px 110px 44px; gap: 20px; align-items: center; padding-block: 24px; border-bottom: 1px solid var(--line); }
.cart-line__media { aspect-ratio: 1; display: grid; place-items: center; padding: 10px; background: var(--mist); border-radius: var(--radius-small); }
.cart-line__media img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__info .status-tag { margin-bottom: 7px; }
.cart-line__info p { margin: 0; color: var(--navy); font-size: .76rem; font-weight: 700; }
.cart-line__info h3 { margin: 4px 0; font-size: 1rem; }
.cart-line__info h3 a { text-decoration: none; }
.cart-line__info > span { color: var(--muted); font-size: .72rem; }
.cart-line__quantity { display: grid; justify-items: start; gap: 6px; }
.cart-line__quantity label { color: var(--muted); font-size: .72rem; }
.cart-line__quantity input { width: 72px; min-height: 40px; padding: 6px 8px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); }
.cart-line__quantity .text-button { font-size: .72rem; }
.cart-line__price { display: grid; justify-items: end; gap: 2px; }
.cart-line__price strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.cart-line__price span { color: var(--muted); font-size: .7rem; }
.cart-line__remove { color: #a51f25; }

.policy-page { padding-block: 30px 96px; }
.policy-page__header { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; max-width: 980px; margin: 42px auto 0; padding-bottom: 30px; border-bottom: 1px solid var(--line-strong); }
.policy-page__header h1 { max-width: 18ch; margin: 0 0 14px; color: var(--navy); font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.08; letter-spacing: -.035em; }
.policy-page__header p { max-width: 64ch; margin: 0; color: var(--muted); }
.policy-version { display: grid; min-width: 190px; margin: 0; border-top: 1px solid var(--line-strong); }
.policy-version div { display: flex; justify-content: space-between; gap: 20px; padding-block: 10px; border-bottom: 1px solid var(--line); }
.policy-version dt { color: var(--muted); }
.policy-version dd { margin: 0; color: var(--navy); font-weight: 700; font-variant-numeric: tabular-nums; }
.policy-document { max-width: 780px; margin: 48px auto 0; color: var(--ink); font-size: 1.04rem; line-height: 1.85; }
.policy-document p { margin: 0 0 1.5em; overflow-wrap: anywhere; }
.policy-unpublished { max-width: 780px; margin: 48px auto 0; }
.policy-directory { display: flex; max-width: 980px; flex-wrap: wrap; gap: 10px; margin: 58px auto 0; padding-top: 22px; border-top: 1px solid var(--line); }
.policy-directory a { min-height: 44px; padding: 10px 14px; color: var(--navy); border: 1px solid var(--line-strong); border-radius: var(--radius-small); font-weight: 700; text-decoration: none; }
.policy-directory a:hover, .policy-directory a[aria-current="page"] { color: var(--white); background: var(--navy); border-color: var(--navy); }
.order-summary { position: sticky; top: 156px; padding: 26px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); }
.order-summary h2 { margin-bottom: 22px; font-size: 1.38rem; }
.order-summary dl { margin: 0; }
.order-summary dl > div { display: flex; justify-content: space-between; gap: 20px; padding-block: 10px; color: var(--muted); }
.order-summary dd { margin: 0; color: var(--ink); font-variant-numeric: tabular-nums; }
.order-summary__total { margin-top: 9px; padding-top: 18px !important; color: var(--ink) !important; border-top: 1px solid var(--line-strong); font-weight: 700; }
.order-summary__total dd { color: var(--navy); font-size: 1.35rem; }
.order-summary__note { margin: 18px 0; color: var(--muted); font-size: .78rem; }
.instant-summary { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; padding: 14px; color: var(--navy); background: var(--sky); border-radius: var(--radius-small); }
.instant-summary > .icon { color: var(--red-action); }
.instant-summary p { display: grid; gap: 2px; margin: 0; }
.instant-summary span { font-size: .74rem; }
.secure-note { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0 0; color: var(--muted); font-size: .75rem; }

.checkout-layout { grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); }
.checkout-form { display: grid; gap: 28px; }
.checkout-section { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.checkout-section__heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.checkout-section__heading > span { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-size: .82rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.checkout-section__heading h2 { margin: 0 0 4px; font-size: 1.35rem; }
.checkout-section__heading p { margin: 0; color: var(--muted); font-size: .84rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; align-content: start; gap: 7px; color: var(--ink); font-size: .84rem; font-weight: 600; }
.field--wide { grid-column: 1 / -1; }
.field input,
.field textarea,
.field select,
.static-field { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); background: var(--white); outline: 0; font-weight: 450; }
.field textarea { resize: vertical; }
.static-field { color: var(--muted); background: var(--mist); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,37,105,.12); }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--red-action); }
.field small { min-height: 1.2em; color: #a51f25; font-weight: 500; }
.delivery-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.delivery-option { position: relative; min-height: 118px; display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 11px; padding: 18px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); cursor: pointer; }
.delivery-option:has(input:checked) { background: var(--sky); border-color: var(--navy); }
.delivery-option.is-disabled { background: var(--mist); }
.delivery-option input { margin-top: 5px; accent-color: var(--navy); }
.delivery-option > span { color: var(--navy); }
.delivery-option p { display: grid; gap: 4px; margin: 0; }
.delivery-option small { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.eligibility-result { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; padding: 13px 14px; color: var(--navy); background: var(--mist); border-radius: var(--radius-small); }
.eligibility-result p { margin: 0; font-size: .82rem; }
.eligibility-result.is-eligible { color: var(--green); background: var(--green-pale); }
.eligibility-result.is-standard { color: #815100; background: var(--amber-pale); }
.delivery-capacity-note { display: flex; align-items: flex-start; gap: 9px; margin: 10px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.delivery-capacity-note .icon { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--navy); }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--muted); font-size: .82rem; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: #a51f25; font-size: .84rem; text-align: center; }
.checkout-summary__items { display: grid; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.checkout-summary__items > div { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: start; }
.checkout-summary__items > div > span { color: var(--muted); }
.checkout-summary__items p { display: grid; gap: 2px; margin: 0; }
.checkout-summary__items small { color: var(--muted); }
.checkout-summary__items b { color: var(--navy); font-variant-numeric: tabular-nums; }

.checkout-account-note { align-items: center; margin-bottom: -8px; background: var(--sky); border-color: #c8d8f0; }
.checkout-account-note p { flex: 1; }
.checkout-account-note > a { flex: 0 0 auto; color: var(--navy); font-size: .8rem; font-weight: 700; }
.checkout-guest-note { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; margin-bottom: -8px; padding: 11px 14px; color: var(--muted); background: var(--mist); border-radius: var(--radius-small); font-size: .8rem; }
.checkout-guest-note a { color: var(--navy); font-weight: 700; }
.saved-address-picker { margin: 0 0 24px; padding: 0 0 22px; border: 0; border-bottom: 1px solid var(--line); }
.saved-address-picker legend { margin-bottom: 10px; color: var(--navy); font-size: .84rem; font-weight: 700; }
.saved-address-picker__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.saved-address-option { min-width: 0; display: flex; align-items: flex-start; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: var(--radius-small); cursor: pointer; }
.saved-address-option:has(input:checked) { background: var(--sky); border-color: var(--navy); }
.saved-address-option.is-unavailable { cursor: not-allowed; background: #f7f8fa; border-style: dashed; }
.saved-address-option.is-unavailable input { cursor: not-allowed; }
.saved-address-option.is-unavailable > span > :not(.saved-address-option__unavailable) { opacity: .68; }
.saved-address-option .saved-address-option__unavailable { color: var(--red-action); font-weight: 650; }
.saved-address-option input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--navy); }
.saved-address-option > span { min-width: 0; display: grid; gap: 3px; }
.saved-address-option strong { color: var(--navy); font-size: .84rem; }
.saved-address-option strong em { margin-left: 5px; padding: 2px 6px; color: var(--green); background: var(--green-pale); border-radius: 999px; font-size: .65rem; font-style: normal; }
.saved-address-option small { color: var(--muted); font-size: .74rem; overflow-wrap: anywhere; }
.saved-address-picker > .text-link { font-size: .78rem; }
.field small[data-market-currency-note],
.field small[data-market-country-status] { color: var(--muted); }
.field small[data-market-country-status].is-error { color: #a51f25; }
.market-quote-facts { display: grid; gap: 7px; margin-top: 16px; padding: 14px; color: var(--navy); background: var(--sky); border-radius: var(--radius-small); font-size: .76rem; }
.market-quote-facts p { margin: 0; }
.market-quote-facts [data-duties-note] { padding-top: 7px; border-top: 1px solid rgba(0,37,105,.14); }
.market-quote-facts [data-duties-note].is-warning { color: #754b00; }
.market-quote-facts .text-button { justify-self: start; min-height: 40px; color: var(--navy); font-weight: 700; }
.market-order-notice { margin-top: 16px; }
.address-card__country { color: var(--navy); font-weight: 650; }

.account-button-outline { color: var(--navy); background: var(--white); border-color: var(--line-strong); }
.account-button-outline:hover:not(:disabled) { background: var(--sky); border-color: var(--navy); }
.order-dossier > .button + .button { margin-top: 10px; }
.eyebrow { margin: 0 0 8px; color: var(--red-action); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.account-page { min-height: 62vh; background: var(--white); }
.account-auth { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr); gap: clamp(56px, 8vw, 120px); align-items: start; padding-block: clamp(52px, 7vw, 96px); }
.account-auth__intro { position: sticky; top: 150px; padding: 24px 0; }
.account-auth__intro h1 { max-width: 13ch; margin-bottom: 18px; color: var(--navy); font-size: clamp(2.8rem, 5vw, 5rem); }
.account-auth__intro > p:not(.eyebrow) { max-width: 62ch; color: var(--muted); font-size: 1rem; }
.account-auth__facts { max-width: 650px; margin: 34px 0; border-top: 1px solid var(--line); }
.account-auth__facts > div { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 13px; padding-block: 17px; border-bottom: 1px solid var(--line); }
.account-auth__facts dt { color: var(--navy); }
.account-auth__facts dd { display: grid; gap: 3px; margin: 0; }
.account-auth__facts dd strong { color: var(--navy); }
.account-auth__facts dd span { color: var(--muted); font-size: .8rem; }
.account-auth__panel { padding: 30px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.account-auth__tabs { display: grid; grid-template-columns: 1fr 1fr; margin: -8px 0 26px; border-bottom: 1px solid var(--line-strong); }
.account-auth__tabs a { padding: 13px 10px; color: var(--muted); font-weight: 700; text-align: center; text-decoration: none; }
.account-auth__tabs a[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -3px var(--red-action); }
.account-auth__notice { margin-bottom: 24px; background: var(--white); }
.phone-auth { display: grid; gap: 18px; margin-bottom: 26px; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); }
.phone-auth__heading { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 13px; align-items: center; }
.phone-auth__heading h2 { margin: 0 0 3px; color: var(--navy); font-size: 1.14rem; }
.phone-auth__heading p { margin: 0; color: var(--muted); font-size: .82rem; }
.phone-auth__mark { display: grid; width: 42px; height: 42px; color: var(--white); background: var(--navy); border-radius: 50%; place-items: center; }
.phone-auth__mark .icon { width: 21px; height: 21px; }
.phone-auth__form { display: grid; gap: 14px; }
.phone-auth__input { position: relative; display: grid; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-small); transition: border-color 180ms ease, box-shadow 180ms ease; }
.phone-auth__input:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0, 37, 105, .12); }
.phone-auth__input input { width: 100%; min-width: 0; border: 0; box-shadow: none; }
.phone-auth__input input:focus { box-shadow: none; }
.phone-auth__number > small { grid-column: 1 / -1; }
.phone-auth__consent { margin: 0; padding: 12px; color: var(--muted); background: var(--mist); border-radius: var(--radius-small); font-size: .76rem; }
.phone-auth__consent a { color: var(--navy); font-weight: 700; }
.phone-auth__policy-note { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 9px; align-items: start; padding: 11px 12px; color: var(--navy-soft); background: var(--sky); border-radius: var(--radius-small); }
.phone-auth__policy-note .icon { margin-top: 2px; }
.phone-auth__policy-note p { margin: 0; font-size: .78rem; }
.phone-auth__verify { display: grid; gap: 14px; }
.phone-auth__verify[hidden], [data-phone-start-panel][hidden] { display: none; }
.phone-auth__back { justify-self: start; display: inline-flex; gap: 7px; align-items: center; min-height: 44px; padding: 0; color: var(--navy); background: transparent; border: 0; font-weight: 700; }
.phone-auth__back .icon { width: 18px; transform: rotate(180deg); }
.phone-auth__sent { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: center; padding: 12px; color: var(--green); background: var(--green-pale); border-radius: var(--radius-small); }
.phone-auth__sent > span { display: grid; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; place-items: center; }
.phone-auth__sent p { display: grid; gap: 1px; margin: 0; }
.phone-auth__sent small { color: var(--ink); font-size: .76rem; font-variant-numeric: tabular-nums; }
.phone-auth__pin { min-height: 58px; text-align: center; font-size: 1.6rem; font-weight: 750; letter-spacing: .28em; font-variant-numeric: tabular-nums; }
.phone-auth__resend { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; justify-content: space-between; color: var(--muted); font-size: .78rem; }
.phone-auth__resend button { min-height: 44px; padding: 0; color: var(--navy); background: transparent; border: 0; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.phone-auth__resend button:disabled { color: var(--muted); text-decoration: none; cursor: wait; }
.phone-auth__form .form-status { margin: 0; text-align: left; }
.phone-auth__form .form-status.is-success { color: var(--green); }
.phone-auth__form .form-status.is-error { color: #a51f25; }
.account-auth__divider { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin: 0 0 24px; color: var(--muted); font-size: .76rem; }
.account-auth__divider::before, .account-auth__divider::after { height: 1px; background: var(--line-strong); content: ''; }
.account-form { display: grid; gap: 16px; }
.account-form .form-status { margin: 0; text-align: left; }
.account-form .form-status.is-success { color: var(--green); }
.account-form .form-status.is-error { color: #a51f25; }
.account-form__support { display: flex; justify-content: flex-end; margin-top: -7px; font-size: .78rem; }
.account-form__support a, .account-form__back { color: var(--navy); font-weight: 650; }
.account-form__back { margin-top: 3px; font-size: .8rem; }
.account-recovery-link { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 10px; margin-top: 24px; padding-top: 18px; color: var(--muted); border-top: 1px solid var(--line); font-size: .8rem; }
.account-recovery-link a { color: var(--navy); font-weight: 700; }
.account-sidebar__identity small { display: block; margin-top: 4px; color: var(--green); font-size: .72rem; }
.account-mobile-identity { display: grid; gap: 2px; min-height: 0; }
.account-mobile-identity > span { color: var(--muted); font-size: .78rem; }
.account-mobile-identity > strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.account-mobile-identity > small { color: var(--green); }
.account-phone-only { display: grid; align-content: start; justify-items: start; }
.account-phone-only > .icon { width: 34px; height: 34px; margin-bottom: 14px; padding: 7px; color: var(--navy); background: var(--sky); border-radius: 50%; }
.account-phone-only p { color: var(--muted); }
.account-panel-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 7px; }
.account-panel-heading > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--navy); background: var(--sky); border-radius: 50%; }
.account-panel-heading h2 { margin: 0 0 3px; color: var(--navy); font-size: 1.35rem; }
.account-panel-heading p { margin: 0; color: var(--muted); font-size: .8rem; }
.account-token-card { display: grid; justify-items: center; padding: 18px 6px 8px; text-align: center; }
.account-token-card > span { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 16px; color: var(--green); background: var(--green-pale); border-radius: 50%; }
.account-token-card h2 { margin-bottom: 7px; color: var(--navy); font-size: 1.55rem; }
.account-token-card p { color: var(--muted); }

.account-canopy { color: var(--white); background: var(--navy); border-bottom: 5px solid var(--red); }
.account-canopy__inner { min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 42px; }
.account-canopy .eyebrow { color: #ffd17a; }
.account-canopy h1 { margin: 0 0 8px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.account-canopy p:last-child { margin: 0; color: #dce8ff; }
.account-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: start; padding-block: 50px 100px; }
.account-sidebar { position: sticky; top: 150px; }
.account-nav { display: grid; border-top: 1px solid var(--line-strong); }
.account-nav a { display: flex; align-items: center; gap: 11px; min-height: 52px; padding: 10px 9px; color: var(--muted); border-bottom: 1px solid var(--line); text-decoration: none; }
.account-nav a[aria-current="page"] { color: var(--navy); background: var(--sky); box-shadow: inset 3px 0 var(--red-action); font-weight: 700; }
.account-sidebar__identity { display: grid; gap: 2px; margin-top: 22px; padding: 13px; background: var(--mist); border-radius: var(--radius-small); overflow-wrap: anywhere; }
.account-sidebar__identity span { color: var(--muted); font-size: .7rem; }
.account-sidebar__identity strong { color: var(--navy); font-size: .76rem; }
.account-main { min-width: 0; }
.account-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line-strong); }
.account-section__heading h2 { margin: 0 0 6px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.3rem); }
.account-section__heading h3 { margin: 0 0 5px; color: var(--navy); font-size: 1.35rem; }
.account-section__heading p:not(.eyebrow) { max-width: 68ch; margin: 0; color: var(--muted); }
.account-action-banner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; margin-bottom: 22px; background: var(--sky); }
.account-action-banner .form-status { grid-column: 2 / -1; min-height: 0; text-align: left; }
.account-flash { margin-bottom: 22px; color: var(--green); background: var(--green-pale); border-color: #bddfce; }
.account-empty { min-height: 350px; }
.empty-state__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.account-order-list { border-top: 1px solid var(--line-strong); }
.account-order-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; padding: 22px 4px; border-bottom: 1px solid var(--line); }
.account-order-row > div { display: grid; align-content: start; gap: 4px; }
.account-order-row > div:last-child { justify-items: end; }
.account-order-row span:not(.order-status):not(.refund-status), .account-order-row time { color: var(--muted); font-size: .74rem; }
.account-order-row strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.account-order-row .text-link { font-size: .78rem; }
.account-order-financial { display: grid; justify-items: inherit; gap: 1px; }
.account-order-financial small { color: var(--muted); font-size: .7rem; font-variant-numeric: tabular-nums; }
.account-recovery-panel { margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.account-recovery-panel > summary { display: flex; align-items: center; gap: 10px; padding: 16px 18px; color: var(--navy); font-weight: 700; cursor: pointer; list-style: none; }
.account-recovery-panel > summary::-webkit-details-marker { display: none; }
.account-recovery-panel[open] > summary { border-bottom: 1px solid var(--line); }
.account-recovery-panel[open] > summary .icon { transform: rotate(45deg); }
.account-recovery-panel > form { padding: 22px; }
.account-recovery-panel > form > p { margin: 0; color: var(--muted); }
.address-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.address-card { min-width: 0; padding: 21px; border: 1px solid var(--line); border-radius: var(--radius); }
.address-card__heading { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.address-card__heading h3 { margin: 0; color: var(--navy); }
.address-card__heading span { align-self: start; padding: 3px 8px; color: var(--green); background: var(--green-pale); border-radius: 999px; font-size: .68rem; font-weight: 700; }
.address-card address { min-height: 120px; display: grid; align-content: start; gap: 3px; color: var(--muted); font-size: .8rem; font-style: normal; overflow-wrap: anywhere; }
.address-card address strong { color: var(--ink); }
.address-card__edit, .address-card__delete { border-top: 1px solid var(--line); }
.address-card__edit > summary, .address-card__delete > summary { min-height: 44px; display: flex; align-items: center; gap: 7px; color: var(--navy); font-size: .78rem; font-weight: 700; cursor: pointer; list-style: none; }
.address-card__edit > summary::-webkit-details-marker, .address-card__delete > summary::-webkit-details-marker { display: none; }
.address-card__edit[open] > summary .icon { transform: rotate(45deg); }
.address-card__edit > div { padding: 10px 0 6px; }
.address-card__delete { border-top: 0; }
.address-card__delete > summary { min-height: 34px; color: #a51f25; font-weight: 600; }
.address-card__delete > div { padding: 10px 12px; background: var(--red-pale); border-radius: var(--radius-small); }
.address-card__delete p { margin-bottom: 8px; color: var(--muted); font-size: .76rem; }
.address-card__delete .text-button { color: #9f2228; font-size: .76rem; }
.address-card .account-address-form .form-grid { grid-template-columns: 1fr; }
.address-card .field--wide { grid-column: auto; }
.account-default-check { margin-top: 2px !important; }
.account-add-address { margin-top: 38px; padding: 26px; background: var(--mist); border-radius: var(--radius); }
.account-add-address .account-section__heading { margin-bottom: 22px; }
.account-settings-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.account-settings-card { align-content: start; padding: 24px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); }
.account-settings-card h3 { margin-bottom: 5px; color: var(--navy); font-size: 1.35rem; }
.account-verification { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; margin-bottom: 22px; }
.account-verification form { display: flex; align-items: center; gap: 10px; }
.account-verification .form-status { min-height: 0; margin: 0; text-align: left; }
.account-order-loading { min-height: 260px; display: grid; place-items: center; align-content: center; color: var(--muted); background: var(--mist); border-radius: var(--radius); }
.account-order-loading .icon { color: var(--navy); }
.account-order-loading p { margin: 10px 0 0; }
.account-order-detail .order-layout { margin-top: 0; }
.account-order-detail .order-record { min-width: 0; }
.account-order-detail .order-dossier { align-self: start; }
.account-order-detail .order-dossier address { color: var(--muted); font-size: .78rem; font-style: normal; }

.shipment-dossier { margin-top: 24px; padding: 24px 28px; background: var(--sky); border: 1px solid #c8d8f0; border-radius: var(--radius); }
.delivery-capacity-dossier { margin-top: 24px; padding: 24px 28px; color: var(--navy); background: var(--sky); border: 1px solid #c8d8f0; border-radius: var(--radius); }
.delivery-capacity-dossier--confirmed { background: var(--green-pale); border-color: #bddfce; }
.delivery-capacity-dossier--released { background: var(--mist); border-color: var(--line); }
.delivery-capacity-dossier--exception { background: var(--amber-pale); border-color: #e6c982; }
.delivery-capacity-dossier__heading { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: start; gap: 13px; padding-bottom: 17px; border-bottom: 1px solid rgba(0,37,105,.14); }
.delivery-capacity-dossier__heading > .icon { color: var(--navy); }
.delivery-capacity-dossier__heading h2,
.delivery-capacity-dossier__heading h3,
.delivery-capacity-dossier__heading p { margin: 0; }
.delivery-capacity-dossier__heading h2,
.delivery-capacity-dossier__heading h3 { font-size: 1.35rem; }
.delivery-capacity-dossier__heading p { max-width: 72ch; margin-top: 3px; color: var(--navy-soft); font-size: .8rem; }
.delivery-capacity-dossier__heading > span { padding: 5px 9px; color: var(--navy); background: var(--white); border: 1px solid rgba(0,37,105,.16); border-radius: 999px; font-size: .72rem; font-weight: 700; }
.delivery-capacity-dossier > dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding-top: 18px; }
.delivery-capacity-dossier > dl > div { display: grid; gap: 3px; padding: 4px 18px 4px 0; }
.delivery-capacity-dossier dt { color: var(--navy-soft); font-size: .72rem; }
.delivery-capacity-dossier dd { margin: 0; font-size: .86rem; font-weight: 650; }
.delivery-capacity-dossier__notice { margin-top: 15px; padding: 12px 14px; color: var(--navy); background: var(--white); border-radius: var(--radius-small); }
.delivery-capacity-dossier__notice strong,
.delivery-capacity-dossier__notice p { margin: 0; }
.delivery-capacity-dossier__notice p { font-size: .78rem; }
.delivery-capacity-dossier__qualifier { margin: 16px 0 0; color: var(--navy-soft); font-size: .75rem; }
.shipment-dossier__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid #c8d8f0; }
.shipment-dossier__heading > div { display: flex; align-items: flex-start; gap: 13px; }
.shipment-dossier__heading > div > .icon { color: var(--navy); }
.shipment-dossier__heading h2,
.shipment-dossier__heading h3 { margin: 0 0 4px; color: var(--navy); font-size: 1.45rem; }
.shipment-dossier__heading p { margin: 0; color: var(--navy-soft); font-size: .8rem; }
.shipment-status { display: inline-flex; min-height: 30px; align-items: center; flex: 0 0 auto; padding: 5px 10px; color: #815100; background: var(--amber-pale); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.shipment-status--shipped { color: var(--navy); background: var(--white); }
.shipment-status--delivered { color: var(--green); background: var(--green-pale); }
.shipment-dossier__body { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(390px, 1.2fr); gap: clamp(30px, 6vw, 74px); padding-top: 20px; }
.shipment-facts { margin: 0; }
.shipment-facts > div { display: grid; grid-template-columns: minmax(105px, .7fr) minmax(0, 1.3fr); gap: 14px; padding-block: 8px; border-bottom: 1px solid rgba(0,37,105,.12); }
.shipment-facts dt { color: var(--navy-soft); font-size: .76rem; }
.shipment-facts dd { min-width: 0; margin: 0; color: var(--navy); font-size: .82rem; font-weight: 650; overflow-wrap: anywhere; }
.shipment-facts .text-link { font-size: .78rem; }
.shipment-timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-self: start; margin: 0; padding: 0; list-style: none; }
.shipment-timeline li { position: relative; min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 9px; color: var(--muted); }
.shipment-timeline li:not(:last-child)::after { content: ""; position: absolute; z-index: 0; top: 16px; left: 34px; right: -2px; height: 1px; background: var(--line-strong); }
.shipment-timeline li.is-reached:not(:last-child)::after { background: var(--green); }
.shipment-timeline li > span { position: relative; z-index: 1; width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted); background: var(--white); border: 1px solid var(--line-strong); border-radius: 50%; }
.shipment-timeline li.is-reached > span { color: var(--green); background: var(--green-pale); border-color: #bddfce; }
.shipment-timeline__marker::after { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.shipment-timeline li.is-reached > .shipment-timeline__marker::after { width: 9px; height: 5px; background: transparent; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; border-radius: 0; transform: rotate(-45deg) translate(1px, -1px); }
.shipment-timeline .icon { width: 17px; height: 17px; }
.shipment-timeline li > div { min-width: 0; display: grid; align-content: start; gap: 2px; padding-right: 8px; }
.shipment-timeline strong { color: var(--navy); font-size: .8rem; }
.shipment-timeline small { font-size: .68rem; line-height: 1.4; overflow-wrap: anywhere; }

.refund-dossier { margin-top: 24px; padding: 24px 28px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); }
.refund-dossier--requested { background: var(--sky); border-color: #c8d8f0; }
.refund-dossier--partially_refunded,
.refund-dossier--refunded { background: var(--green-pale); border-color: #bddfce; }
.refund-dossier--manual_review { background: var(--amber-pale); border-color: #e6c982; }
.refund-dossier__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(0,37,105,.14); }
.refund-dossier__heading > div { min-width: 0; display: flex; align-items: flex-start; gap: 13px; }
.refund-dossier__heading > div > .icon { color: var(--navy); }
.refund-dossier__heading h2,
.refund-dossier__heading h3 { margin: 0 0 4px; color: var(--navy); font-size: 1.45rem; }
.refund-dossier__heading p { max-width: 74ch; margin: 0; color: var(--navy-soft); font-size: .8rem; }
.refund-status { display: inline-flex; min-height: 30px; align-items: center; flex: 0 0 auto; padding: 5px 10px; color: var(--navy); background: var(--white); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.refund-status--requested,
.refund-status--manual_review { color: #6f3d00; background: var(--amber-pale); }
.refund-status--partially_refunded,
.refund-status--refunded { color: var(--green); background: var(--white); }
.refund-dossier__body { padding-top: 20px; }
.refund-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-block: 1px solid rgba(0,37,105,.14); }
.refund-facts > div { min-width: 0; padding: 14px 16px; border-inline-end: 1px solid rgba(0,37,105,.14); }
.refund-facts > div:last-child { border-inline-end: 0; }
.refund-facts dt { color: var(--navy-soft); font-size: .72rem; }
.refund-facts dd { margin: 3px 0 0; color: var(--navy); font-size: .92rem; font-weight: 700; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.refund-latest { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 18px; align-items: center; padding-top: 18px; }
.refund-latest strong { color: var(--navy); }
.refund-latest span { color: var(--navy); font-weight: 750; font-variant-numeric: tabular-nums; }
.refund-latest time { color: var(--muted); font-size: .75rem; }
.refund-dossier__notice { display: grid; gap: 2px; margin-top: 18px; padding: 13px 15px; color: var(--navy); background: var(--white); border-radius: var(--radius-small); }
.refund-dossier__notice--warning { color: #6f3d00; background: var(--amber-pale); }
.refund-dossier__notice span { color: inherit; font-size: .78rem; }
.refund-policy-link { margin-top: 18px; }

.order-page { padding-block: 64px 110px; }
.order-hero { position: relative; overflow: hidden; display: flex; align-items: center; gap: 24px; padding: 36px; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.order-hero::after { content: ""; position: absolute; right: -120px; top: -125px; width: 420px; height: 220px; border: 1px solid var(--red); border-radius: 50%; transform: rotate(-12deg); }
.order-hero__mark { width: 74px; height: 74px; flex: 0 0 auto; display: grid; place-items: center; color: var(--navy); background: var(--white); border-radius: 50%; }
.order-hero > div:last-child { position: relative; z-index: 2; }
.order-number { margin: 0 0 4px; color: #dce8ff; font-weight: 650; font-variant-numeric: tabular-nums; }
.order-hero h1 { margin-bottom: 6px; font-size: clamp(2rem, 4vw, 3.6rem); }
.order-hero p:last-child { margin: 0; color: #dce8ff; }
.order-layout { margin-top: 42px; }
.order-record { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.order-record .section-heading { margin-bottom: 20px; }
.order-status { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 11px; color: var(--navy); background: var(--sky); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.order-status--completed,
.order-status--paid { color: var(--green); background: var(--green-pale); }
.order-status--payment_failed,
.order-status--cancelled { color: #9f2228; background: var(--red-pale); }
.order-items { border-top: 1px solid var(--line); }
.order-item { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; gap: 14px; padding-block: 17px; border-bottom: 1px solid var(--line); }
.order-item > span { color: var(--muted); }
.order-item > div { display: grid; gap: 2px; }
.order-item small { color: var(--muted); }
.order-item b { color: var(--navy); font-variant-numeric: tabular-nums; }
.order-totals { width: min(100%, 440px); margin: 24px 0 0 auto; }
.order-totals > div { display: flex; justify-content: space-between; gap: 20px; padding-block: 7px; }
.order-totals dd { margin: 0; font-variant-numeric: tabular-nums; }
.order-totals__grand { margin-top: 8px; padding-top: 15px !important; border-top: 1px solid var(--line-strong); color: var(--navy); font-size: 1.18rem; font-weight: 700; }
.order-dossier { padding: 26px; background: var(--mist); border-radius: var(--radius); }
.order-dossier h2 { margin-bottom: 18px; font-size: 1.35rem; }
.order-dossier dl { margin: 0 0 22px; }
.order-dossier dl > div { padding-block: 10px; border-bottom: 1px solid var(--line); }
.order-dossier dt { color: var(--muted); font-size: .76rem; }
.order-dossier dd { margin: 2px 0 0; color: var(--navy); font-weight: 600; overflow-wrap: anywhere; }
.order-dossier .notice { margin-bottom: 18px; }

.site-footer { color: #dce8ff; background: var(--navy-deep); }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: clamp(32px, 6vw, 80px); padding-block: 70px 56px; }
.site-footer__brand img { width: 180px; height: auto; aspect-ratio: 2.9 / 1; object-fit: contain; background: var(--white); border-radius: 6px; }
.site-footer__brand p { max-width: 42ch; margin: 18px 0 0; }
.site-footer h2 { margin-bottom: 16px; color: var(--white); font-size: 1rem; }
.site-footer a { display: block; width: fit-content; margin-block: 9px; color: #dce8ff; }
.site-footer p { font-size: .82rem; }
.footer-pending { margin-top: 16px; color: #aebfdb; }
.site-footer__legal { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.site-footer__legal p { margin: 0; color: #aebfdb; }
.toast-region { position: fixed; z-index: 200; right: 20px; bottom: 20px; width: min(380px, calc(100% - 40px)); display: grid; gap: 10px; pointer-events: none; }
.toast { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; color: var(--white); background: var(--navy); border-radius: var(--radius-small); box-shadow: 0 12px 30px rgba(0,0,0,.24); animation: toast-in 320ms var(--ease); }
.toast.is-error { background: #9f2228; }
.toast p { margin: 0; }
@keyframes toast-in { from { opacity: 0; transform: translateY(14px); } }

.compare-tray { position: fixed; z-index: 90; right: 18px; bottom: 18px; left: 18px; color: var(--white); background: var(--navy-deep); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(0,28,80,.24); }
.compare-tray[hidden] { display: none; }
.compare-tray__inner { min-height: 98px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 22px; padding-block: 14px; }
.compare-tray__heading { display: flex; align-items: center; gap: 12px; }
.compare-tray__heading > .icon { color: #aecaef; }
.compare-tray__heading p { display: grid; gap: 2px; margin: 0; line-height: 1.25; }
.compare-tray__heading span { color: #cfdbef; font-size: .75rem; }
.compare-tray__heading b { color: var(--white); font-variant-numeric: tabular-nums; }
.compare-tray__items { min-width: 0; display: flex; gap: 8px; margin: 0; padding: 0; overflow-x: auto; list-style: none; scroll-snap-type: x proximity; }
.compare-tray__item { min-width: 156px; max-width: 210px; display: grid; grid-template-columns: 38px minmax(0, 1fr) 36px; align-items: center; gap: 8px; padding: 7px; color: var(--ink); background: var(--white); border-radius: var(--radius-small); scroll-snap-align: start; }
.compare-tray__item img { width: 38px; height: 38px; object-fit: contain; background: var(--mist); border-radius: 6px; }
.compare-tray__item p { display: grid; min-width: 0; gap: 1px; margin: 0; line-height: 1.2; }
.compare-tray__item strong { overflow: hidden; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.compare-tray__item span { overflow: hidden; color: var(--muted); font-size: .64rem; text-overflow: ellipsis; white-space: nowrap; }
.compare-tray__remove { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; color: var(--navy); background: transparent; border: 0; border-radius: 6px; }
.compare-tray__remove:hover { background: var(--sky); }
.compare-tray__remove .icon { width: 1rem; height: 1rem; }
.compare-tray__actions { display: flex; align-items: center; gap: 13px; }
.compare-tray__actions .text-button { min-height: 44px; color: #e4ecfa; }
.compare-tray__actions .button { white-space: nowrap; color: var(--navy); background: var(--white); }
.compare-tray__actions .button:hover { background: var(--sky); }
.compare-tray__actions .button.is-disabled { pointer-events: none; opacity: .56; }
body.has-compare-tray { padding-bottom: 130px; }

.compare-hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.compare-hero__seam { position: absolute; top: -250px; right: -180px; width: 780px; height: 430px; border: 1px solid rgba(228,64,68,.9); border-radius: 50%; transform: rotate(-8deg); }
.compare-hero__seam::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(217,141,22,.8); border-radius: inherit; }
.compare-hero__inner { position: relative; min-height: 340px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .6fr); align-items: center; gap: clamp(42px, 8vw, 110px); padding-block: 52px; }
.compare-hero .breadcrumbs { margin-bottom: 24px; color: #dce8ff; }
.compare-hero .breadcrumbs span { color: var(--white); }
.compare-hero h1 { max-width: 13ch; margin-bottom: 14px; font-size: clamp(2.8rem, 5vw, 5rem); }
.compare-hero__inner > div:first-of-type > p { max-width: 65ch; margin: 0; color: #dce8ff; }
.compare-hero__proof { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; padding: 20px; color: var(--navy); background: var(--white); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(0,0,0,.2); }
.compare-hero__proof > .icon { color: var(--red-action); }
.compare-hero__proof p { display: grid; gap: 3px; margin: 0; }
.compare-hero__proof span { color: var(--muted); font-size: .82rem; }
.compare-page { padding-block: 42px 110px; }
.compare-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px 28px; margin-bottom: 24px; }
.compare-toolbar > p:first-child { display: grid; gap: 2px; margin: 0; }
.compare-toolbar > p:first-child strong { color: var(--navy); }
.compare-toolbar > p:first-child span { color: var(--muted); font-size: .82rem; }
.compare-toolbar > div { display: flex; align-items: center; gap: 18px; }
.compare-share { color: var(--navy); border-color: var(--line-strong); }
.compare-toolbar__status { grid-column: 1 / -1; min-height: 1em; margin: -8px 0 0; color: var(--green); font-size: .78rem; text-align: right; }
.compare-matrix { overflow: clip; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.compare-row { display: grid; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-matrix--2 .compare-row { grid-template-columns: 210px repeat(2, minmax(0, 1fr)); }
.compare-matrix--3 .compare-row { grid-template-columns: 210px repeat(3, minmax(0, 1fr)); }
.compare-matrix--4 .compare-row { grid-template-columns: 190px repeat(4, minmax(0, 1fr)); }
.compare-row__label { padding: 18px; color: var(--navy); background: var(--sky); border-right: 1px solid var(--line); font-size: .82rem; font-weight: 700; }
.compare-cell { min-width: 0; padding: 18px; border-right: 1px solid var(--line); overflow-wrap: anywhere; }
.compare-cell:last-child { border-right: 0; }
.compare-cell__product { display: none; }
.compare-row:nth-child(2n + 3) .compare-cell { background: var(--mist); }
.compare-row--products { position: sticky; z-index: 5; top: 143px; background: var(--white); }
.compare-row--products > .compare-row__label { display: flex; align-items: flex-end; }
.compare-product { position: relative; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 18px; border-right: 1px solid var(--line); }
.compare-product:last-child { border-right: 0; }
.compare-product__index { position: absolute; top: 12px; left: 12px; z-index: 2; width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.compare-product__media { width: 100%; aspect-ratio: 1.55; display: grid; place-items: center; margin-bottom: 12px; padding: 8px; background: var(--mist); border-radius: var(--radius-small); }
.compare-product__media img { width: 100%; height: 100%; object-fit: contain; }
.compare-product > p { margin: 0 0 3px; color: var(--navy); font-size: .72rem; font-weight: 700; }
.compare-product h2 { margin: 0 0 10px; font-size: .92rem; }
.compare-product h2 a { text-decoration: none; }
.compare-product > .status-tag,
.compare-product > .compare-status { margin: auto 0 12px; }
.compare-product > .text-link { font-size: .76rem; }
.compare-status { display: inline-flex; padding: 4px 9px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.compare-status--available { color: var(--green); background: var(--green-pale); border: 1px solid #a8d6bf; }
.compare-status--unavailable { color: #862329; background: var(--red-pale); border: 1px solid #efb4b7; }
.compare-price { display: block; color: var(--navy); font-size: 1.45rem; font-variant-numeric: tabular-nums; }
.compare-subfact { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; }
.compare-long-fact { max-width: 56ch; margin: 0; color: var(--ink); font-size: .85rem; white-space: pre-line; }
.compare-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.compare-tags li { padding: 4px 8px; color: var(--navy); background: var(--sky); border-radius: 999px; font-size: .72rem; font-weight: 650; }
.compare-disclaimer { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 13px; margin-top: 24px; padding: 20px; color: var(--navy); background: var(--sky); border: 1px solid #c8d8f0; border-radius: var(--radius); }
.compare-disclaimer h2 { margin-bottom: 4px; font-size: 1rem; }
.compare-disclaimer p { max-width: 82ch; margin: 0; color: var(--navy-soft); font-size: .82rem; }
.compare-state { min-height: 440px; display: grid; justify-items: center; align-content: center; padding: 50px 24px; text-align: center; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); }
.compare-state > .icon { margin-bottom: 16px; color: var(--navy); }
.compare-state h2 { margin-bottom: 9px; }
.compare-state p { max-width: 60ch; margin-bottom: 10px; color: var(--muted); }
.compare-state > .button { margin-top: 12px; }
.compare-state > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 14px; }
.compare-state__catalog { color: var(--navy); border-color: var(--line-strong); }
.compare-state--error { background: var(--red-pale); border-color: #efb4b7; }
.compare-state--error > .icon { color: #862329; }

@media (max-width: 1120px) {
  .site-header__main { grid-template-columns: 180px minmax(260px, 1fr) auto; gap: 20px; }
  .brand { width: 170px; }
  .header-action--account span { display: none; }
  .hero-canopy__grid { grid-template-columns: 1fr minmax(340px, .7fr); gap: 46px; }
  .hero-canopy h1 { font-size: clamp(3rem, 6vw, 4.7rem); }
  .category-route__track { grid-template-columns: repeat(2, 1fr); }
  .category-route__track a:nth-child(2) { border-right: 0; }
  .category-route__track a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-route__track a::after { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-line { grid-template-columns: 90px minmax(0, 1fr) 90px 90px 44px; gap: 14px; }
  .compare-tray__inner { grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto; gap: 14px; }
  .compare-matrix--4 .compare-row { grid-template-columns: 160px repeat(4, minmax(0, 1fr)); }
  .compare-cell,
  .compare-product { padding: 14px; }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .delivery-ribbon__inner { padding-block: 8px; }
  .delivery-ribbon p span { display: none; }
  .site-header__main { min-height: 70px; grid-template-columns: 155px 1fr auto; gap: 14px; }
  .brand { width: 150px; }
  .header-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
  .header-action--account span,
  .header-action--cart > span { display: none; }
  .menu-button { display: grid; }
  .site-header__nav { display: none; }
  .site-header__nav.is-open { display: block; }
  .primary-nav { min-height: 0; align-items: stretch; flex-direction: column; gap: 0; padding-block: 8px 16px; }
  .primary-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .primary-nav__account { display: flex !important; align-items: center; gap: 8px; }
  .site-header { position: relative; }
  .hero-canopy__grid { min-height: 0; grid-template-columns: 1fr; padding-block: 58px; }
  .hero-canopy__copy { max-width: none; }
  .hero-canopy h1 { max-width: 15ch; }
  .delivery-dossier { width: min(100%, 620px); }
  .section-heading--split { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evidence-field__grid,
  .product-detail,
  .product-record,
  .cart-layout,
  .checkout-layout,
  .order-layout { grid-template-columns: 1fr; }
  .catalog-layout { display: block; padding-top: 24px; }
  .filter-sheet { margin-bottom: 24px; border: 1px solid var(--line-strong); border-radius: var(--radius-small); }
  .filter-sheet > summary { min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; color: var(--navy); font-weight: 700; list-style: none; cursor: pointer; }
  .filter-sheet > summary::-webkit-details-marker { display: none; }
  .filter-sheet__inner { padding: 0 14px 18px; }
  .filter-form { position: static; }
  .filter-form__heading { margin-top: 10px; }
  .product-detail__media { position: relative; top: 0; }
  .order-summary { position: static; }
  .commerce-heading { align-items: flex-start; flex-direction: column; }
  .cart-line { grid-template-columns: 86px minmax(0, 1fr) auto; grid-template-areas: "media info remove" "media quantity price"; }
  .cart-line__media { grid-area: media; }
  .cart-line__info { grid-area: info; }
  .cart-line__quantity { grid-area: quantity; }
  .cart-line__price { grid-area: price; }
  .cart-line__remove { grid-area: remove; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .account-auth { grid-template-columns: 1fr; gap: 28px; }
  .account-auth__intro { position: static; padding-bottom: 0; }
  .account-auth__intro h1 { max-width: 16ch; }
  .account-layout { grid-template-columns: 1fr; gap: 30px; }
  .account-sidebar { position: static; }
  .account-nav { grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-small); overflow: hidden; }
  .account-nav a { justify-content: center; border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
  .account-nav a:last-child { border-right: 0; }
  .account-nav a[aria-current="page"] { box-shadow: inset 0 -3px var(--red-action); }
  .account-sidebar__identity { display: none; }
  .shipment-dossier__body { grid-template-columns: 1fr; }
  .refund-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .refund-facts > div:nth-child(2n) { border-inline-end: 0; }
  .refund-facts > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(0,37,105,.14); }
  .compare-hero__inner { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding-block: 42px; }
  .compare-hero h1 { max-width: 15ch; }
  .compare-hero__proof { max-width: 620px; }
  .compare-toolbar { align-items: start; grid-template-columns: 1fr; }
  .compare-toolbar > div { justify-content: space-between; }
  .compare-toolbar__status { text-align: left; }
  .compare-matrix { overflow: visible; border: 0; border-radius: 0; }
  .compare-matrix--2 .compare-row,
  .compare-matrix--3 .compare-row,
  .compare-matrix--4 .compare-row { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  .compare-row__label { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); }
  .compare-row--products { position: static; }
  .compare-product { min-height: 100%; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .compare-product:nth-child(odd) { border-right: 0; }
  .compare-cell { border-bottom: 1px solid var(--line); }
  .compare-cell:nth-child(odd) { border-right: 0; }
  .compare-matrix--2 .compare-product,
  .compare-matrix--2 .compare-cell { border-bottom: 0; }
  .compare-matrix--3 .compare-product:last-child,
  .compare-matrix--3 .compare-cell:last-child { border-bottom: 0; }
  .compare-matrix--4 .compare-product:nth-last-child(-n + 2),
  .compare-matrix--4 .compare-cell:nth-last-child(-n + 2) { border-bottom: 0; }
  .compare-cell__product { display: block; margin-bottom: 7px; color: var(--navy); font-size: .68rem; font-weight: 700; }
  .compare-row:nth-child(2n + 3) .compare-cell { background: var(--white); }
  .compare-row--price .compare-cell { background: var(--mist); }
  .compare-tray { right: 12px; bottom: 12px; left: 12px; }
  .compare-tray__inner { width: auto; grid-template-columns: auto minmax(0, 1fr); gap: 10px 14px; padding: 12px; }
  .compare-tray__items { grid-column: 1 / -1; grid-row: 2; }
  .compare-tray__actions { justify-self: end; }
  .compare-tray__heading > .icon { display: none; }
  body.has-compare-tray { padding-bottom: 178px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .delivery-ribbon__inner { min-height: 48px; }
  .delivery-ribbon p { gap: 7px; }
  .delivery-ribbon p strong { max-width: 170px; line-height: 1.25; }
  .delivery-ribbon a { font-size: .78rem; }
  .site-header__main { grid-template-columns: 130px minmax(0, 1fr) auto; gap: 8px; }
  .brand { width: 130px; }
  .header-actions { gap: 6px; }
  .locale-switch { min-width: 40px; min-height: 40px; }
  .header-action { min-width: 42px; }
  .header-action--account { display: grid; }
  .hero-canopy h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-canopy__lead { font-size: 1rem; }
  .hero-search__control { min-height: 0; grid-template-columns: 26px minmax(0, 1fr); padding: 14px; }
  .hero-search__control .button { grid-column: 1 / -1; margin-top: 4px; }
  .hero-canopy__actions { align-items: flex-start; flex-direction: column; }
  .delivery-dossier__header { padding-inline: 20px; }
  .delivery-dossier > p { margin-inline: 20px; }
  .postcode-check { padding-inline: 20px; }
  .postcode-check > div { grid-template-columns: 1fr; }
  .delivery-dossier__facts div { grid-template-columns: 1fr; gap: 2px; padding-inline: 20px; }
  .section-shell { padding-block: 62px; }
  .category-route__track { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .category-route__track a { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .category-route__track a:last-child { border-bottom: 0 !important; }
  .product-grid,
  .product-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card__media { padding: 14px; }
  .product-card__body { padding: 14px; }
  .product-card__description { display: none; }
  .product-card h3 { font-size: .88rem; }
  .delivery-hint { font-size: .68rem; }
  .price-block strong { font-size: 1.05rem; }
  .quick-add .icon-button { width: 40px; height: 40px; }
  .evidence-ledger div { grid-template-columns: 1fr; gap: 3px; }
  .catalog-header__inner { min-height: 0; align-items: flex-start; flex-direction: column; padding-block: 42px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .sort-form { width: 100%; justify-content: space-between; }
  .sort-form select { min-width: 0; flex: 1; }
  .product-page { padding-bottom: 120px; }
  .product-detail__media { padding: 34px 22px; }
  .product-purchase__row { grid-template-columns: 76px minmax(0, 1fr); }
  .product-purchase__row .button { padding-inline: 12px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-record { margin-top: 64px; }
  .mobile-purchase-bar,
  .mobile-checkout-bar { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,37,105,.1); }
  .mobile-purchase-bar > div,
  .mobile-checkout-bar > div { display: grid; }
  .mobile-purchase-bar span,
  .mobile-checkout-bar span { color: var(--muted); font-size: .72rem; }
  .mobile-purchase-bar strong,
  .mobile-checkout-bar strong { color: var(--navy); }
  .commerce-page { padding-block: 42px 100px; }
  .cart-line { grid-template-columns: 72px minmax(0, 1fr) 40px; gap: 12px; }
  .cart-line__quantity { display: flex; align-items: center; flex-wrap: wrap; }
  .cart-line__price span { display: none; }
  .checkout-section,
  .order-record { padding: 20px; }
  .form-grid,
  .delivery-options { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .order-hero { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .order-hero__mark { width: 58px; height: 58px; }
  .order-item { grid-template-columns: 28px minmax(0, 1fr); }
  .order-item > b { grid-column: 2; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; }
  .policy-page { padding-block: 20px 64px; }
  .policy-page__header { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
  .policy-page__header h1 { font-size: clamp(2.1rem, 11vw, 3.3rem); }
  .policy-version { min-width: 0; }
  .policy-document { margin-top: 34px; font-size: 1rem; }
  .policy-directory { align-items: stretch; flex-direction: column; }
  .saved-address-picker__grid { grid-template-columns: 1fr; }
  .checkout-account-note { align-items: flex-start; flex-wrap: wrap; }
  .checkout-account-note > a { width: auto; max-width: calc(100% - 34px); margin-left: 34px; padding-left: 0; overflow-wrap: anywhere; }
  .account-auth { gap: 14px; padding-block: 28px 64px; }
  .account-auth__intro { display: contents; }
  .account-auth__intro h1 { order: 1; margin: 0; }
  .account-auth__intro > p { order: 2; margin: 0 0 6px; }
  .account-auth__panel { order: 3; }
  .account-auth__facts { order: 4; }
  .account-auth__intro > .text-link { order: 5; }
  .account-auth__intro h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .account-auth__facts { margin-block: 8px 24px; }
  .account-auth__panel { padding: 20px; }
  .phone-auth { padding: 18px; }
  .phone-auth__heading { grid-template-columns: 38px minmax(0, 1fr); }
  .phone-auth__mark { width: 38px; height: 38px; }
  .account-canopy__inner { min-height: 0; align-items: flex-start; flex-direction: column; padding-block: 34px; }
  .account-canopy h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .account-layout { padding-block: 24px 72px; }
  .account-nav { grid-template-columns: 1fr; }
  .account-nav a { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
  .account-nav a:last-child { border-bottom: 0; }
  .account-nav a[aria-current="page"] { box-shadow: inset 3px 0 var(--red-action); }
  .account-section__heading { align-items: flex-start; flex-direction: column; }
  .account-action-banner { grid-template-columns: auto minmax(0, 1fr); }
  .account-action-banner > button { grid-column: 2; justify-self: start; }
  .account-action-banner .form-status { grid-column: 2; }
  .account-order-row { grid-template-columns: 1fr; }
  .account-order-row > div:last-child { justify-items: start; }
  .address-grid, .account-settings-grid { grid-template-columns: 1fr; }
  .account-add-address { padding: 20px; }
  .account-verification { grid-template-columns: 1fr; }
  .account-verification form { align-items: flex-start; flex-direction: column; }
  .shipment-dossier { padding: 20px; }
  .delivery-capacity-dossier { padding: 20px; }
  .delivery-capacity-dossier__heading { grid-template-columns: auto minmax(0, 1fr); }
  .delivery-capacity-dossier__heading > span { grid-column: 2; justify-self: start; }
  .delivery-capacity-dossier > dl { grid-template-columns: 1fr; }
  .shipment-dossier__heading { flex-direction: column; }
  .shipment-timeline { grid-template-columns: 1fr; gap: 10px; }
  .shipment-timeline li { grid-template-columns: 34px minmax(0, 1fr); }
  .shipment-timeline li:not(:last-child)::after { top: 34px; bottom: -10px; left: 17px; right: auto; width: 1px; height: auto; }
  .shipment-facts > div { grid-template-columns: 1fr; gap: 2px; }
  .refund-dossier { padding: 20px; }
  .refund-dossier__heading { flex-direction: column; }
  .refund-facts { grid-template-columns: 1fr; }
  .refund-facts > div { border-inline-end: 0; border-bottom: 1px solid rgba(0,37,105,.14); }
  .refund-facts > div:last-child { border-bottom: 0; }
  .refund-latest { grid-template-columns: 1fr; gap: 4px; }
  .compare-toggle--card { min-height: 46px; padding-inline: 8px; font-size: .72rem; }
  .compare-toggle--pdp { margin-bottom: 14px; }
  .compare-hero__inner { padding-block: 34px; }
  .compare-hero h1 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .compare-hero__proof { padding: 16px; }
  .compare-page { padding-block: 26px 84px; }
  .compare-toolbar > div { align-items: stretch; flex-direction: column; gap: 10px; }
  .compare-toolbar > div .button,
  .compare-toolbar > div .text-link { width: 100%; justify-content: center; }
  .compare-row__label,
  .compare-cell,
  .compare-product { padding: 13px; }
  .compare-product__media { aspect-ratio: 1.25; }
  .compare-product h2 { font-size: .82rem; }
  .compare-product > .text-link { font-size: .7rem; }
  .compare-price { font-size: 1.18rem; }
  .compare-long-fact { font-size: .78rem; }
  .compare-state { min-height: 380px; padding-inline: 18px; }
  .compare-tray { right: 0; bottom: 0; left: 0; border-right: 0; border-bottom: 0; border-left: 0; border-radius: var(--radius) var(--radius) 0 0; }
  .compare-tray__inner { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .compare-tray__heading p strong { font-size: .84rem; }
  .compare-tray__items { padding-bottom: 2px; }
  .compare-tray__item { min-width: 142px; }
  .compare-tray__actions { gap: 8px; }
  .compare-tray__actions .text-button { display: none; }
  .compare-tray__actions .button { min-height: 44px; padding-inline: 12px; font-size: .74rem; }
  body.has-mobile-purchase .compare-tray { bottom: calc(72px + env(safe-area-inset-bottom)); border-bottom: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); }
  body.has-mobile-purchase.has-compare-tray { padding-bottom: 250px; }
}

@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; }
}
