:root {
  --navy: #022266;
  --navy-deep: #011c50;
  --blue: #0a4bd8;
  --blue-bright: #1460f4;
  --sky: #dceaff;
  --sky-soft: #eff5ff;
  --yellow: #ffc928;
  --cloud: #f7f9fc;
  --ink: #17233b;
  --muted: #65718a;
  --line: #e1e7f0;
  --green: #149447;
  --red: #dc2838;
  --white: #fff;
  --shadow: 0 14px 44px rgba(2, 34, 102, 0.09);
  --shadow-soft: 0 8px 26px rgba(23, 35, 59, 0.06);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Trebuchet MS", Inter, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-shell {
  width: min(1280px, calc(100% - 28px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid rgba(10, 75, 216, 0.35);
  outline-offset: 3px;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  background: linear-gradient(90deg, #eaf3ff, #d7e9ff, #eaf3ff);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
}

.announcement i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.5;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-main {
  min-height: 98px;
  display: grid;
  grid-template-columns: 180px minmax(260px, 530px) 220px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link img {
  width: 142px;
  height: auto;
}

.site-search {
  height: 45px;
  display: flex;
  align-items: center;
  border: 1px solid #d7deea;
  border-radius: 999px;
  background: #fff;
  transition: border .2s, box-shadow .2s;
}

.site-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 75, 216, .09);
}

.site-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 6px 0 19px;
  border: 0;
  outline: 0;
  background: transparent;
}

.site-search button {
  width: 48px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.35rem;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.header-actions a {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--navy);
}

.header-actions span {
  font-size: 1.45rem;
  line-height: 1;
}

.header-actions small {
  font-size: .65rem;
  font-weight: 700;
}

.desktop-nav {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4.2vw, 58px);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding: 12px 2px;
}

.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  transition: transform .18s, box-shadow .18s, background .18s;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(2, 34, 102, .15);
}

.button--primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
}

.button--outline {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}

.button--yellow {
  background: var(--yellow);
  color: var(--navy);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.pill--yellow {
  background: var(--yellow);
  color: var(--navy);
}

.pill--light {
  background: rgba(255, 255, 255, .82);
  color: var(--navy);
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9fc5ff;
}

.home-hero {
  position: relative;
  min-height: 515px;
  display: grid;
  grid-template-columns: .82fr 1.5fr;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(115deg, #eef6ff 0%, #dcecff 42%, #eaf4ff 100%);
  box-shadow: var(--shadow-soft);
}

.home-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: -120px;
  border: 44px solid var(--yellow);
  border-radius: 50%;
  opacity: .9;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  margin: 42px 0 42px 46px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 21px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  margin: 15px 0 10px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.hero-copy>p {
  max-width: 330px;
  margin-bottom: 18px;
  color: var(--muted);
}

.hero-copy>small {
  display: block;
  color: var(--muted);
}

.hero-price {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
}

.hero-price em {
  font-size: .85rem;
  font-style: normal;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.hero-facts b {
  display: block;
  color: var(--navy);
  font-size: .76rem;
}

.hero-photo {
  min-width: 0;
  height: 100%;
}

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

.hero-product-card {
  position: absolute;
  z-index: 5;
  width: 245px;
  right: 34px;
  top: 55px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.hero-product-card .heart {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.3rem;
}

.hero-product-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: contain;
}

.hero-product-card h2 {
  margin: 6px 0 2px;
  font-size: .92rem;
}

.hero-product-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .7rem;
}

.hero-product-card>strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.category-rail a {
  min-width: 0;
  padding: 10px 9px 12px;
  border: 1px solid #e1e9f6;
  border-radius: 14px;
  background: var(--sky-soft);
  text-align: center;
  transition: transform .18s, border .18s, box-shadow .18s;
}

.category-rail a:hover {
  transform: translateY(-3px);
  border-color: #b8d1fb;
  box-shadow: var(--shadow-soft);
}

.category-rail img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-rail strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: .72rem;
}

.page-section {
  padding-top: 62px;
}

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

.section-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
}

.section-heading>a {
  color: var(--navy);
  font-size: .79rem;
  font-weight: 800;
}

.section-heading>a b {
  color: var(--blue);
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--tabs {
  align-items: center;
}

.catalogue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalogue-tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cloud);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
}

.catalogue-tabs .active {
  background: var(--blue);
  color: #fff;
}

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

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

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(23, 35, 59, .025);
  transition: transform .18s, box-shadow .18s, border .18s;
}

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

.product-card__media {
  position: relative;
  padding: 6px;
  background: linear-gradient(#fff, #fbfcfe);
}

.product-card__media>a {
  display: block;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
}

.product-card__body {
  padding: 6px 12px 13px;
}

.product-name {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__body>small {
  display: block;
  min-height: 1.7em;
  margin: 3px 0 4px;
  color: var(--muted);
  font-size: .61rem;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 9px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #fff;
  font-size: .57rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge--nouveau {
  background: var(--yellow);
  color: var(--navy);
}

.badge--promo {
  background: var(--red);
}

.badge--top-vente {
  background: var(--blue);
}

.heart {
  border: 0;
  background: transparent;
  color: var(--navy);
}

.product-card .heart {
  position: absolute;
  z-index: 3;
  top: 7px;
  right: 8px;
  font-size: 1.15rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: .58rem;
  font-style: normal;
}

.rating b {
  color: var(--navy);
}

.rating span,
.purchase-rating>span,
.review-summary span {
  color: #f7ad00;
  letter-spacing: .03em;
}

.rating em {
  font-style: normal;
}

.stock {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 6px 0 2px;
  color: var(--green);
  font-size: .62rem;
  font-weight: 700;
}

.stock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.stock.stock--in,
.stock.in-stock {
  color: var(--green);
}

.stock.stock--out,
.stock.out-of-stock {
  color: #ed7a00;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price strong {
  color: var(--navy);
  font-size: .9rem;
}

.price del {
  color: #9aa2b2;
  font-size: .58rem;
}

.ranked-card {
  position: relative;
}

.ranked-card .rank {
  position: absolute;
  z-index: 4;
  top: -9px;
  left: -4px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 5px 10px rgba(23, 35, 59, .12);
}

.family-banner {
  min-height: 300px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  margin-top: 52px;
  overflow: hidden;
  border-radius: 21px;
  background: linear-gradient(110deg, #d9eaff, #eef6ff);
}

.family-banner>div {
  align-self: center;
  padding: 42px;
}

.family-banner>div>span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.family-banner h2 {
  margin: 7px 0 12px;
}

.family-banner p {
  max-width: 490px;
  color: var(--muted);
}

.family-banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 750;
}

.family-banner li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--blue);
}

.family-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-banner {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 55px;
  padding: 28px 38px;
  border-radius: 19px;
  background: linear-gradient(100deg, #eef6ff, #dcecff);
}

.help-banner h2 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.help-banner p {
  margin: 0;
  color: var(--muted);
}

.help-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-size: 2.2rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-strip>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.service-strip>div:last-child {
  border-right: 0;
}

.service-strip span {
  color: var(--blue);
  font-size: 1.3rem;
}

.service-strip p {
  margin: 0;
  line-height: 1.25;
}

.service-strip strong,
.service-strip small {
  display: block;
}

.service-strip strong {
  color: var(--navy);
  font-size: .68rem;
}

.service-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .57rem;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.universe-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.universe-grid img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.universe-grid strong,
.universe-grid span {
  display: block;
  padding-inline: 13px;
}

.universe-grid strong {
  margin-top: 9px;
  color: var(--navy);
  font-size: .75rem;
}

.universe-grid span {
  padding-bottom: 12px;
  color: var(--blue);
  font-size: .62rem;
  font-weight: 700;
}

.newsletter {
  margin-top: 58px;
  padding: 18px 0;
  background: linear-gradient(135deg, var(--blue), #0757ef);
  color: #fff;
}

.newsletter>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter>div>div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.newsletter>div>div>span {
  font-size: 1.7rem;
}

.newsletter p {
  margin: 0;
}

.newsletter strong,
.newsletter small {
  display: block;
}

.newsletter small {
  color: #dce9ff;
}

.newsletter form {
  width: min(430px, 100%);
  display: flex;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0 15px;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.newsletter button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 52px 0 20px;
  background: linear-gradient(135deg, var(--navy-deep), #00347f);
  color: #dbe6fb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}

.footer-brand img {
  width: 135px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 12px;
  color: #bed0ef;
  font-size: .74rem;
}

.footer-grid h2 {
  margin-bottom: 13px;
  color: #fff;
  font-family: inherit;
  font-size: .77rem;
  letter-spacing: 0;
}

.footer-grid>div>a {
  display: block;
  margin: 6px 0;
  color: #cfdbf0;
  font-size: .7rem;
}

.footer-grid>div>a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  font-size: .7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #9fb4da;
  font-size: .62rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 25px;
  color: var(--muted);
  font-size: .72rem;
}

.breadcrumbs a {
  color: var(--blue);
}

.category-page {
  padding-bottom: 70px;
}

.category-intro {
  max-width: 760px;
  padding: 34px 0 24px;
}

.category-intro h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.category-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.filter-panel {
  overflow: hidden;
  border: 1px solid #d9e6f8;
  border-radius: 18px;
  background: linear-gradient(180deg, #eff6ff, #fff);
}

.filter-row,
.results-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.filter-row {
  flex-wrap: wrap;
}

.filter-row>strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
}

.filter-row label,
.results-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 750;
}

.filter-row select,
.results-row select {
  height: 37px;
  border: 0;
  outline: 0;
  background-color: #fff;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
}

.results-row {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #fff;
}

.results-row>span {
  color: var(--navy);
}

.view-switch {
  display: flex;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.view-switch button {
  width: 40px;
  height: 37px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.view-switch button:last-child {
  border-right: 0;
}

.view-switch button.active {
  background: var(--sky);
  color: var(--blue);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 22px;
}

.active-filters button {
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--cloud);
  color: var(--navy);
  font-size: .66rem;
  font-weight: 700;
}

.active-filters button:last-child {
  background: transparent;
  color: var(--blue);
}

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

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

.catalogue-grid--list .product-card {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.catalogue-grid--list .product-card__media img {
  aspect-ratio: 1.1;
}

.empty-state {
  padding: 60px;
  border-radius: var(--radius);
  background: var(--cloud);
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0 20px;
}

.pagination a,
.pagination button,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
}

.pagination .active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.faq {
  padding-top: 55px;
}

.faq h2 {
  margin-bottom: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 18px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.faq summary {
  position: relative;
  padding: 16px 48px 16px 17px;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 17px;
  color: var(--blue);
  font-size: 1.05rem;
}

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

.faq details p {
  margin: 0;
  padding: 0 17px 17px;
  color: var(--muted);
  font-size: .73rem;
}

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

.product-purchase {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 38px;
  padding: 24px 0 42px;
}

.main-product-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #f7faff);
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 1.23;
  object-fit: contain;
}

.gallery-thumbs-carousel {
  margin-top: 12px;
}

.gallery-thumbs-carousel.has-overflow {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 7px;
}

.gallery-thumbs-viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

.gallery-thumbs-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  margin: 0;
}

.gallery-thumbs button {
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.gallery-thumbs button {
  min-width: 0;
  flex: 0 0 calc((100% - 36px) / 5);
}

.gallery-thumbs button.active {
  border: 2px solid var(--blue);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.gallery-thumbs-arrow {
  width: 32px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
}

.gallery-thumbs-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.gallery-thumbs-arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.gallery-thumbs-arrow--prev svg {
  transform: rotate(180deg);
}

.purchase-info {
  position: relative;
  align-self: start;
  padding-top: 6px;
}

.purchase-info h1 {
  margin: 7px 0 9px;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
}

.purchase-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
}

.purchase-rating a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.purchase-rating>.stock {
  margin: 0 0 0 auto;
}

.purchase-rating .stock i {
  margin-left: 0;
  color: inherit;
}

.purchase-rating .stock.stock--in {
  color: var(--green);
}

.purchase-rating .stock.stock--out {
  color: #ed7a00;
}

.purchase-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.purchase-price strong {
  color: var(--blue);
  font-size: 2.25rem;
  line-height: 1;
}

.purchase-price small {
  font-size: .8rem;
}

.purchase-price del {
  color: #939cad;
}

.installment {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: .74rem;
}

.spec-chips {
  display: grid;
  grid-template-columns: repeat(var(--jojo-spec-columns, 4), 1fr);
  gap: 9px;
}

.spec-chips div {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 13px 6px;
  border: 1px solid #d8e5f8;
  border-radius: 12px;
  background: var(--sky-soft);
  text-align: center;
}

.spec-chips span {
  color: var(--blue);
  font-size: 1.1rem;
}

.spec-chip-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.spec-chips strong {
  color: var(--navy);
  font-size: .73rem;
}

.spec-chips small {
  color: var(--muted);
  font-size: .53rem;
}

.colour-picker {
  padding: 0;
  margin: 19px 0 16px;
  border: 0;
}

.colour-picker legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
}

.swatch {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c4ccda;
}

.swatch {
  background: var(--swatch-colour, var(--blue));
}

.swatch[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--blue);
}

.swatch--blue {
  background: var(--blue);
}

.swatch--black {
  background: #272b31;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .72rem;
}

.quantity-row div {
  display: grid;
  grid-template-columns: 36px 48px 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.quantity-row button,
.quantity-row output {
  display: grid;
  place-items: center;
  height: 34px;
  border: 0;
  background: #fff;
}

.quantity-row button:hover {
  background: var(--sky-soft);
}

.toast {
  position: absolute;
  right: 0;
  bottom: -52px;
  z-index: 20;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: .72rem;
}

.product-page>.service-strip {
  width: 100%;
  margin-top: 0;
}

.product-tabs {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  border-bottom: 1px solid var(--line);
}

.product-tabs a {
  position: relative;
  padding: 15px 2px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
}

.product-tabs a.active {
  color: var(--blue);
}

.product-tabs a.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--blue);
}

.specification-section {
  padding: 40px 0 24px;
}

.specification-section h2 {
  margin-bottom: 17px;
}

.specification-section dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.specification-section dl>div {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  min-height: 43px;
  border-bottom: 1px solid var(--line);
}

.specification-section dl>div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.specification-section dt,
.specification-section dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 9px 13px;
  font-size: .7rem;
}

.specification-section dt {
  background: var(--cloud);
  color: var(--navy);
  font-weight: 800;
}

.specification-section dd {
  color: var(--muted);
}

.story-panel {
  position: relative;
  min-height: 340px;
  display: grid;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 19px;
}

.story-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.story-panel--lifestyle {
  grid-template-columns: .7fr 1.3fr;
  background: linear-gradient(110deg, #dcecff, #eef6ff);
}

.story-panel--lifestyle>div {
  align-self: center;
  padding: 44px;
}

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

.story-panel--lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel--dimensions {
  min-height: 390px;
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
  padding: 36px 42px;
  background: radial-gradient(circle at 75% 50%, #0b428b, var(--navy-deep));
  color: #fff;
}

.story-panel--dimensions h2 {
  color: #fff;
}

.story-panel--dimensions p {
  color: #c9daf8;
}

.story-panel--dimensions img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 14px;
}

.story-panel--power {
  min-height: 420px;
  grid-template-columns: .55fr 1.45fr;
  align-items: stretch;
  background: var(--navy-deep);
  color: #fff;
}

.power-copy {
  align-self: center;
  padding: 44px;
}

.power-copy h2 {
  color: #fff;
}

.power-copy p {
  color: #c9daf8;
}

.power-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 25px;
}

.power-facts span {
  color: #a9c1e8;
  font-size: .58rem;
}

.power-facts strong {
  display: block;
  color: #fff;
  font-size: .78rem;
}

.power-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
}

.power-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related {
  padding-bottom: 30px;
}

.review-summary {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 28px;
  border-radius: 15px;
  background: var(--cloud);
}

.review-summary div {
  display: grid;
}

.review-summary strong {
  color: var(--navy);
  font-size: 2rem;
}

.review-summary small,
.review-summary p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.delivery-note {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid #d8e5f8;
  border-radius: 13px;
  background: var(--sky-soft);
  color: var(--navy);
  font-size: .72rem;
}

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

@media (min-width: 800px) {

  .page-section,
  .family-banner,
  .story-panel,
  .faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
  }
}

@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: 150px 1fr 190px;
  }

  .home-hero {
    grid-template-columns: .95fr 1.05fr;
  }

  .hero-product-card {
    display: none;
  }

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

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

  .category-rail a:last-child {
    grid-column: span 1;
  }

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

  .service-strip>div:nth-child(3) {
    border-right: 0;
  }

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

  .footer-grid>div:nth-child(n+4) {
    margin-top: 8px;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 26px, 660px);
  }

  .announcement {
    min-height: 30px;
    font-size: .62rem;
  }

  .header-main {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .logo-link img {
    width: 112px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 41px;
    margin-bottom: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 40;
    top: 48px;
    right: 0;
    width: 220px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 9px;
    color: var(--navy);
    font-weight: 700;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .hero-photo {
    grid-row: 1;
    height: 330px;
  }

  .hero-copy {
    grid-row: 2;
    margin: -54px 14px 14px;
    padding: 27px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .home-hero::after {
    width: 210px;
    height: 210px;
    right: -100px;
    top: -80px;
    border-width: 26px;
  }

  .category-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .category-rail a:last-child {
    grid-column: 1 / -1;
  }

  .page-section {
    padding-top: 45px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

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

  .catalogue-tabs {
    margin-top: 14px;
  }

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

  .product-card__body {
    padding-inline: 10px;
  }

  .family-banner {
    grid-template-columns: 1fr;
  }

  .family-banner>div {
    padding: 30px;
  }

  .family-banner img {
    max-height: 280px;
  }

  .best-sellers {
    row-gap: 22px;
  }

  .help-banner {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .help-banner .button {
    grid-column: 1 / -1;
  }

  .help-avatar {
    width: 58px;
    height: 58px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip>div {
    justify-content: flex-start;
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip>div:last-child {
    border-bottom: 0;
  }

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

  .newsletter>div {
    display: grid;
  }

  .newsletter form {
    width: 100%;
  }

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

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

  .footer-bottom {
    display: grid;
  }

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

  .filter-row>strong {
    grid-column: 1 / -1;
    min-height: 40px;
    justify-content: center;
  }

  .filter-row label {
    justify-content: space-between;
  }

  .results-row {
    flex-wrap: wrap;
  }

  .view-switch {
    margin-left: 0;
  }

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

  .catalogue-grid--list .product-card {
    grid-template-columns: 135px 1fr;
  }

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

  .product-purchase {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .purchase-rating>.stock {
    width: 100%;
    margin-left: 0;
  }

  .product-tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .product-tabs a {
    white-space: nowrap;
  }

  .specification-section dl {
    grid-template-columns: 1fr;
  }

  .specification-section dl>div:nth-child(odd) {
    border-right: 0;
  }

  .story-panel--lifestyle,
  .story-panel--dimensions,
  .story-panel--power {
    grid-template-columns: 1fr;
  }

  .story-panel--lifestyle>div,
  .power-copy {
    padding: 30px;
  }

  .story-panel--lifestyle img {
    max-height: 330px;
  }

  .story-panel--dimensions {
    padding: 30px;
  }

  .power-images {
    min-height: 280px;
  }

  .review-summary {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .delivery-note {
    display: grid;
  }
}

@media (max-width: 430px) {

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

  .product-grid--six,
  .product-grid--four,
  .catalogue-grid {
    gap: 9px;
  }

  .product-card__media img {
    aspect-ratio: 1;
  }

  .product-name {
    font-size: .69rem;
  }

  .category-intro {
    padding-top: 25px;
  }

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

  .filter-row>strong {
    grid-column: auto;
  }

  .catalogue-grid--list .product-card {
    grid-template-columns: 105px 1fr;
  }

  .purchase-price strong {
    font-size: 1.85rem;
  }

  .power-facts {
    grid-template-columns: 1fr;
  }

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

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

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

/* Static Bootstrap / WordPress handoff additions */
.product-card {
  height: 100%;
}

.static-navbar {
  min-height: 46px;
  padding: 0;
}

.static-navbar .navbar-nav {
  width: 100%;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
}

.static-navbar .nav-link {
  position: relative;
  padding: 13px 2px !important;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 750;
}

.static-navbar .nav-link.active::after,
.static-navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.static-navbar .navbar-toggler {
  margin-left: auto;
  border-color: var(--line);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
}

.static-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(10, 75, 216, .12);
}

.static-navbar .navbar-toggler-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.home-hero .hero-copy {
  max-width: 430px;
}

.row .product-card__media img {
  width: 100%;
}

.family-banner .row {
  min-height: inherit;
}

.family-banner .family-copy {
  padding: 42px;
}

.family-banner .family-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-banner .btn {
  border: 0;
}

.site-footer .footer-grid h2 {
  font-weight: 800;
}

.js-toast {
  position: fixed;
  z-index: 1080;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100% - 40px));
  padding: 13px 17px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: .78rem;
}

.js-toast[hidden] {
  display: none;
}

.heart.is-active {
  color: var(--red);
}

.heart.is-active::before {
  content: "♥";
}

.heart.is-active {
  font-size: 0 !important;
}

.heart.is-active::before {
  font-size: 1.15rem;
}

.product-favourite-button {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.filter-panel .form-select {
  width: auto;
  min-width: 130px;
  padding-right: 30px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 9px) 50%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  box-shadow: none;
}

.results-row .form-select {
  min-width: 155px;
}

.catalogue-grid [hidden] {
  display: none !important;
}

.product-card__media .product-link {
  display: block;
}

.catalogue-grid--list .product-card__body {
  align-self: center;
}

.faq .accordion {
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-color: var(--navy);
  --bs-accordion-active-color: var(--navy);
  --bs-accordion-active-bg: var(--sky-soft);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(10, 75, 216, .12);
}

.faq .accordion-button {
  font-size: .78rem;
  font-weight: 800;
}

.faq .accordion-body {
  color: var(--muted);
  font-size: .76rem;
}

.product-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.gallery-thumbs button img {
  pointer-events: none;
}

.main-product-image img {
  transition: opacity .18s ease;
}

.main-product-image img.is-changing {
  opacity: .25;
}

.quantity-row output {
  min-width: 48px;
}

.newsletter .form-control {
  border: 0;
  box-shadow: none;
}

.wp-note {
  margin: 30px auto;
  padding: 16px 20px;
  border-left: 4px solid var(--yellow);
  background: var(--sky-soft);
  color: var(--navy);
  font-size: .76rem;
}

@media (max-width: 991.98px) {
  .static-navbar {
    position: absolute;
    top: 64px;
    right: 13px;
    z-index: 60;
    width: min(280px, calc(100vw - 26px));
  }

  .static-navbar .container {
    width: 100%;
    padding: 0;
  }

  .static-navbar .navbar-collapse {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .static-navbar .navbar-nav {
    gap: 0;
  }

  .static-navbar .nav-link {
    padding: 9px 11px !important;
  }

  .static-navbar .nav-link.active::after,
  .static-navbar .nav-link:hover::after {
    inset: 7px auto 7px 0;
    width: 3px;
    height: auto;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 12px;
  }

  .static-menu-button {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .static-menu-button {
    display: none !important;
  }
}

/* Homepage v2 — aligned to the approved catalogue-editorial proposal */
body[data-page="home"] .container {
  width: min(1420px, calc(100% - 80px));
  max-width: 1420px;
}

body[data-page="home"] .logo-link img {
  width: 188px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="home"] .footer-brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body[data-page="category"] .logo-link img {
  width: 188px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="category"] .footer-brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body[data-page="home"] .page-section {
  padding-top: 40px;
}

body[data-page="home"] .section-heading {
  margin-bottom: 18px;
}

body[data-page="home"] .section-heading>div>span {
  display: none;
}

body[data-page="home"] .section-heading h2 {
  font-size: 1.8rem;
}

body[data-page="home"] .section-heading>a svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.home-hero-carousel {
  position: relative;
  width: 100%;
  min-height: clamp(570px, 42vw, 670px);
  margin-top: 16px;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: 24px;
  background: #d8e5d0;
}

.home-hero-track {
  min-height: inherit;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.home-hero-slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-hero-slide .hero-backdrop {
  object-position: var(--hero-position, 50% 52%);
}

.hero-carousel-arrow {
  position: absolute;
  z-index: 8;
  right: 22px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  box-shadow: 0 7px 20px rgba(2, 34, 102, .13);
}

.hero-carousel-arrow--prev {
  right: 68px;
}

.hero-carousel-arrow--prev svg {
  transform: rotate(180deg);
}

.hero-carousel-arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.hero-carousel-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 0 0 1px rgba(2, 34, 102, .18);
  transition: width .2s, background .2s;
}

.hero-carousel-dots button[aria-current="true"] {
  width: 25px;
  background: var(--yellow);
}

.home-hero-v2 {
  position: relative;
  width: 100%;
  min-height: clamp(570px, 42vw, 670px);
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #d8e5d0;
  box-shadow: none;
}

.home-hero-v2::after {
  display: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-layer {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
}

.home-hero-v2 .hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: 490px;
  margin: 0;
  padding: 34px 40px 29px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 44px rgba(2, 34, 102, .14);
  backdrop-filter: blur(3px);
}

.home-hero-v2 .hero-copy h1 {
  margin: 14px 0 8px;
  font-size: clamp(2.55rem, 3.3vw, 3.35rem);
  line-height: .98;
}

.home-hero-v2 .hero-copy>p {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.35;
}

.home-hero-v2 .hero-copy>small {
  font-size: .72rem;
}

.home-hero-v2 .hero-price {
  margin: 1px 0 11px;
  font-size: 2.25rem;
}

.home-hero-v2 .button {
  min-height: 41px;
  border-radius: 999px;
  padding-inline: 20px;
  font-size: .73rem;
}

.home-hero-v2 .hero-facts {
  grid-template-columns: repeat(var(--hero-fact-columns, 3), 1fr);
  gap: 12px;
  margin-top: 21px;
  padding-top: 18px;
}

.home-hero-v2 .hero-facts>div {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.home-hero-v2 .hero-facts .fact-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #b7cce9;
  border-radius: 50%;
  color: var(--blue);
}

.home-hero-v2 .hero-facts svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.home-hero-v2 .hero-facts>div>span:last-child {
  display: block;
  color: var(--muted);
  font-size: .55rem;
  line-height: 1.15;
}

.home-hero-v2 .hero-facts b {
  margin-top: 2px;
  font-size: .58rem;
  white-space: nowrap;
}

.home-hero-v2 .hero-product-card {
  top: 50%;
  right: 0;
  width: 335px;
  padding: 18px 21px 20px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
}

.home-hero-v2 .hero-product-card img {
  aspect-ratio: 1.1;
  object-fit: contain;
}

.home-hero-v2 .hero-product-card h2 {
  margin-top: 8px;
  font-size: .9rem;
}

.home-hero-v2 .hero-product-card p {
  margin-bottom: 4px;
}

.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.hero-card-price strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.hero-card-price del {
  color: #9aa2b2;
  font-size: .62rem;
}

body[data-page="home"] .category-rail {
  gap: 12px;
  margin-top: 19px;
}

body[data-page="home"] .category-rail a {
  padding: 4px 8px 12px;
  border: 0;
  border-radius: 13px;
  background: #eef6ff;
}

body[data-page="home"] .category-rail img {
  aspect-ratio: 1.18;
  object-fit: contain;
  mix-blend-mode: normal;
  border-radius: 10px;
}

body[data-page="home"] .category-rail strong {
  margin-top: 1px;
  font-size: .69rem;
}

body[data-page="home"] .product-card__media {
  background: #fff;
}

body[data-page="home"] .product-card__media img {
  aspect-ratio: 1;
  object-fit: contain;
}

body[data-page="home"] .catalogue-home-grid .product-card__media img {
  aspect-ratio: 1.08;
}

.family-banner-v2 {
  position: relative;
  min-height: 255px;
  display: block;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 20px;
  background: #ddecff;
}

.family-banner-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(223, 237, 255, .99) 0%, rgba(225, 239, 255, .95) 36%, rgba(225, 239, 255, .18) 61%, transparent 78%);
}

.family-banner-v2 .family-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.family-banner-v2 .family-copy {
  position: relative;
  z-index: 2;
  width: 52%;
  padding: 29px 0 27px 46px;
}

.family-banner-v2 .family-copy>span {
  color: var(--navy);
  font-size: .67rem;
  font-weight: 750;
  text-transform: none;
}

.family-banner-v2 h2 {
  margin: 5px 0 11px;
  font-size: 1.75rem;
}

.family-banner-v2 p {
  margin-bottom: 0;
  color: #425477;
  font-size: .74rem;
  line-height: 1.45;
}

.family-banner-v2 ul {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 22px;
  margin-top: 22px;
}

.family-banner-v2 li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .58rem;
  line-height: 1.2;
}

.family-banner-v2 li::before {
  display: none;
}

.family-banner-v2 li svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
  color: var(--blue);
}

.help-banner-v2 {
  position: relative;
  isolation: isolate;
  min-height: 126px;
  grid-template-columns: 245px 1fr auto;
  gap: 24px;
  margin-top: 38px;
  padding: 0 38px 0 0;
  overflow: hidden;
  border-radius: 15px;
  background: #eaf4ff;
}

.help-banner-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(234, 244, 255, 0) 0, rgba(234, 244, 255, .14) 16%, rgba(234, 244, 255, .96) 31%, #eaf4ff 52%);
}

.help-banner-v2>img {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 360px;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  -webkit-mask-image: linear-gradient(90deg, #000 0 70%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 70%, transparent 100%);
}

.help-banner-v2 .help-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.help-banner-v2>.button {
  position: relative;
  z-index: 2;
  grid-column: 3;
}

.help-banner-v2 h2 {
  margin-bottom: 5px;
  font-size: 1.42rem;
}

.help-banner-v2 p {
  color: #425477;
  font-size: .73rem;
  line-height: 1.45;
}

.help-banner-v2 .button {
  min-width: 175px;
  min-height: 40px;
  border-radius: 999px;
  font-size: .72rem;
}

.help-banner-v2 .button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.service-strip-v2 {
  margin-top: 16px;
  padding-block: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(23, 35, 59, .04);
}

.service-strip-v2>div {
  justify-content: flex-start;
}

.service-strip-v2>div>span {
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff5ff;
}

.service-strip-v2 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.universes-v2 {
  padding-top: 28px !important;
}

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

.universes-v2 .section-heading h2 {
  font-size: 1.55rem;
}

.universes-v2 .universe-grid {
  gap: 13px;
}

.universes-v2 .universe-grid a {
  position: relative;
  border-radius: 14px;
}

.universes-v2 .universe-grid img {
  aspect-ratio: 1.55;
}

.universes-v2 .universe-grid strong {
  min-height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 7px 8px;
  text-align: center;
  font-size: .68rem;
}

.newsletter-wrap {
  margin-top: 24px;
  margin-bottom: 18px;
}

.newsletter-wrap .newsletter {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 12px 18px 12px 28px;
  border-radius: 13px;
  background: linear-gradient(105deg, #0b4bd4, #075cf3);
}

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

.newsletter-wrap .newsletter>div>span {
  font-size: 1.75rem;
}

.newsletter-wrap .newsletter>div>span svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.newsletter-wrap .newsletter p {
  line-height: 1.25;
}

.newsletter-wrap .newsletter strong {
  font-size: .78rem;
}

.newsletter-wrap .newsletter small {
  font-size: .64rem;
}

.newsletter-wrap .newsletter form {
  width: min(470px, 45%);
  flex: 0 1 470px;
}

@media (max-width: 1199.98px) {
  body[data-page="home"] .container {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;
  }

  .home-hero-v2 .hero-copy {
    left: 20px;
    width: 380px;
  }

  .home-hero-v2 .hero-product-card {
    right: 20px;
    width: 255px;
  }

  .family-banner-v2 .family-copy {
    width: 58%;
  }

  .family-banner-v2 ul {
    gap: 14px;
  }
}

@media (max-width: 991.98px) {
  .announcement {
    position: static;
    z-index: auto;
    min-height: 36px;
    padding: 6px 14px;
    line-height: 1.25;
    text-align: center;
  }

  .header-main {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-bottom: 0;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .header-actions a {
    min-height: 50px;
    align-content: center;
    justify-content: center;
    gap: 3px;
    border-left: 1px solid var(--line);
  }

  .header-actions a:first-child {
    border-left: 0;
  }

  .header-actions span {
    font-size: 1.3rem;
  }

  .header-actions small {
    font-size: .64rem;
  }

  .static-menu-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
  }

  .static-menu-button .menu-symbol {
    font-size: 1.08rem;
    line-height: 1;
    transform: translateY(-1px);
  }

  .static-navbar {
    top: 100%;
    right: 20px;
  }

  body[data-page="home"] .logo-link img,
  body[data-page="category"] .logo-link img {
    width: 126px;
  }

  .home-hero-v2 {
    min-height: 650px;
  }

  .hero-backdrop {
    object-position: 57% center;
  }

  .home-hero-v2 .hero-copy {
    top: 100px;
    transform: none;
  }

  .home-hero-v2 .hero-product-card {
    top: auto;
    right: 20px;
    bottom: 28px;
    width: 225px;
    transform: none;
  }

  body[data-page="home"] .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  body[data-page="home"] .category-rail a {
    min-width: 0;
    scroll-snap-align: none;
  }

  body[data-page="home"] .category-rail a:last-child {
    grid-column: auto;
  }

  .family-banner-v2 {
    min-height: 300px;
  }

  .family-banner-v2 .family-copy {
    width: 62%;
    padding: 27px 0 25px 28px;
  }

  .family-banner-v2 ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .help-banner-v2 {
    min-height: 150px;
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
    padding-right: 20px;
  }

  .help-banner-v2>img {
    width: 280px;
  }

  .help-banner-v2 .button {
    min-width: 145px;
  }

  .service-strip-v2 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }

  .service-strip-v2>div:nth-child(3) {
    border-right: 0;
  }

  .newsletter-wrap .newsletter form {
    max-width: 390px;
  }
}

@media (max-width: 767.98px) {
  .announcement {
    min-height: 38px;
    gap: 7px;
    padding-inline: 10px;
    font-size: .62rem;
  }

  .header-main {
    padding-top: 10px;
  }

  .static-navbar {
    right: 13px;
  }

  .home-hero-carousel {
    margin-top: 10px;
    border-radius: 18px;
  }

  .home-hero-v2 {
    min-height: 620px;
  }

  .hero-backdrop {
    object-position: 59% center;
  }

  .home-hero-v2 .hero-copy {
    top: 84px;
    left: 14px;
    right: 14px;
    width: auto;
    padding: 22px;
  }

  .home-hero-v2 .hero-copy h1 {
    font-size: 2.18rem;
  }

  .home-hero-v2 .hero-copy>p {
    font-size: .86rem;
  }

  .home-hero-v2 .hero-price {
    font-size: 2rem;
  }

  .home-hero-v2 .hero-facts {
    margin-top: 16px;
    padding-top: 14px;
  }

  .home-hero-v2 .hero-product-card {
    left: 20px;
    right: auto;
    bottom: 22px;
    width: 230px;
  }

  .hero-carousel-arrow {
    right: 14px;
    bottom: 18px;
  }

  .hero-carousel-arrow--prev {
    right: 58px;
  }

  .hero-carousel-dots {
    right: 17px;
    bottom: 66px;
    left: auto;
    transform: none;
  }

  body[data-page="home"] .category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body[data-page="home"] .category-rail a:last-child {
    grid-column: auto;
  }

  .family-banner-v2 {
    min-height: 465px;
  }

  .family-banner-v2::after {
    background: linear-gradient(180deg, rgba(223, 237, 255, .99) 0%, rgba(223, 237, 255, .96) 44%, rgba(223, 237, 255, .35) 62%, transparent 78%);
  }

  .family-banner-v2 .family-backdrop {
    max-height: none;
    object-position: 68% bottom;
  }

  .family-banner-v2 .family-copy {
    width: 100%;
    padding: 25px 20px;
  }

  .family-banner-v2 h2 {
    font-size: 1.55rem;
  }

  .family-banner-v2 p br {
    display: none;
  }

  .family-banner-v2 ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .family-banner-v2 li {
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
  }

  .help-banner-v2 {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 14px;
    padding: 155px 20px 22px;
  }

  .help-banner-v2::after {
    background: linear-gradient(180deg, rgba(234, 244, 255, 0) 0, rgba(234, 244, 255, .1) 34%, rgba(234, 244, 255, .96) 58%, #eaf4ff 78%);
  }

  .help-banner-v2>img {
    inset: 0 0 auto;
    width: 100%;
    height: 195px;
    object-position: 15% 24%;
    -webkit-mask-image: linear-gradient(180deg, #000 0 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0 68%, transparent 100%);
  }

  .help-banner-v2 .help-copy {
    width: 100%;
  }

  .help-banner-v2 h2 {
    font-size: 1.3rem;
  }

  .help-banner-v2 p br {
    display: none;
  }

  .help-banner-v2 .button {
    min-width: 155px;
    align-self: flex-start;
  }

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

  .service-strip-v2>div {
    border-right: 0;
  }

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

  .newsletter-wrap .newsletter {
    display: grid;
    padding: 18px;
  }

  .newsletter-wrap .newsletter form {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 479.98px) {
  .home-hero-v2 {
    min-height: 610px;
  }

  .home-hero-v2 .hero-facts {
    gap: 7px;
  }

  .home-hero-v2 .hero-facts>div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-hero-v2 .hero-facts b {
    white-space: normal;
  }

  .universes-v2 .universe-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-track {
    transition: none;
  }
}

/* Product page v2 — aligned to the approved catalogue product proposal */
body[data-page="product"] .logo-link img {
  width: 188px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="product"] .footer-brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body[data-page="product"] .product-page>.container {
  width: min(1180px, calc(100% - 40px));
}

body[data-page="product"] .breadcrumbs {
  padding-top: 22px;
}

body[data-page="product"] .product-purchase {
  grid-template-columns: minmax(0, 1.12fr) minmax(365px, .88fr);
  gap: 46px;
  padding: 22px 0 38px;
}

body[data-page="product"] .main-product-image {
  min-height: 510px;
  display: grid;
  place-items: center;
  border-color: #edf1f7;
  border-radius: 17px;
  background: #fbfcfe;
  box-shadow: 0 7px 28px rgba(2, 34, 102, .035);
}

body[data-page="product"] .main-product-image>img {
  width: 100%;
  aspect-ratio: 1.22;
  padding: 14px;
  object-fit: contain;
}

.gallery-expand {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e1ee;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
}

.gallery-expand svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

body.gallery-is-open {
  overflow: hidden;
}

body[data-page="product"] .main-product-image.is-expanded {
  position: fixed;
  inset: 20px;
  z-index: 120;
  min-height: 0;
  padding: 34px;
  border-color: rgba(255, 255, 255, .7);
  background: rgba(245, 248, 253, .98);
  box-shadow: 0 24px 80px rgba(1, 28, 80, .3);
}

body[data-page="product"] .main-product-image.is-expanded>img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 0;
  object-fit: contain;
}

body[data-page="product"] .gallery-thumbs {
  gap: 9px;
}

body[data-page="product"] .gallery-thumbs button {
  min-width: 0;
  height: 84px;
  padding: 5px;
}

body[data-page="product"] .gallery-thumbs img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 6px;
}

body[data-page="product"] .purchase-info {
  padding-top: 2px;
}

body[data-page="product"] .purchase-info h1 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 2.6vw, 2.08rem);
  line-height: 1.13;
}

body[data-page="product"] .purchase-rating {
  margin-bottom: 16px;
}

body[data-page="product"] .purchase-price {
  margin: 0 0 4px;
}

body[data-page="product"] .purchase-price strong {
  font-size: 2.18rem;
}

body[data-page="product"] .installment {
  margin: 7px 0 19px;
}

body[data-page="product"] .spec-chips {
  gap: 10px;
}

body[data-page="product"] .spec-chips>div {
  min-height: 86px;
  padding: 12px 5px 10px;
  border-color: #dbe7f8;
  border-radius: 11px;
  background: #f0f6ff;
}

body[data-page="product"] .spec-chip-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
}

body[data-page="product"] .spec-chip-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

body[data-page="product"] .spec-chips strong {
  font-size: .75rem;
}

body[data-page="product"] .spec-chips small {
  font-size: .54rem;
}

body[data-page="product"] .colour-picker {
  margin: 18px 0 14px;
}

body[data-page="product"] .quantity-row {
  margin-top: 4px;
}

body[data-page="product"] .button {
  min-height: 46px;
  border-radius: 9px;
}

body[data-page="product"] .button-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body[data-page="product"] .jojo-colour-native-row {
  display: none;
}

body[data-page="product"] .product-service-strip {
  grid-template-columns: repeat(var(--jojo-service-columns, 4), minmax(0, 1fr));
  margin-top: 25px;
  padding: 19px 24px;
  border-color: #dce8f9;
  background: #f0f6ff;
  box-shadow: none;
}

body[data-page="product"] .product-service-strip>div {
  justify-content: flex-start;
}

body[data-page="product"] .product-service-strip>div>span {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

body[data-page="product"] .product-service-strip svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

body[data-page="product"] .product-tabs {
  position: static;
  z-index: auto;
  gap: 34px;
  margin-top: 32px;
  background: #fff;
  backdrop-filter: none;
}

body[data-page="product"] .product-tabs a {
  padding: 14px 3px;
}

body[data-page="product"] .specification-section {
  padding: 16px 0 18px;
}

body[data-page="product"] .specification-section dl {
  border-radius: 8px;
}

body[data-page="product"] .specification-section dl>div {
  min-height: 39px;
}

body[data-page="product"] .specification-section dt,
body[data-page="product"] .specification-section dd {
  padding: 8px 12px;
  font-size: .68rem;
}

body[data-page="product"] .story-panel--asset {
  min-height: 0;
  display: block;
  grid-template-columns: none;
  align-items: stretch;
  margin: 16px 0 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-deep);
}

body[data-page="product"] .story-panel--asset picture {
  display: block;
}

body[data-page="product"] .story-panel--asset img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

body[data-page="product"] .related {
  padding-top: 36px;
  padding-bottom: 32px;
}

body[data-page="product"] .related .section-heading {
  margin-bottom: 17px;
}

body[data-page="product"] .related .section-heading>div>span {
  display: none;
}

body[data-page="product"] .related .section-heading h2 {
  font-size: 1.65rem;
}

body[data-page="product"] .related .product-card__media img {
  aspect-ratio: 1.08;
  object-fit: contain;
}

body[data-page="product"] .product-reviews .comment-form-review-image {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

body[data-page="product"] .product-reviews .comment-form-review-image label {
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
}

body[data-page="product"] .product-reviews .comment-form-review-image input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: .74rem;
}

body[data-page="product"] .product-reviews .comment-form-review-image small {
  color: var(--muted);
  font-size: .64rem;
}

body[data-page="product"] .product-review-photo-wrap {
  margin: 14px 0 0;
}

body[data-page="product"] .product-review-photo {
  width: min(240px, 100%);
  height: auto;
  max-height: 240px;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  body[data-page="product"] .logo-link img {
    width: 126px;
  }

  body[data-page="product"] .product-purchase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="product"] .product-gallery,
  body[data-page="product"] .purchase-info {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  body[data-page="product"] .main-product-image {
    min-height: 0;
  }

  body[data-page="product"] .product-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 17px;
  }

  body[data-page="product"] .product-service-strip>div:nth-child(2) {
    border-right: 0;
  }

  body[data-page="product"] .product-tabs {
    gap: 24px;
    overflow-x: auto;
  }
}

@media (max-width: 767.98px) {
  body[data-page="product"] .product-page>.container {
    width: min(100% - 26px, 660px);
  }

  body[data-page="product"] .breadcrumbs {
    padding-top: 18px;
    font-size: .65rem;
  }

  body[data-page="product"] .product-purchase {
    gap: 24px;
    padding-top: 16px;
  }

  body[data-page="product"] .main-product-image>img {
    aspect-ratio: 1.15;
    padding: 5px;
  }

  body[data-page="product"] .gallery-thumbs {
    gap: 6px;
  }

  body[data-page="product"] .gallery-thumbs button {
    flex-basis: calc((100% - 24px) / 5);
  }

  body[data-page="product"] .gallery-thumbs button {
    height: 64px;
    padding: 3px;
  }

  body[data-page="product"] .purchase-info h1 {
    font-size: 1.65rem;
  }

  body[data-page="product"] .purchase-price strong {
    font-size: 1.95rem;
  }

  body[data-page="product"] .spec-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="product"] .product-service-strip {
    padding: 16px 12px;
  }

  body[data-page="product"] .product-service-strip>div {
    padding-inline: 7px;
  }

  body[data-page="product"] .product-tabs {
    margin-top: 24px;
  }

  body[data-page="product"] .specification-section {
    padding-top: 12px;
  }

  body[data-page="product"] .story-panel--asset {
    border-radius: 14px;
  }

  body[data-page="product"] .story-panel--asset img {
    aspect-ratio: 3 / 5;
    object-fit: cover;
  }

  body[data-page="product"] .related {
    padding-top: 30px;
  }
}

@media (max-width: 479.98px) {
  body[data-page="product"] .product-service-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="product"] .product-service-strip>div {
    justify-content: flex-start;
    border-right: 0;
  }

  body[data-page="product"] .product-tabs {
    gap: 19px;
  }
}

/* Essential pages — shared WordPress / WooCommerce-ready presentation */
body[data-page="cart"] .logo-link img,
body[data-page="checkout"] .logo-link img,
body[data-page="account"] .logo-link img,
body[data-page="contact"] .logo-link img,
body[data-page="about"] .logo-link img,
body[data-page="shipping"] .logo-link img,
body[data-page="terms"] .logo-link img,
body[data-page="privacy"] .logo-link img,
body[data-page="404"] .logo-link img {
  width: 188px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="cart"] .footer-brand img,
body[data-page="checkout"] .footer-brand img,
body[data-page="account"] .footer-brand img,
body[data-page="contact"] .footer-brand img,
body[data-page="about"] .footer-brand img,
body[data-page="shipping"] .footer-brand img,
body[data-page="terms"] .footer-brand img,
body[data-page="privacy"] .footer-brand img,
body[data-page="404"] .footer-brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.utility-page {
  padding: 0 0 76px;
  background: linear-gradient(180deg, #fbfdff 0, #fff 390px);
}

.utility-page>.container {
  width: min(1180px, calc(100% - 40px));
}

.utility-page .breadcrumbs {
  padding-top: 22px;
}

.utility-hero {
  max-width: 750px;
  padding: 48px 0 38px;
}

.utility-hero--compact {
  padding-block: 36px 28px;
}

.utility-hero .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.utility-hero--compact h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.utility-hero p {
  max-width: 660px;
  margin: 17px 0 0;
  color: #52647e;
  font-size: 1rem;
  line-height: 1.65;
}

.utility-card {
  border: 1px solid #e4eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(2, 34, 102, .055);
}

.utility-card h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.25rem;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-heading>span {
  color: #77869b;
  font-size: .72rem;
}

.card-heading>a {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
  gap: 26px;
  align-items: start;
}

.cart-products {
  padding: 26px;
}

.cart-products>.card-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid #e7edf5;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 135px minmax(170px, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e7edf5;
}

.cart-item__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #f7f9fc;
}

.cart-item__image img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item__info {
  display: grid;
  gap: 7px;
}

.cart-item__info strong {
  color: var(--navy-deep);
  font-size: .94rem;
  line-height: 1.35;
}

.cart-item__info small {
  color: #7a899c;
}

.cart-item__info .stock {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #149447;
  font-size: .7rem;
  font-weight: 800;
}

.cart-item__info .stock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.cart-quantity {
  display: grid;
  grid-template-columns: 32px 35px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d8e1ec;
  border-radius: 9px;
}

.cart-quantity button {
  height: 34px;
  border: 0;
  background: #f5f8fc;
  color: var(--navy);
  font-size: 1.05rem;
}

.cart-quantity output {
  text-align: center;
  font-size: .8rem;
  font-weight: 900;
}

.cart-item__price {
  min-width: 82px;
  color: var(--navy-deep);
  font-size: .95rem;
  text-align: right;
}

.cart-remove {
  position: absolute;
  right: 0;
  bottom: 6px;
  border: 0;
  background: transparent;
  color: #8a96a7;
  font-size: .67rem;
  text-decoration: underline;
}

.coupon-form {
  padding-top: 22px;
}

.coupon-form>label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
}

.coupon-form>div {
  display: flex;
  gap: 9px;
}

.coupon-form input {
  flex: 1;
  min-width: 0;
}

.order-summary {
  position: sticky;
  top: 22px;
  padding: 26px;
}

.order-summary h2 {
  margin-bottom: 24px;
}

.order-summary dl {
  margin: 0 0 22px;
}

.order-summary dl>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  color: #607089;
  font-size: .82rem;
}

.order-summary dd {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 800;
}

.order-summary .free-delivery {
  color: #159749;
}

.order-summary .order-total {
  margin-top: 8px;
  padding-top: 19px;
  border-top: 1px solid #dfe6ef;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 900;
}

.order-summary .order-total dd {
  color: var(--blue);
  font-size: 1.3rem;
}

.secure-note {
  margin: 13px 0 0;
  color: #738298;
  font-size: .67rem;
  line-height: 1.5;
  text-align: center;
}

.utility-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: #dce7f5;
}

.utility-trust span {
  padding: 17px 14px;
  background: #f1f6fd;
  color: var(--navy);
  font-size: .73rem;
  font-weight: 800;
  text-align: center;
}

/* Forms and checkout */
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  position: relative;
  padding-top: 28px;
  color: #9aa6b6;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}

.checkout-steps li::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 50%;
  background: #cbd4df;
  box-shadow: 0 0 0 1px #cbd4df;
}

.checkout-steps li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: #dce3eb;
}

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

.checkout-steps li.done,
.checkout-steps li.active {
  color: var(--blue);
}

.checkout-steps li.done::before,
.checkout-steps li.active::before {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, .68fr);
  gap: 26px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 20px;
}

.form-section,
.payment-methods,
.contact-form,
.account-form {
  padding: 27px;
}

.form-section>h2,
.form-section>.card-heading,
.payment-methods>h2,
.contact-form>h2 {
  margin-bottom: 22px;
}

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

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

.form-grid label,
.account-form form>label,
.coupon-form label {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.account-form input,
.coupon-form input {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #d6dfeb;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: var(--navy-deep);
  font: inherit;
  font-size: .82rem;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.account-form input:focus,
.coupon-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 234, .11);
}

.payment-methods {
  display: grid;
  gap: 11px;
}

.payment-methods h2 {
  margin-bottom: 10px;
}

.payment-methods>label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid #dfe6ef;
  border-radius: 11px;
  cursor: pointer;
}

.payment-methods input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.payment-methods span {
  display: grid;
  gap: 4px;
}

.payment-methods strong {
  color: var(--navy-deep);
  font-size: .8rem;
}

.payment-methods small {
  color: #718096;
  font-size: .68rem;
}

.checkout-summary {
  position: sticky;
  top: 22px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #e5eaf1;
}

.checkout-product img {
  width: 65px;
  height: 57px;
  border-radius: 9px;
  background: #f6f8fb;
  object-fit: contain;
}

.checkout-product span {
  display: grid;
  gap: 3px;
}

.checkout-product strong,
.checkout-product b {
  color: var(--navy-deep);
  font-size: .72rem;
}

.checkout-product small {
  color: #7b899a;
  font-size: .64rem;
}

.checkout-product b {
  white-space: nowrap;
}

.terms-check {
  display: flex;
  gap: 9px;
  margin: 0 0 16px;
  color: #5d6c82;
  font-size: .67rem;
  line-height: 1.5;
}

.terms-check input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.terms-check a {
  color: var(--blue);
  text-decoration: underline;
}

/* Account and contact */
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.account-form>p {
  margin: 8px 0 22px;
  color: #718096;
  font-size: .8rem;
}

.account-form form {
  display: grid;
  gap: 16px;
}

.account-form form>label {
  display: grid;
}

.account-form--register {
  background: linear-gradient(145deg, #f0f6ff, #fff 72%);
}

.form-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .68rem;
}

.form-inline label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #64748a;
}

.form-inline input {
  width: auto;
  margin: 0;
  accent-color: var(--blue);
}

.form-inline a {
  color: var(--blue);
  font-weight: 800;
}

.account-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 15px;
  background: #dbe7f7;
}

.account-benefits div {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: #eef5ff;
  text-align: center;
}

.account-benefits strong {
  color: var(--navy-deep);
  font-size: .8rem;
}

.account-benefits span {
  color: #6d7d92;
  font-size: .68rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article {
  position: relative;
  padding: 22px;
}

.contact-details h2 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.contact-details a {
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800;
}

.contact-details p {
  margin: 6px 0 0;
  color: #6f7e92;
  font-size: .73rem;
  line-height: 1.55;
}

.contact-index {
  position: absolute;
  top: 17px;
  right: 18px;
  color: #d9e8fd;
  font-size: 1.6rem;
  font-weight: 900;
}

.contact-form .button {
  margin-top: 20px;
  min-width: 210px;
}

.contact-region {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 26px;
  padding: 32px 42px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(110deg, #062b69, #005bea);
  color: #fff;
}

.contact-region .eyebrow {
  color: #90c1ff;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-region h2 {
  margin: 7px 0;
  color: #fff;
}

.contact-region p {
  margin: 0;
  color: #d9e8ff;
  font-size: .8rem;
}

.contact-region>strong {
  color: rgba(255, 255, 255, .12);
  font-size: clamp(3.3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: .8;
  text-transform: uppercase;
}

/* About */
.about-feature {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.about-feature>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 38, 91, .93) 0, rgba(4, 38, 91, .73) 38%, rgba(4, 38, 91, .04) 73%);
}

.about-feature>div {
  position: relative;
  z-index: 1;
  width: min(490px, 55%);
  padding: 54px;
  color: #fff;
}

.about-feature .eyebrow {
  color: #8cc1ff;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-feature h2 {
  margin: 9px 0 14px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.about-feature p {
  color: #dfebfc;
  line-height: 1.65;
}

.about-feature .button {
  margin-top: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0 10px;
  overflow: hidden;
  border: 1px solid #e2e9f2;
  border-radius: 16px;
}

.about-stats div {
  display: grid;
  gap: 5px;
  padding: 22px 18px;
  border-right: 1px solid #e2e9f2;
  text-align: center;
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats strong {
  color: var(--blue);
  font-size: 1.35rem;
}

.about-stats span {
  color: #64758b;
  font-size: .7rem;
}

.values-section {
  padding-bottom: 0;
}

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

.value-grid article {
  padding: 27px;
}

.value-grid b {
  color: #b9d5fb;
  font-size: 1.65rem;
}

.value-grid h3 {
  margin: 13px 0 8px;
  color: var(--navy-deep);
  font-size: 1rem;
}

.value-grid p {
  margin: 0;
  color: #708096;
  font-size: .75rem;
  line-height: 1.55;
}

/* Shipping, legal and not found */
.shipping-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shipping-cards article {
  padding: 25px;
}

.shipping-cards article>span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
}

.shipping-cards h2 {
  font-size: 1rem;
}

.shipping-cards p {
  margin: 9px 0 0;
  color: #718095;
  font-size: .75rem;
  line-height: 1.6;
}

.delivery-timeline {
  margin-top: 22px;
  padding: 28px;
}

.delivery-timeline ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding-right: 20px;
}

.delivery-timeline li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 34px;
  right: 0;
  height: 1px;
  background: #cfdded;
}

.delivery-timeline li:last-child::after {
  display: none;
}

.delivery-timeline b {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
}

.delivery-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding-top: 3px;
  background: #fff;
}

.delivery-timeline strong {
  color: var(--navy-deep);
  font-size: .75rem;
}

.delivery-timeline small {
  color: #768599;
  font-size: .65rem;
  line-height: 1.5;
}

.returns-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
  margin-top: 22px;
  padding: 38px 42px;
  border-radius: 18px;
  background: #eef5ff;
}

.returns-section .eyebrow {
  color: var(--blue);
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.returns-section h2 {
  margin: 8px 0 10px;
  color: var(--navy-deep);
  font-size: 1.8rem;
}

.returns-section p {
  color: #63748b;
  font-size: .78rem;
  line-height: 1.65;
}

.returns-section .button {
  margin-top: 10px;
}

.return-conditions {
  padding: 25px;
  border-radius: 14px;
  background: #fff;
}

.return-conditions strong {
  color: var(--navy-deep);
  font-size: .8rem;
}

.return-conditions ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: #64748a;
  font-size: .72rem;
}

.shipping-faq {
  padding-bottom: 0;
}

.legal-page .utility-hero {
  max-width: none;
  text-align: center;
}

.legal-page .utility-hero h1,
.legal-page .utility-hero p {
  margin-inline: auto;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 48px;
}

.legal-content section+section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e4eaf2;
}

.legal-content h2 {
  margin-bottom: 11px;
  font-size: 1.05rem;
}

.legal-content p {
  margin: 0;
  color: #5f7088;
  font-size: .8rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.not-found-page {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 70px 0;
  background: radial-gradient(circle at 50% 35%, #edf5ff 0, #fff 61%);
}

.not-found-card {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.not-found-card>span {
  display: block;
  color: #d8e9ff;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 950;
  line-height: .75;
  letter-spacing: -.08em;
}

.not-found-card h1 {
  margin: 32px 0 13px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -.04em;
}

.not-found-card p {
  max-width: 600px;
  margin: 0 auto;
  color: #66768d;
  line-height: 1.65;
}

.not-found-card>div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.not-found-card nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
}

.not-found-card nav a {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 991.98px) {

  body[data-page="cart"] .logo-link img,
  body[data-page="checkout"] .logo-link img,
  body[data-page="account"] .logo-link img,
  body[data-page="contact"] .logo-link img,
  body[data-page="about"] .logo-link img,
  body[data-page="shipping"] .logo-link img,
  body[data-page="terms"] .logo-link img,
  body[data-page="privacy"] .logo-link img,
  body[data-page="404"] .logo-link img {
    width: 126px;
  }

  .utility-hero {
    padding-block: 38px 30px;
  }

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

  .order-summary,
  .checkout-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 120px 1fr auto;
  }

  .cart-quantity {
    grid-column: 2;
    width: max-content;
  }

  .cart-item__price {
    grid-column: 3;
    grid-row: 2;
  }

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

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

  .about-feature>div {
    width: 65%;
    padding: 42px;
  }

  .delivery-timeline ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .delivery-timeline li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .utility-page {
    padding-bottom: 52px;
  }

  .utility-page>.container {
    width: min(100% - 26px, 660px);
  }

  .utility-page .breadcrumbs {
    padding-top: 17px;
  }

  .utility-hero {
    padding-block: 30px 25px;
  }

  .utility-hero h1 {
    font-size: 2.25rem;
  }

  .utility-hero p {
    margin-top: 13px;
    font-size: .86rem;
  }

  .cart-products,
  .order-summary,
  .form-section,
  .payment-methods,
  .contact-form,
  .account-form {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
    gap: 13px;
  }

  .cart-item__image img {
    height: 86px;
  }

  .cart-quantity {
    grid-column: 2;
  }

  .cart-item__price {
    grid-column: 2;
    grid-row: auto;
    min-width: 0;
    text-align: left;
  }

  .cart-remove {
    bottom: 11px;
  }

  .coupon-form>div {
    display: grid;
  }

  .utility-trust,
  .account-benefits {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    margin-inline: auto;
  }

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

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

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

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

  .contact-region {
    padding: 27px 22px;
  }

  .contact-region>strong {
    display: none;
  }

  .about-feature {
    min-height: 530px;
    align-items: flex-end;
  }

  .about-feature::after {
    background: linear-gradient(180deg, rgba(4, 38, 91, .02) 15%, rgba(4, 38, 91, .92) 58%, #04265b 100%);
  }

  .about-feature>img {
    object-position: 63% center;
  }

  .about-feature>div {
    width: 100%;
    padding: 28px 24px;
  }

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

  .about-stats div:nth-child(2) {
    border-right: 0;
  }

  .about-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid #e2e9f2;
  }

  .value-grid,
  .shipping-cards {
    grid-template-columns: 1fr;
  }

  .delivery-timeline {
    padding: 22px 20px;
  }

  .delivery-timeline .card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .delivery-timeline ol {
    grid-template-columns: 1fr;
  }

  .delivery-timeline li::after {
    display: none;
  }

  .returns-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .not-found-page {
    min-height: 560px;
    padding: 55px 0;
  }

  .not-found-card>div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 479.98px) {
  .utility-hero h1 {
    font-size: 2rem;
  }

  .card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .cart-item {
    padding-bottom: 34px;
  }

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

  .checkout-product b {
    grid-column: 2;
  }

  .form-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    border-right: 0;
    border-bottom: 1px solid #e2e9f2;
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }
}

/* Persistent commerce navigation and dynamic category discovery */
.site-footer {
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.header-main {
  grid-template-columns: 180px minmax(260px, 640px);
  justify-content: center;
}

.header-actions {
  position: fixed;
  z-index: 1060;
  left: 50%;
  right: auto;
  bottom: calc(12px + env(safe-area-inset-bottom));
  width: min(350px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(184, 205, 236, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 46px rgba(2, 34, 102, .2);
  backdrop-filter: blur(14px);
}

.header-actions a {
  /* min-height: 58px; */
  display: grid;
  place-items: center;
  gap: 3px;
  border-radius: 13px;
  color: var(--navy);
}

.header-actions a:hover,
.header-actions a:focus-visible {
  background: var(--sky-soft);
  color: var(--blue);
}

.header-actions .header-action-icon {
  width: 20px;
  height: 20px;
}

.header-actions .header-action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.header-actions small {
  font-size: .63rem;
  line-height: 1;
}

.header-category-nav {
  border-top: 1px solid #edf2f8;
  background: #fff;
}

.header-category-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.header-category-link {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-category-link:hover,
.header-category-link:focus-visible {
  border-color: #b8d1fb;
  background: #fff;
  color: var(--blue);
}

.header-category-link--all {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-grid {
  grid-template-columns: minmax(210px, 1.45fr) repeat(4, minmax(150px, 1fr));
}

.footer-categories {
  max-height: 260px;
  overflow: auto;
  padding-right: 6px;
}

@media (max-width: 991.98px) {
  .header-main {
    grid-template-columns: 1fr auto;
    justify-content: initial;
  }

  .header-actions {
    grid-column: auto;
    grid-row: auto;
    width: min(330px, calc(80% - 20px));
    padding: 6px;
    border-top: 1px solid rgba(184, 205, 236, .95);
  }

  .header-actions a {
    min-height: 30px;
    border-left: 0;
  }

  .header-category-scroll {
    width: calc(100% - 20px);
    padding-inline: 0;
  }

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

  .footer-categories {
    max-height: none;
  }
}

@media (max-width: 479.98px) {
  .header-actions {
    bottom: calc(8px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .header-actions a {
    min-height: 30px;
  }

  .header-actions .header-action-icon {
    width: 23px;
    height: 23px;
  }

  .header-actions small {
    font-size: .6rem;
  }

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