:root {
  --navy: #0a2037;
  --navy-2: #102c49;
  --blue: #2d68ff;
  --blue-bright: #3f76ff;
  --mist: #dce9f7;
  --ice: #f2f6f9;
  --paper: #f6f6f3;
  --white: #ffffff;
  --ink: #142b43;
  --muted: #617386;
  --line: rgba(20, 43, 67, 0.17);
  --font-geist-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-geist-mono: "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --scroll-progress: 0;
  --hero-drift: 0px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  color: white;
  background: var(--blue);
}

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue-bright);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  pointer-events: none;
}

.announcement {
  height: 34px;
  padding: 0 2.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--navy);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement div {
  display: flex;
  gap: 28px;
  color: #a9bbcd;
}

.site-header {
  height: 76px;
  padding: 0 2.2vw;
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(246, 246, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo-link {
  width: 132px;
}

.desktop-nav {
  display: flex;
  gap: 29px;
  font-size: 12px;
}

.desktop-nav a,
.header-search,
.cart-action {
  position: relative;
}

.desktop-nav a::after,
.header-search::after,
.cart-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.desktop-nav a:hover::after,
.header-search:hover::after,
.cart-action:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.cart-action {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cart-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.header-search {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cart-action span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 8px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100svh - 110px);
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-drift), 0) scale(1.01);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 34, 0.93) 0%, rgba(6, 20, 37, 0.69) 39%, rgba(6, 20, 37, 0.04) 65%),
    linear-gradient(0deg, rgba(4, 14, 26, 0.68), transparent 35%);
}

.hero-content {
  width: min(790px, 59vw);
  padding: clamp(70px, 11vh, 120px) 4.5vw 165px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 25px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--blue);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 420;
}

.hero h1 span,
.support-content h2 span {
  color: #a8c8ff;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-copy {
  max-width: 520px;
  margin: 32px 0 0;
  color: #ced8e4;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.58;
}

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

.button {
  min-width: 205px;
  height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 2px;
  font-size: 12px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

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

.button span {
  font-size: 16px;
}

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

.button-light:hover {
  color: white;
  background: var(--blue);
}

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

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

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

.button-blue:hover {
  background: var(--navy);
}

.text-link {
  padding-bottom: 5px;
  display: inline-flex;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.text-link-light {
  color: white;
}

.hero-specs {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 auto;
  width: 52%;
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.24);
  background: rgba(6, 20, 37, 0.42);
  backdrop-filter: blur(14px);
}

.hero-specs div {
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-left: 1px solid rgba(255,255,255,0.2);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-specs span {
  color: #8fb4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.hero-signature {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 4.5vw;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-signature p {
  max-width: 220px;
  margin: 0;
  color: #c4d1de;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-mark {
  width: 29px;
  height: 29px;
  position: relative;
  display: block;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.signal-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: signal 2s ease-in-out infinite;
}

@keyframes signal {
  50% {
    opacity: 0.35;
    transform: scale(1.5);
  }
}

.proof-rail {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-bottom: 1px solid var(--line);
}

.proof-rail div {
  padding: 0 2.2vw;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.proof-rail div:last-child {
  border-right: 0;
}

.proof-rail span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.proof-rail strong {
  font-size: 11px;
  font-weight: 480;
}

.finder-section {
  padding: 130px 4.5vw 95px;
  background: var(--paper);
}

.finder-heading,
.shop-heading,
.compare-heading,
.learn-heading,
.faq-heading {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7vw;
  align-items: end;
}

.finder-heading .eyebrow,
.shop-heading .eyebrow,
.compare-heading .eyebrow,
.learn-heading .eyebrow,
.faq-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.finder-heading h2,
.shop-heading h2,
.science-intro h2,
.routine-copy h2,
.compare-heading h2,
.learn-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(50px, 6.6vw, 98px);
  line-height: 0.94;
  letter-spacing: -0.067em;
  font-weight: 480;
}

.finder-heading > p:last-child,
.shop-heading > div:last-child > p {
  width: min(390px, 30vw);
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.finder-interface {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  border: 1px solid var(--line);
  background: white;
}

.pain-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.pain-list button {
  flex: 1;
  min-height: 83px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease;
}

.pain-list button:last-child {
  border-bottom: 0;
}

.pain-list button:hover,
.pain-list button.is-active {
  color: white;
  background: var(--blue);
}

.pain-list button span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.pain-list button:hover span,
.pain-list button.is-active span {
  color: #c9dbff;
}

.pain-list button strong {
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 460;
}

.pain-list button i {
  font-style: normal;
  font-size: 15px;
}

.finder-result {
  min-height: 535px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.finder-result-image {
  min-height: 535px;
  position: relative;
  overflow: hidden;
}

.finder-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.finder-result-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,32,55,0.36), transparent 50%);
}

.finder-result-image > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finder-result-copy {
  padding: 48px 38px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ice);
}

.result-label {
  margin: 0 0 38px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-result-copy h3 {
  margin: 0;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 480;
}

.finder-result-copy > p:not(.result-label) {
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.result-product {
  width: 100%;
  margin: auto 0 26px;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-product div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-product span {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-product strong {
  font-size: 15px;
  font-weight: 520;
}

.result-product a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
}

.finder-note {
  margin: 17px 0 0;
  color: #798794;
  font-size: 9px;
}

.shop-section {
  padding: 130px 0 100px;
  overflow: hidden;
  background: white;
}

.shop-heading {
  padding: 0 4.5vw;
}

.shop-heading > div:last-child {
  padding-bottom: 4px;
}

.reel-controls {
  margin-top: 25px;
  display: flex;
  gap: 8px;
}

.reel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.reel-controls button:hover {
  color: white;
  background: var(--navy);
}

.product-reel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(310px, 31vw, 480px);
  gap: 12px;
  padding: 0 4.5vw 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.product-reel::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
}

.product-image {
  height: clamp(390px, 39vw, 590px);
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-ice {
  background: #eef2f4;
}

.product-mist {
  background: #dbe7f3;
}

.product-slate {
  background: #aebdcb;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: white;
  background: var(--blue);
  border-radius: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-image button {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid rgba(20,43,67,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 17px;
}

.product-copy {
  padding: 19px 2px 0;
}

.product-copy > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.product-copy > div p {
  order: 2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.045em;
  font-weight: 480;
}

.product-copy > p {
  max-width: 350px;
  margin-top: 13px;
}

.product-copy > a {
  margin-top: 17px;
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.accessory-card {
  min-height: clamp(510px, 53vw, 718px);
  padding: 44px 36px;
  display: flex;
  align-items: flex-end;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, rgba(96,145,255,0.75), transparent 29%),
    linear-gradient(145deg, #1c4d86, var(--navy) 70%);
}

.accessory-card h3 {
  margin: 12px 0 22px;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 470;
}

.accessory-card > div > p {
  max-width: 330px;
  margin: 0 0 28px;
  color: #b8c9da;
  font-size: 12px;
  line-height: 1.6;
}

.drag-note {
  margin: 27px 4.5vw 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.drag-note span {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 50%, var(--line) 50%);
}

.science-section {
  padding: 125px 4.5vw;
  color: white;
  background: var(--navy);
}

.science-intro {
  margin-bottom: 75px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7vw;
  align-items: end;
}

.science-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -5px;
  color: #8fb4ff;
}

.science-intro > p:last-child {
  width: min(390px, 31vw);
  margin: 0 0 4px;
  color: #aebdcb;
  font-size: 14px;
  line-height: 1.7;
}

.science-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.science-panel {
  min-height: 660px;
  padding: 29px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.science-tens {
  color: var(--navy);
  background: var(--mist);
}

.science-ems {
  color: white;
  background: var(--blue);
}

.science-number {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.wave {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.wave i {
  width: 3px;
  border-radius: 3px;
  background: currentColor;
  animation: wave 2.2s ease-in-out infinite;
}

.wave i:nth-child(1),
.wave i:nth-child(7) { height: 24px; }
.wave i:nth-child(2),
.wave i:nth-child(6) { height: 54px; animation-delay: -0.2s; }
.wave i:nth-child(3),
.wave i:nth-child(5) { height: 104px; animation-delay: -0.4s; }
.wave i:nth-child(4) { height: 150px; animation-delay: -0.6s; }

@keyframes wave {
  50% { transform: scaleY(0.48); opacity: 0.55; }
}

.science-panel h3 {
  margin: 0 0 20px;
  font-size: clamp(47px, 5.6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 470;
}

.science-panel p {
  max-width: 470px;
  margin: 0 0 25px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.8;
}

.science-panel a {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.routine-section {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--mist);
}

.routine-image {
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.routine-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.routine-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,32,55,0.42), transparent 48%);
}

.routine-image > p {
  position: absolute;
  z-index: 2;
  inset: auto 24px 20px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placement-dot {
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  background: rgba(45,104,255,0.75);
  backdrop-filter: blur(8px);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.dot-one {
  top: 39%;
  right: 23%;
}

.dot-two {
  right: 34%;
  bottom: 18%;
}

.routine-copy {
  padding: clamp(75px, 8vw, 125px) 5vw 65px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.routine-copy h2 {
  font-size: clamp(48px, 5.5vw, 78px);
}

.routine-copy ol {
  width: 100%;
  margin: 45px 0 38px;
  padding: 0;
  list-style: none;
}

.routine-copy li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-top: 1px solid rgba(20,43,67,0.21);
}

.routine-copy li > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.routine-copy li strong {
  font-size: 17px;
  font-weight: 520;
}

.routine-copy li p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.compare-section {
  padding: 125px 4.5vw;
  background: var(--paper);
}

.compare-table {
  border-top: 1px solid var(--ink);
}

.compare-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.1fr 2fr 1fr 0.8fr 0.6fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, padding 220ms ease;
}

.compare-row:not(.compare-head):hover {
  padding: 0 15px;
  background: white;
}

.compare-head {
  min-height: 48px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-row strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.compare-row span,
.compare-row a {
  font-size: 11px;
}

.compare-row a {
  justify-self: end;
}

.quiz-card {
  margin-top: 55px;
  padding: 50px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 65% 20%, rgba(106,154,255,0.6), transparent 22%),
    var(--blue);
}

.quiz-card .eyebrow {
  margin-bottom: 13px;
}

.quiz-card h3 {
  margin: 0;
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 460;
}

.learn-section {
  padding: 125px 4.5vw;
  background: white;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 13px;
  align-items: start;
}

.learn-card > img,
.learn-abstract {
  width: 100%;
  height: clamp(330px, 32vw, 490px);
  object-fit: cover;
}

.learn-card-large > img {
  height: clamp(390px, 38vw, 580px);
  object-position: 20% center;
}

.learn-card:nth-child(2) > img {
  object-position: center 35%;
}

.learn-card > div:last-child {
  padding-top: 18px;
}

.learn-card span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.learn-card h3 {
  margin: 13px 0 20px;
  font-size: clamp(20px, 2.1vw, 31px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 470;
}

.learn-card a {
  padding-top: 13px;
  display: block;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-abstract {
  padding: 0 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  background: var(--navy);
}

.learn-abstract i {
  width: 4px;
  display: block;
  border-radius: 4px;
  background: var(--blue-bright);
}

.learn-abstract i:nth-child(1),
.learn-abstract i:nth-child(5) { height: 35px; }
.learn-abstract i:nth-child(2),
.learn-abstract i:nth-child(4) { height: 105px; }
.learn-abstract i:nth-child(3) { height: 210px; }

.faq-section {
  padding: 125px 4.5vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  color: white;
  background: var(--navy);
}

.faq-heading {
  display: block;
  margin: 0;
}

.faq-heading .eyebrow {
  margin-bottom: 30px;
  color: #8fb4ff;
}

.faq-heading h2 {
  font-size: clamp(48px, 5.5vw, 80px);
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,0.25);
}

.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-list summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
}

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

.faq-list summary span {
  color: #8fb4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.faq-list summary i {
  font-size: 19px;
  font-style: normal;
  transition: transform 250ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 600px;
  margin: -6px 30px 28px 45px;
  color: #aebdcb;
  font-size: 12px;
  line-height: 1.7;
}

.support-section {
  min-height: 700px;
  padding: 110px 4.5vw;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  text-align: center;
}

.support-content {
  position: relative;
  z-index: 2;
}

.support-content h2 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.067em;
  font-weight: 480;
}

.support-content h2 span {
  color: white;
}

.support-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px auto;
  color: #d9e5ff;
  font-size: 14px;
  line-height: 1.65;
}

.support-content > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.support-signal {
  width: min(1100px, 86vw);
  height: 280px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(13px, 3vw, 46px);
  opacity: 0.18;
}

.support-signal i {
  width: 2px;
  height: 50px;
  background: white;
}

.support-signal i:nth-child(2),
.support-signal i:nth-child(8) { height: 95px; }
.support-signal i:nth-child(3),
.support-signal i:nth-child(7) { height: 160px; }
.support-signal i:nth-child(4),
.support-signal i:nth-child(6) { height: 235px; }
.support-signal i:nth-child(5) { height: 280px; }

.safety-note {
  padding: 30px 4.5vw;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 5vw;
  color: #607184;
  background: #e7ecf0;
  border-bottom: 1px solid var(--line);
}

.safety-note strong {
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.safety-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.65;
}

footer {
  padding: 70px 4.5vw 28px;
  background: #f0f2f2;
}

.footer-main {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.footer-brand img {
  width: min(250px, 72%);
}

.footer-brand p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.4fr;
  gap: 4vw;
}

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

.footer-links h3 {
  margin: 0 0 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  margin-bottom: 13px;
  color: #52677a;
  font-size: 11px;
}

.newsletter p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.newsletter form {
  width: 100%;
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 12px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

.newsletter button {
  width: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
}

.footer-bottom {
  padding-top: 21px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid var(--line);
  color: #647689;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.footer-bottom > a {
  justify-self: end;
}

.newsletter-success {
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--blue) !important;
}

.bag-overlay {
  position: fixed;
  z-index: 89;
  inset: 0;
  display: block;
  border: 0;
  background: rgba(4, 14, 26, 0.52);
  opacity: 0;
  visibility: hidden;
  cursor: default;
  backdrop-filter: blur(2px);
  transition: opacity 380ms ease, visibility 380ms;
}

.bag-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bag-drawer {
  width: min(510px, 100vw);
  height: 100dvh;
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(4, 14, 26, 0.2);
  transform: translateX(102%);
  visibility: hidden;
  transition:
    transform 520ms cubic-bezier(.2,.8,.2,1),
    visibility 520ms;
}

.bag-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.bag-head {
  min-height: 88px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.bag-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bag-head span {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.bag-head strong {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-head > button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.bag-shipping {
  padding: 17px 28px 16px;
  background: #e9eff5;
}

.bag-shipping > div {
  height: 3px;
  overflow: hidden;
  background: rgba(20,43,67,0.16);
}

.bag-shipping > div span {
  height: 100%;
  display: block;
  background: var(--blue);
  transition: width 400ms ease;
}

.bag-shipping > div.is-complete span {
  background: #2c8564;
}

.bag-shipping p {
  margin: 9px 0 0;
  color: #536a7f;
  font-size: 9px;
}

.bag-lines {
  flex: 1;
  padding: 0 28px;
  overflow-y: auto;
}

.bag-empty {
  min-height: 100%;
  padding: 70px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bag-empty > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
}

.bag-empty h2 {
  margin: 26px 0 15px;
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 430;
}

.bag-empty p {
  max-width: 350px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.bag-empty .button {
  width: 215px;
}

.bag-line {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.bag-line > img {
  width: 125px;
  height: 158px;
  object-fit: cover;
  background: #e7edf2;
}

.bag-line > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.bag-line p {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bag-line h2 {
  margin: 7px 0 9px;
  font-size: 23px;
  letter-spacing: -0.04em;
  font-weight: 480;
}

.bag-line > div > strong {
  font-size: 12px;
  font-weight: 520;
}

.bag-line-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bag-line-actions > div {
  height: 35px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.bag-line-actions > div button {
  width: 32px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bag-line-actions > div span {
  min-width: 27px;
  text-align: center;
  font-size: 10px;
}

.bag-line-actions > button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.bag-footer {
  padding: 22px 28px 25px;
  border-top: 1px solid var(--line);
  background: white;
}

.bag-footer > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.bag-footer > div span {
  font-size: 13px;
}

.bag-footer > div strong {
  font-size: 25px;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.bag-footer p {
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: 8px;
}

.bag-footer .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.bag-continue {
  width: 100%;
  margin-top: 14px;
  padding: 4px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.shop-page-hero {
  min-height: 770px;
  position: relative;
  overflow: hidden;
  background: #d6cfbf;
}

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

.shop-page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,246,243,0.92) 0%, rgba(246,246,243,0.64) 37%, transparent 59%),
    linear-gradient(0deg, rgba(10,32,55,0.3), transparent 40%);
}

.shop-page-hero-copy {
  width: min(730px, 58vw);
  padding: clamp(80px, 11vh, 125px) 4.5vw 150px;
  position: relative;
  z-index: 2;
}

.shop-page-hero-copy h1 {
  margin: 0;
  font-size: clamp(57px, 7.2vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.072em;
  font-weight: 420;
}

.shop-page-hero-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 30px 0 34px;
  color: #465d73;
  font-size: 16px;
  line-height: 1.65;
}

.shop-page-hero-foot {
  min-height: 72px;
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  background: rgba(10,32,55,0.76);
  border-top: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.shop-page-hero-foot span {
  padding: 0 2.2vw;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-intro {
  padding: 125px 4.5vw 95px;
  background: var(--paper);
}

.shop-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
}

.shop-intro-grid h2,
.accessories-heading h2,
.shop-guidance h2 {
  margin: 0;
  font-size: clamp(50px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.066em;
  font-weight: 430;
}

.shop-intro-grid > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.therapy-links {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.therapy-link {
  min-height: 210px;
  padding: 22px 24px 28px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: end;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease;
}

.therapy-link:last-child {
  border-right: 0;
}

.therapy-link:hover {
  color: white;
  background: var(--blue);
}

.therapy-link > span {
  align-self: start;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.therapy-link:hover > span {
  color: #cedcff;
}

.therapy-link h3 {
  margin: 0 0 11px;
  font-size: 26px;
  letter-spacing: -0.045em;
  font-weight: 470;
}

.therapy-link p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.therapy-link:hover p {
  color: #dce6ff;
}

.therapy-link i {
  font-style: normal;
}

.catalog-section {
  padding: 0 4.5vw 125px;
  background: white;
}

.catalog-toolbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.catalog-filters {
  display: flex;
  gap: 8px;
}

.catalog-filters button {
  height: 37px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  transition: color 200ms ease, background 200ms ease;
}

.catalog-filters button.is-active,
.catalog-filters button:hover {
  color: white;
  background: var(--navy);
}

.catalog-toolbar > span {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 14px;
  padding-top: 35px;
}

.catalog-card {
  min-width: 0;
}

.catalog-image {
  height: clamp(390px, 40vw, 600px);
  position: relative;
  overflow: hidden;
  background: #edf1f4;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

.catalog-image > span {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 7px 10px;
  color: white;
  background: var(--blue);
  border-radius: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-image > button {
  width: 39px;
  height: 39px;
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(20,43,67,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.78);
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 17px;
}

.catalog-copy {
  padding-top: 20px;
}

.catalog-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.catalog-title-row p {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-title-row h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.045em;
  font-weight: 470;
}

.catalog-title-row > strong {
  font-size: 14px;
  font-weight: 500;
}

.catalog-description {
  min-height: 50px;
  margin: 15px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.catalog-copy ul {
  margin: 0 0 20px;
  padding: 14px 0;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.catalog-copy li {
  padding: 5px 8px;
  color: #52687d;
  background: #edf2f5;
  border-radius: 2px;
  font-size: 8px;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-actions .button {
  min-width: 0;
  flex: 1;
  border: 0;
  cursor: pointer;
}

.catalog-actions > a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
}

.accessories-section {
  padding: 125px 4.5vw;
  color: white;
  background: var(--navy);
}

.accessories-heading .eyebrow {
  color: #8fb4ff;
}

.accessory-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.22);
}

.accessory-item {
  min-height: 480px;
  padding: 28px 2vw 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.accessory-item:last-child {
  border-right: 0;
}

.accessory-shape {
  height: 210px;
  display: grid;
  place-items: center;
  position: relative;
}

.accessory-shape i {
  display: block;
  position: absolute;
  border: 1px solid rgba(143,180,255,0.8);
}

.shape-1 i:nth-child(1) {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  transform: rotate(12deg);
}

.shape-1 i:nth-child(2) {
  width: 104px;
  height: 104px;
  border-radius: 22px;
  transform: translate(38px, 15px) rotate(-7deg);
}

.shape-1 i:nth-child(3) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
}

.shape-2 i:nth-child(1) {
  width: 160px;
  height: 90px;
  border-radius: 50%;
}

.shape-2 i:nth-child(2) {
  width: 105px;
  height: 55px;
  border-radius: 50%;
}

.shape-2 i:nth-child(3) {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
}

.shape-3 i:nth-child(1) {
  width: 150px;
  height: 105px;
  border-radius: 70px 70px 24px 24px;
}

.shape-3 i:nth-child(2) {
  width: 112px;
  height: 70px;
  border-radius: 55px 55px 14px 14px;
}

.shape-3 i:nth-child(3) {
  width: 54px;
  height: 2px;
  background: var(--blue);
}

.accessory-item > div:last-child > span {
  color: #8fb4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.accessory-item h3 {
  margin: 12px 0;
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 450;
}

.accessory-item p {
  max-width: 320px;
  margin: 0 0 18px;
  color: #aebdcb;
  font-size: 11px;
  line-height: 1.6;
}

.accessory-item strong {
  font-size: 12px;
  font-weight: 500;
}

.shop-guidance {
  min-height: 660px;
  padding: 105px 4.5vw;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  text-align: center;
}

.shop-guidance-copy {
  position: relative;
  z-index: 2;
}

.shop-guidance h2 {
  font-size: clamp(48px, 6vw, 88px);
}

.shop-guidance-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 31px;
  color: #dce7ff;
  font-size: 13px;
  line-height: 1.7;
}

.shop-guidance .button {
  margin: 0 auto;
}

.guidance-rings {
  width: min(900px, 80vw);
  aspect-ratio: 1;
  position: absolute;
  display: grid;
  place-items: center;
}

.guidance-rings i {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.guidance-rings i:nth-child(1) { inset: 4%; }
.guidance-rings i:nth-child(2) { inset: 18%; }
.guidance-rings i:nth-child(3) { inset: 32%; }
.guidance-rings i:nth-child(4) { inset: 46%; background: rgba(255,255,255,0.06); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 820ms cubic-bezier(.2,.8,.2,1),
    transform 820ms cubic-bezier(.2,.8,.2,1);
}

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

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-button {
    display: block;
    padding: 8px 0;
    border: 0;
    background: transparent;
    font-size: 12px;
  }

  .mobile-menu {
    position: absolute;
    inset: 76px 0 auto;
    padding: 28px 4.5vw 36px;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 380ms cubic-bezier(.2,.8,.2,1), visibility 380ms;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    letter-spacing: -0.03em;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: 72vw;
  }

  .hero-specs {
    width: 60%;
  }

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

  .proof-rail div:nth-child(2) {
    border-right: 0;
  }

  .proof-rail div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .finder-heading,
  .shop-heading,
  .science-intro,
  .learn-heading {
    grid-template-columns: 1fr;
  }

  .finder-heading > p:last-child,
  .shop-heading > div:last-child > p,
  .science-intro > p:last-child {
    width: min(560px, 75vw);
  }

  .finder-interface {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .finder-result {
    grid-template-columns: 1fr;
  }

  .finder-result-image {
    min-height: 360px;
  }

  .finder-result-copy {
    min-height: 390px;
  }

  .science-panel {
    min-height: 610px;
  }

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

  .routine-image {
    min-height: 640px;
  }

  .routine-copy {
    min-height: 690px;
  }

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

  .learn-card-large {
    grid-column: 1 / -1;
  }

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

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

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

  .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .announcement {
    justify-content: center;
  }

  .announcement div {
    display: none;
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .logo-link {
    width: 116px;
  }

  .header-actions {
    gap: 17px;
  }

  .mobile-menu {
    inset: 68px 0 auto;
    padding: 24px 18px 31px;
  }

  .hero {
    min-height: calc(100svh - 102px);
  }

  .hero-image {
    inset: 0;
    height: 100%;
    object-position: 66% center;
    transform: scale(1.01);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5,18,33,0.88) 0%, rgba(5,18,33,0.58) 48%, rgba(5,18,33,0.88) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 58px 19px 205px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 75px);
  }

  .hero-copy {
    max-width: 92%;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button-light {
    width: min(290px, 100%);
  }

  .hero-specs {
    width: 100%;
    min-height: 115px;
  }

  .hero-specs div {
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 8px;
  }

  .hero-signature {
    display: none;
  }

  .proof-rail {
    min-height: 156px;
  }

  .proof-rail div {
    padding: 0 17px;
    gap: 9px;
  }

  .proof-rail strong {
    font-size: 9px;
  }

  .finder-section,
  .science-section,
  .compare-section,
  .learn-section,
  .faq-section {
    padding: 85px 19px;
  }

  .finder-heading,
  .shop-heading,
  .learn-heading {
    margin-bottom: 44px;
  }

  .finder-heading h2,
  .shop-heading h2,
  .science-intro h2,
  .compare-heading h2,
  .learn-heading h2,
  .faq-heading h2 {
    font-size: 48px;
  }

  .finder-heading > p:last-child,
  .shop-heading > div:last-child > p,
  .science-intro > p:last-child {
    width: 100%;
  }

  .finder-interface {
    display: block;
  }

  .pain-list {
    padding: 0 0 10px;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .pain-list button {
    min-width: 170px;
    min-height: 72px;
    flex: 0 0 auto;
    grid-template-columns: 28px 1fr;
    padding: 0 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .pain-list button i {
    display: none;
  }

  .pain-list button strong {
    font-size: 15px;
  }

  .finder-result-image {
    min-height: 390px;
  }

  .finder-result-copy {
    min-height: 430px;
    padding: 36px 24px 30px;
  }

  .shop-section {
    padding: 85px 0 70px;
  }

  .shop-heading {
    padding: 0 19px;
  }

  .product-reel {
    grid-auto-columns: 84vw;
    padding: 0 19px 20px;
  }

  .product-image {
    height: 500px;
  }

  .accessory-card {
    min-height: 628px;
  }

  .drag-note {
    margin-left: 19px;
  }

  .science-panels {
    grid-template-columns: 1fr;
  }

  .science-panel {
    min-height: 590px;
    padding: 25px 23px 33px;
  }

  .science-panel h3 {
    font-size: 55px;
  }

  .routine-image {
    min-height: 520px;
  }

  .routine-copy {
    min-height: 700px;
    padding: 82px 19px 50px;
  }

  .routine-copy h2 {
    font-size: 50px;
  }

  .compare-heading {
    display: block;
  }

  .compare-heading .eyebrow {
    margin-bottom: 25px;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 710px;
  }

  .quiz-card {
    padding: 36px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .quiz-card .button {
    width: 100%;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .learn-card-large {
    grid-column: auto;
  }

  .learn-card > img,
  .learn-card-large > img,
  .learn-abstract {
    height: 440px;
  }

  .faq-section {
    gap: 60px;
  }

  .faq-list summary {
    min-height: 92px;
    grid-template-columns: 32px 1fr auto;
    gap: 8px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin-left: 32px;
  }

  .support-section {
    min-height: 670px;
    padding: 90px 19px;
  }

  .support-content h2 {
    font-size: 49px;
  }

  .support-content > div {
    flex-direction: column;
  }

  .safety-note {
    padding: 28px 19px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  footer {
    padding: 55px 19px 24px;
  }

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

  .footer-main {
    gap: 58px;
  }

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

  .footer-bottom {
    gap: 18px;
    grid-template-columns: 1fr auto;
  }

  .footer-bottom div {
    display: none;
  }
}

@media (max-width: 1050px) {
  .shop-page-hero {
    min-height: 720px;
  }

  .shop-page-hero-copy {
    width: 68vw;
  }

  .shop-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .therapy-link {
    min-height: 245px;
    grid-template-columns: 28px 1fr;
  }

  .therapy-link i {
    display: none;
  }

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

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

  .accessory-item:nth-child(2) {
    border-right: 0;
  }

  .accessory-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
}

@media (max-width: 700px) {
  .bag-head {
    min-height: 76px;
    padding: 0 19px;
  }

  .bag-shipping,
  .bag-lines,
  .bag-footer {
    padding-left: 19px;
    padding-right: 19px;
  }

  .bag-line {
    grid-template-columns: 105px 1fr;
    gap: 14px;
  }

  .bag-line > img {
    width: 105px;
    height: 138px;
  }

  .bag-empty h2 {
    font-size: 38px;
  }

  .shop-page-hero {
    min-height: calc(100svh - 102px);
  }

  .shop-page-hero > img {
    object-position: 68% center;
  }

  .shop-page-hero-shade {
    background:
      linear-gradient(180deg, rgba(246,246,243,0.86) 0%, rgba(246,246,243,0.55) 52%, rgba(10,32,55,0.72) 100%);
  }

  .shop-page-hero-copy {
    width: 100%;
    padding: 62px 19px 180px;
  }

  .shop-page-hero-copy h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .shop-page-hero-copy > p:not(.eyebrow) {
    max-width: 88%;
    font-size: 13px;
  }

  .shop-page-hero-foot {
    min-height: 92px;
  }

  .shop-page-hero-foot span {
    padding: 12px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 7px;
  }

  .shop-intro,
  .catalog-section,
  .accessories-section {
    padding-left: 19px;
    padding-right: 19px;
  }

  .shop-intro {
    padding-top: 84px;
    padding-bottom: 65px;
  }

  .shop-intro-grid h2,
  .accessories-heading h2,
  .shop-guidance h2 {
    font-size: 49px;
  }

  .therapy-links {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .therapy-link {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-section {
    padding-bottom: 88px;
  }

  .catalog-toolbar {
    min-height: 115px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .catalog-filters {
    width: 100%;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-filters button {
    flex: 0 0 auto;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .catalog-image {
    height: 550px;
  }

  .accessories-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .accessory-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .accessory-item,
  .accessory-item:nth-child(2),
  .accessory-item:last-child {
    min-height: 410px;
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }

  .shop-guidance {
    min-height: 640px;
    padding: 88px 19px;
  }

  .guidance-rings {
    width: 130vw;
  }
}

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

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

  .hero-image {
    transform: none;
  }
}

/* Search */
.mobile-menu > button {
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: transparent;
  text-align: left;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.search-overlay,
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 28px;
  display: grid;
  place-items: start center;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  background: rgba(4, 14, 26, 0.72);
  backdrop-filter: blur(10px);
  transition: opacity 320ms ease, visibility 320ms;
}

.search-overlay.is-open,
.legal-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.search-dialog {
  width: min(1040px, 100%);
  min-height: 650px;
  margin: 6vh auto;
  padding: 0 4.5vw 34px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(2, 13, 26, 0.28);
  transform: translateY(-20px);
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}

.search-overlay.is-open .search-dialog {
  transform: translateY(0);
}

.search-head,
.legal-modal-head {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-head p {
  margin: 0;
}

.search-head button,
.legal-modal-head button {
  padding: 10px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.search-field {
  min-height: 130px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.search-field input {
  min-width: 0;
  flex: 1;
  padding: 18px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(32px, 5vw, 66px);
  font-weight: 430;
  letter-spacing: -0.055em;
}

.search-field input::placeholder {
  color: #a4afb8;
  opacity: 1;
}

.search-field i {
  color: var(--blue);
  font-size: 31px;
  font-style: normal;
}

.search-summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-results {
  border-top: 1px solid var(--line);
}

.search-results > a {
  min-height: 96px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 240ms ease, color 240ms ease;
}

.search-results > a:hover {
  padding-left: 10px;
  color: var(--blue);
}

.search-results > a > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.search-results > a div p {
  margin: 0 0 4px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-results > a h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.search-results > a small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.search-results > a > i {
  font-size: 18px;
  font-style: normal;
}

.search-empty {
  min-height: 300px;
  padding: 55px 0;
}

.search-empty h2 {
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 450;
  letter-spacing: -0.05em;
}

.search-empty p {
  color: var(--muted);
  font-size: 12px;
}

.search-empty a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 11px;
}

/* Legal documents */
.legal-overlay {
  z-index: 130;
  place-items: center;
}

.legal-modal {
  width: min(1050px, 100%);
  max-height: calc(100dvh - 56px);
  overflow: auto;
  color: var(--ink);
  background: #f4f5f3;
  box-shadow: 0 24px 90px rgba(2, 13, 26, 0.32);
  transform: translateY(24px) scale(0.99);
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}

.legal-overlay.is-open .legal-modal {
  transform: translateY(0) scale(1);
}

.legal-modal-head {
  min-height: 64px;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(244,245,243,0.96);
  backdrop-filter: blur(14px);
}

.legal-modal-body {
  padding: 70px 8vw 55px;
}

.legal-modal-body > header {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 20px 7vw;
  padding-bottom: 58px;
}

.legal-modal-body > header p {
  margin: 10px 0 0;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-modal-body > header h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.9;
  font-weight: 450;
  letter-spacing: -0.065em;
}

.legal-modal-body > header strong {
  grid-column: 2;
  max-width: 650px;
  color: #40566b;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.legal-sections {
  border-top: 1px solid var(--ink);
}

.legal-sections article {
  min-height: 175px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 7vw;
  border-bottom: 1px solid var(--line);
}

.legal-sections article > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.legal-sections h3 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-sections p {
  max-width: 680px;
  margin: 0;
  color: #52677a;
  font-size: 11px;
  line-height: 1.8;
}

.legal-contact {
  margin-top: 55px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  color: white;
  background: var(--navy);
}

.legal-contact p {
  margin: 0;
  font-size: 12px;
}

.legal-contact a {
  color: #9fc0ff;
  font-size: 12px;
}

/* Contact */
.contact-hero {
  min-height: 590px;
  padding: 100px 4.5vw 70px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 7vw;
  align-items: end;
  color: white;
  background:
    radial-gradient(circle at 78% 27%, rgba(62,119,235,0.38), transparent 24%),
    linear-gradient(130deg, #06172a 0%, #092f58 70%, #0a4b91 100%);
}

.contact-hero h1,
.support-page-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.88;
  font-weight: 430;
  letter-spacing: -0.07em;
}

.contact-hero > p {
  max-width: 440px;
  margin: 0 0 15px;
  color: #c5d5e7;
  font-size: 15px;
  line-height: 1.7;
}

.contact-details {
  padding: 105px 4.5vw 125px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
  background: var(--paper);
}

.contact-rail {
  border-top: 1px solid var(--ink);
}

.contact-rail > div {
  padding: 27px 0 32px;
  border-bottom: 1px solid var(--line);
}

.contact-rail span {
  display: block;
  margin-bottom: 19px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-rail a,
.contact-rail strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

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

.contact-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.contact-form {
  padding: 55px;
  background: white;
  border: 1px solid var(--line);
}

.contact-form-heading {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.contact-form-heading .eyebrow {
  grid-column: 1 / -1;
}

.contact-form-heading h2 {
  margin: 17px 0 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 440;
  letter-spacing: -0.055em;
}

.contact-form-heading > span {
  padding-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.contact-form-grid {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.contact-form label {
  padding: 23px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.contact-form label > span {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #99a5ae;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-form-submit {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.contact-form-submit p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.contact-status {
  margin: 25px 0 0;
  padding: 15px;
  color: #0f6f4a;
  background: #e4f5ed;
  font-size: 10px;
}

.contact-emergency {
  padding: 55px 4.5vw;
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.7fr;
  gap: 5vw;
  align-items: start;
  color: white;
  background: var(--blue);
}

.contact-emergency > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-emergency h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 450;
  letter-spacing: -0.045em;
}

.contact-emergency p {
  margin: 0;
  color: #d7e4ff;
  font-size: 11px;
  line-height: 1.7;
}

/* Support */
.support-page-hero {
  min-height: 680px;
  padding: 110px 4.5vw 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--navy);
}

.support-page-hero > div:first-child {
  position: relative;
  z-index: 2;
}

.support-page-orbit {
  width: min(740px, 60vw);
  aspect-ratio: 1;
  position: absolute;
  right: -5vw;
  top: -19%;
  display: grid;
  place-items: center;
}

.support-page-orbit i {
  position: absolute;
  border: 1px solid rgba(116,160,247,0.28);
  border-radius: 50%;
}

.support-page-orbit i:nth-child(1) { inset: 4%; }
.support-page-orbit i:nth-child(2) { inset: 21%; }
.support-page-orbit i:nth-child(3) { inset: 38%; background: rgba(62,119,235,0.12); }

.support-page-orbit span {
  color: #8db3ff;
  font-size: 80px;
  font-weight: 200;
}

.support-start {
  padding: 115px 4.5vw;
  background: var(--paper);
}

.support-start-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: end;
}

.support-start-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.92;
  font-weight: 440;
  letter-spacing: -0.065em;
}

.support-paths {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.support-paths a {
  min-height: 260px;
  padding: 25px;
  position: relative;
  border-right: 1px solid var(--line);
  transition: color 260ms ease, background 260ms ease;
}

.support-paths a:last-child {
  border-right: 0;
}

.support-paths a:hover {
  color: white;
  background: var(--blue);
}

.support-paths span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.support-paths a:hover span {
  color: #d6e3ff;
}

.support-paths h3 {
  margin: 75px 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.support-paths p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.support-paths a:hover p {
  color: #d6e3ff;
}

.support-paths i {
  position: absolute;
  right: 24px;
  top: 23px;
  font-style: normal;
}

.support-guides {
  background: white;
}

.support-guides article {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.support-guides article > div:last-child {
  padding: 100px 7vw;
  align-self: center;
}

.support-guides h2 {
  margin: 21px 0 50px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.95;
  font-weight: 440;
  letter-spacing: -0.06em;
}

.support-guide-visual {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #dae6f7;
}

.visual-setup {
  grid-template-columns: repeat(3, 110px);
  gap: 24px;
}

.visual-setup::before,
.visual-setup::after {
  content: "";
  width: 430px;
  height: 430px;
  position: absolute;
  border: 1px solid rgba(18,73,137,0.22);
  border-radius: 50%;
}

.visual-setup::after {
  width: 600px;
  height: 600px;
}

.visual-setup span {
  width: 110px;
  height: 170px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 55px;
  font-size: 27px;
  box-shadow: 0 20px 45px rgba(16,70,135,0.16);
}

.visual-setup span:nth-child(2) {
  height: 250px;
  color: var(--blue);
  background: white;
}

.support-guides ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.support-guides li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
}

.support-guides li > span {
  padding-top: 3px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.support-guides li p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.support-guides li strong {
  color: var(--ink);
  font-weight: 550;
}

.support-guide-reverse > div:first-child {
  grid-column: 2;
}

.support-guide-reverse > div:last-child {
  grid-column: 1;
  grid-row: 1;
}

.visual-pads {
  background: var(--blue);
}

.visual-pads i {
  width: 220px;
  height: 145px;
  position: absolute;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  transform: rotate(-23deg);
}

.visual-pads i:nth-child(1) { translate: -120px -150px; }
.visual-pads i:nth-child(2) { translate: 130px -60px; transform: rotate(19deg); }
.visual-pads i:nth-child(3) { translate: -90px 130px; transform: rotate(12deg); }
.visual-pads i:nth-child(4) { translate: 155px 155px; transform: rotate(-34deg); }

.support-page-faq {
  padding: 115px 4.5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  color: white;
  background: var(--navy);
}

.support-page-faq h2 {
  margin: 22px 0 40px;
  font-size: clamp(49px, 6vw, 82px);
  line-height: 0.94;
  font-weight: 440;
  letter-spacing: -0.06em;
}

.support-page-faq-list {
  border-top: 1px solid rgba(255,255,255,0.28);
}

.support-page-faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.support-page-faq-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}

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

.support-page-faq-list summary span {
  color: #8fb4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.support-page-faq-list summary i {
  font-size: 19px;
  font-style: normal;
  transition: transform 240ms ease;
}

.support-page-faq-list details[open] summary i {
  transform: rotate(45deg);
}

.support-page-faq-list details p {
  margin: -7px 30px 30px 45px;
  color: #aebdcb;
  font-size: 11px;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .contact-hero,
  .contact-details,
  .contact-emergency,
  .support-page-faq {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    align-content: end;
  }

  .contact-hero > p {
    max-width: 600px;
  }

  .contact-details {
    gap: 65px;
  }

  .contact-emergency {
    gap: 25px;
  }

  .support-paths {
    grid-template-columns: 1fr 1fr;
  }

  .support-paths a:nth-child(2) {
    border-right: 0;
  }

  .support-paths a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .support-page-faq {
    gap: 65px;
  }
}

@media (max-width: 700px) {
  .search-overlay,
  .legal-overlay {
    padding: 0;
  }

  .search-dialog {
    min-height: 100dvh;
    margin: 0;
    padding: 0 19px 30px;
  }

  .search-field {
    min-height: 115px;
  }

  .search-field input {
    font-size: 34px;
  }

  .search-results > a {
    min-height: 108px;
    grid-template-columns: 35px 1fr auto;
  }

  .search-results > a small {
    max-width: 260px;
  }

  .legal-modal {
    max-height: 100dvh;
    min-height: 100dvh;
  }

  .legal-modal-head {
    padding: 0 19px;
  }

  .legal-modal-body {
    padding: 48px 19px 35px;
  }

  .legal-modal-body > header,
  .legal-sections article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-modal-body > header strong {
    grid-column: auto;
  }

  .legal-sections article {
    padding: 28px 0;
  }

  .legal-contact {
    padding: 24px;
    flex-direction: column;
    gap: 14px;
  }

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

  .footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 21px;
    grid-row: 2;
  }

  .footer-bottom > a {
    justify-self: start;
  }

  .contact-hero {
    min-height: 570px;
    padding: 88px 19px 55px;
  }

  .contact-hero h1,
  .support-page-hero h1 {
    font-size: 57px;
  }

  .contact-hero > p {
    font-size: 13px;
  }

  .contact-details {
    padding: 75px 19px 90px;
  }

  .contact-form {
    padding: 34px 22px;
  }

  .contact-form-heading,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-heading > span {
    margin-top: 18px;
  }

  .contact-message {
    grid-column: auto;
  }

  .contact-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-submit .button {
    width: 100%;
  }

  .contact-emergency {
    padding: 45px 19px;
  }

  .support-page-hero {
    min-height: 590px;
    padding: 90px 19px 55px;
  }

  .support-page-orbit {
    width: 110vw;
    right: -55vw;
  }

  .support-start {
    padding: 80px 19px;
  }

  .support-start-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-start-heading h2 {
    font-size: 54px;
  }

  .support-paths {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .support-paths a,
  .support-paths a:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-guides article {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .support-guide-visual {
    min-height: 510px;
  }

  .visual-setup {
    grid-template-columns: repeat(3, 75px);
    gap: 12px;
  }

  .visual-setup span {
    width: 75px;
    height: 125px;
  }

  .visual-setup span:nth-child(2) {
    height: 190px;
  }

  .support-guides article > div:last-child {
    padding: 75px 19px;
  }

  .support-guide-reverse > div:first-child,
  .support-guide-reverse > div:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .support-guide-reverse > div:first-child {
    grid-row: 1;
  }

  .support-page-faq {
    padding: 85px 19px;
  }

  .support-page-faq-list summary {
    min-height: 106px;
    grid-template-columns: 30px 1fr auto;
    gap: 7px;
    font-size: 13px;
  }

  .support-page-faq-list details p {
    margin-left: 30px;
  }
}

/* Product detail page */
.catalog-image > a {
  width: 100%;
  height: 100%;
  display: block;
}

.product-not-found {
  min-height: 660px;
  padding: 120px 4.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-not-found h1 {
  margin: 25px 0 45px;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 430;
  letter-spacing: -0.07em;
}

.pdp-breadcrumb {
  min-height: 56px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-breadcrumb a:hover {
  color: var(--blue);
}

.pdp-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
  background: white;
}

.woocommerce-product-gallery {
  min-width: 0;
  padding: 22px 22px 35px;
  background: #e9eef3;
}

.pdp-gallery-stage {
  height: min(75vw, 770px);
  position: relative;
  overflow: hidden;
  background: #e3eaf0;
}

.woocommerce-product-gallery__wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
}

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

.pdp-gallery-count {
  position: absolute;
  right: 18px;
  bottom: 17px;
  padding: 8px 11px;
  color: white;
  background: rgba(5, 22, 40, 0.76);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.pdp-gallery-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.pdp-gallery-thumbs button {
  min-width: 0;
  padding: 0;
  position: relative;
  border: 1px solid transparent;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.pdp-gallery-thumbs button.is-active {
  border-color: var(--blue);
}

.pdp-gallery-thumbs img,
.thumb-art {
  width: 100%;
  height: 110px;
  display: block;
  object-fit: cover;
  background: #d8e2eb;
}

.pdp-gallery-thumbs small {
  padding: 9px;
  display: block;
  background: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.thumb-art {
  position: relative;
  overflow: hidden;
}

.thumb-art i {
  position: absolute;
  display: block;
  background: var(--blue);
}

.thumb-product {
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
}

.thumb-product i {
  width: 42px;
  height: 62px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: white;
  border-radius: 21px;
  font-size: 20px;
  font-style: normal;
}

.thumb-1 i {
  width: 20%;
  height: 48%;
  bottom: 23%;
}
.thumb-1 i:nth-child(1) { left: 16%; }
.thumb-1 i:nth-child(2) { left: 40%; height: 69%; }
.thumb-1 i:nth-child(3) { left: 64%; height: 35%; }

.thumb-2 {
  background: var(--navy);
}
.thumb-2 i {
  width: 22%;
  aspect-ratio: 1;
  top: 38%;
  border: 1px solid #8fb4ff;
  border-radius: 50%;
  background: transparent;
}
.thumb-2 i:nth-child(1) { left: 13%; }
.thumb-2 i:nth-child(2) { left: 39%; }
.thumb-2 i:nth-child(3) { left: 65%; }

.thumb-3 i {
  width: 31%;
  height: 44%;
  top: 28%;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 30px rgba(8,37,70,0.14);
}
.thumb-3 i:nth-child(1) { left: 10%; }
.thumb-3 i:nth-child(2) { left: 35%; }
.thumb-3 i:nth-child(3) { left: 60%; }

.pdp-art {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.pdp-art-programs {
  padding: 0 12%;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: white;
  background: var(--blue);
}

.pdp-art-programs::before {
  content: "";
  width: 75%;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,0.04), 0 0 0 180px rgba(255,255,255,0.03);
}

.pdp-art-programs > span {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 350;
  letter-spacing: -0.06em;
}

.pdp-art-programs > p,
.pdp-art-kit > p {
  position: absolute;
  left: 30px;
  bottom: 24px;
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pdp-art-controls {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 0 14%;
  color: white;
  background: var(--navy);
}

.pdp-art-controls i {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #789ed1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(86,133,224,0.08);
}

.pdp-art-controls strong {
  position: absolute;
  bottom: 35px;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.pdp-art-kit {
  color: var(--ink);
  background: #dbe6f0;
}

.kit-controller {
  width: 220px;
  height: 320px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 110px;
  font-size: 85px;
  font-weight: 200;
  box-shadow: 0 35px 70px rgba(12,64,124,0.18);
}

.kit-pads {
  position: absolute;
  inset: 0;
}

.kit-pads i {
  width: 145px;
  height: 110px;
  position: absolute;
  border: 2px solid white;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.kit-pads i:nth-child(1) { left: 10%; top: 15%; transform: rotate(-18deg); }
.kit-pads i:nth-child(2) { right: 10%; top: 20%; transform: rotate(20deg); }
.kit-pads i:nth-child(3) { left: 12%; bottom: 15%; transform: rotate(13deg); }
.kit-pads i:nth-child(4) { right: 9%; bottom: 13%; transform: rotate(-24deg); }

.pdp-primary .summary {
  padding: clamp(55px, 7vw, 105px) clamp(45px, 6vw, 90px);
  align-self: start;
}

.pdp-summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdp-summary-top p {
  margin: 0;
}

.pdp-summary-top .product-badge {
  padding: 0;
  position: static;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
}

.product-badge,
.pdp-product-family {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stock.in-stock {
  color: #177254;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pdp-product-family {
  margin: 70px 0 15px;
}

.product_title {
  margin: 0;
  font-size: clamp(66px, 7.5vw, 112px);
  line-height: 0.84;
  font-weight: 420;
  letter-spacing: -0.075em;
}

.woocommerce-product-rating {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.star-rating {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.woocommerce-review-link {
  color: var(--muted);
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp-primary .price {
  margin: 28px 0 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.woocommerce-product-details__short-description {
  margin-top: 33px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.woocommerce-product-details__short-description p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.pdp-feature-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pdp-feature-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.pdp-feature-list li span {
  width: 42px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.pdp-primary form.cart {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
}

.pdp-primary .quantity {
  min-height: 58px;
  display: grid;
  grid-template-columns: 33px 1fr 33px;
  border: 1px solid var(--ink);
}

.pdp-primary .quantity button,
.pdp-primary .quantity input {
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  text-align: center;
}

.pdp-primary .quantity button {
  cursor: pointer;
  font-size: 16px;
}

.pdp-primary .quantity input {
  appearance: textfield;
  font-size: 12px;
}

.single_add_to_cart_button {
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--navy);
  color: white;
  background: var(--navy);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.single_add_to_cart_button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.pdp-added {
  margin: 12px 0 0;
  padding: 13px 15px;
  color: #136145;
  background: #e2f2eb;
  font-size: 9px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.pdp-buying-notes {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.pdp-buying-notes > div {
  min-height: 55px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.pdp-buying-notes > div > span {
  color: var(--blue);
}

.pdp-buying-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.pdp-buying-notes strong {
  margin-right: 9px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 550;
}

.product_meta {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.pdp-highlight-band {
  padding: 105px 4.5vw;
  color: white;
  background: var(--blue);
}

.pdp-highlight-band > div {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.4);
}

.pdp-highlight-band article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.pdp-highlight-band article:last-child {
  border-right: 0;
}

.pdp-highlight-band article > span {
  color: #ccdcff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.pdp-highlight-band h2 {
  margin: 92px 0 15px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  font-weight: 450;
  letter-spacing: -0.05em;
}

.pdp-highlight-band article p {
  max-width: 330px;
  margin: 0;
  color: #d5e2ff;
  font-size: 10px;
  line-height: 1.65;
}

.woocommerce-tabs {
  padding: 100px 4.5vw 125px;
  background: var(--paper);
}

.woocommerce-tabs .tabs {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.woocommerce-tabs .tabs li button {
  padding: 0 0 17px;
  position: relative;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.woocommerce-tabs .tabs li.active button {
  color: var(--blue);
}

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

.woocommerce-Tabs-panel {
  padding-top: 65px;
}

.pdp-tab-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.pdp-tab-description h2,
.pdp-related-heading h2 {
  margin: 20px 0 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.94;
  font-weight: 440;
  letter-spacing: -0.065em;
}

.pdp-tab-description > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.pdp-tab-description h3 {
  margin: 42px 0 15px;
  font-size: 16px;
  font-weight: 550;
}

.pdp-tab-description ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.pdp-tab-description li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.woocommerce-product-attributes {
  width: min(820px, 100%);
  margin-left: auto;
  border-collapse: collapse;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.woocommerce-product-attributes th {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.woocommerce-product-attributes td p {
  margin: 0;
  font-size: 13px;
}

.woocommerce-Reviews {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
}

.pdp-review-score strong {
  display: block;
  font-size: 110px;
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.pdp-review-score span {
  display: block;
  margin-top: 25px;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.pdp-review-score p,
.pdp-review-copy p {
  color: var(--muted);
  font-size: 9px;
}

.pdp-review-copy blockquote {
  margin: 0;
  font-size: clamp(30px, 4vw, 57px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.related.products {
  padding: 110px 4.5vw 125px;
  background: white;
}

.pdp-related-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pdp-related-grid article {
  min-width: 0;
}

.pdp-related-grid img {
  width: 100%;
  height: clamp(340px, 36vw, 550px);
  object-fit: cover;
  background: #edf1f4;
}

.pdp-related-grid article p {
  margin: 17px 0 7px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-related-grid h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 480;
  letter-spacing: -0.04em;
}

.pdp-related-grid .price {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

/* Checkout */
.checkout-loading {
  min-height: 620px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
}

.checkout-heading {
  min-height: 350px;
  padding: 80px 4.5vw 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  color: white;
  background:
    radial-gradient(circle at 85% 12%, rgba(71,127,234,0.34), transparent 28%),
    var(--navy);
}

.checkout-heading h1 {
  margin: 19px 0 0;
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.88;
  font-weight: 420;
  letter-spacing: -0.07em;
}

.checkout-heading ol {
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  list-style: none;
}

.checkout-heading li {
  min-width: 115px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7890aa;
  border-bottom: 1px solid #40566b;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-heading li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 7px;
}

.checkout-heading li.is-complete,
.checkout-heading li.is-active {
  color: white;
  border-color: #8fb4ff;
}

.checkout-heading li.is-complete span {
  color: var(--navy);
  background: #8fb4ff;
  border-color: #8fb4ff;
}

.checkout-ready-notice {
  padding: 20px 4.5vw;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px 24px;
  color: #14583f;
  background: #dff2e9;
  font-size: 10px;
}

.checkout-ready-notice strong {
  font-size: 11px;
}

.checkout-ready-notice button {
  margin-left: auto;
  padding: 6px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.checkout-empty {
  min-height: 620px;
  padding: 100px 4.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
}

.checkout-empty > span {
  width: 75px;
  height: 75px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50%;
  font-size: 34px;
}

.checkout-empty h2 {
  margin: 22px 0 20px;
  font-size: clamp(45px, 7vw, 87px);
  line-height: 0.94;
  font-weight: 430;
  letter-spacing: -0.06em;
}

.checkout-empty > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.checkout-empty > div {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.checkout-login-coupon {
  padding: 35px 4.5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--paper);
}

.checkout-login-coupon > .woocommerce-info {
  padding: 18px 20px;
  color: var(--muted);
  background: #e7edf2;
  border-left: 2px solid var(--blue);
  font-size: 9px;
}

.checkout-login-coupon button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout_coupon {
  grid-column: 1 / -1;
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
}

.checkout_coupon > label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout_coupon > div {
  display: flex;
}

.checkout_coupon input {
  min-width: 0;
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  outline: 0;
}

.checkout_coupon .button {
  padding: 0 25px;
  border: 1px solid var(--navy);
  color: white;
  background: var(--navy);
  text-decoration: none;
}

.checkout_coupon > p {
  margin: 14px 0 0;
  padding: 11px;
  font-size: 9px;
}

.checkout_coupon .woocommerce-error {
  color: #8c2d34;
  background: #f7e4e5;
}

.checkout_coupon .woocommerce-message {
  color: #14583f;
  background: #dff2e9;
}

.canzoe-checkout {
  padding: 65px 4.5vw 125px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  gap: 7vw;
  align-items: start;
  background: var(--paper);
}

.checkout-section-heading {
  padding-bottom: 27px;
  display: grid;
  grid-template-columns: 45px 1fr;
  border-bottom: 1px solid var(--ink);
}

.checkout-section-heading > span {
  padding-top: 7px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.checkout-section-heading p {
  margin: 0 0 7px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-section-heading h2 {
  margin: 0;
  font-size: clamp(33px, 4vw, 54px);
  font-weight: 450;
  letter-spacing: -0.055em;
}

.checkout-fields,
.shipping_address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.checkout-fields .form-row-wide,
.shipping_address .form-row-wide {
  grid-column: 1 / -1;
}

.canzoe-checkout .form-row {
  margin: 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.canzoe-checkout .form-row label {
  margin-bottom: 11px;
  color: #36516a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.required {
  color: var(--blue);
  text-decoration: none;
}

.optional {
  color: #8b98a4;
  text-transform: none;
}

.canzoe-checkout .input-text,
.canzoe-checkout select,
.canzoe-checkout textarea {
  width: 100%;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
}

.canzoe-checkout select {
  min-height: 32px;
}

.canzoe-checkout textarea {
  resize: vertical;
  line-height: 1.6;
}

.woocommerce-shipping-fields {
  padding-top: 15px;
}

.woocommerce-shipping-fields h3 {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.woocommerce-shipping-fields h3 label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkout-notes-heading {
  margin-top: 75px;
}

.checkout-order-sticky {
  padding: 40px;
  position: sticky;
  top: 100px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(9, 37, 67, 0.08);
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.woocommerce-checkout-review-order-table thead th {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table td:last-child {
  text-align: right;
}

.checkout-product {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 13px;
}

.checkout-product img {
  width: 75px;
  height: 90px;
  object-fit: cover;
  background: #e9eef3;
}

.checkout-product a {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 550;
}

.checkout-product > div > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
}

.checkout-quantity {
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkout-quantity button {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.checkout-quantity strong {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.woocommerce-checkout-review-order-table tbody .product-total {
  font-size: 10px;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  padding-top: 25px;
  color: var(--ink);
  border-bottom: 0;
  font-size: 12px;
  font-weight: 600;
}

.woocommerce-checkout-review-order-table .order-total td {
  font-size: 20px;
}

.woocommerce-checkout-payment {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--ink);
}

.payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc_payment_method {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.wc_payment_method > input {
  margin-right: 9px;
}

.wc_payment_method > label {
  font-size: 11px;
  font-weight: 550;
  cursor: pointer;
}

.wc_payment_method > label span {
  margin-left: 10px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  font-weight: 400;
}

.payment_box {
  margin-top: 15px;
  padding: 16px;
  color: var(--muted);
  background: #edf2f5;
  font-size: 9px;
  line-height: 1.6;
}

.payment_box p {
  margin: 0;
}

.checkout-card-placeholder {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}

.checkout-card-placeholder span {
  padding: 10px;
  color: #7f8d99;
  background: white;
  border: 1px solid var(--line);
}

.place-order {
  padding: 0 !important;
  border-bottom: 0 !important;
}

.woocommerce-terms-and-conditions-wrapper {
  padding: 22px 0;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
  display: block;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.woocommerce-terms-and-conditions-wrapper label {
  display: inline;
  margin: 0 !important;
  color: var(--muted) !important;
  cursor: pointer;
  font-family: inherit !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.checkout-legal-link,
.woocommerce-privacy-policy-text button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-privacy-policy-text {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

#place_order {
  width: 100%;
  min-height: 60px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: white;
  background: var(--blue);
  cursor: pointer;
  font-size: 11px;
}

#place_order:hover {
  background: var(--navy);
}

.checkout-secure-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .pdp-primary {
    grid-template-columns: 1fr;
  }

  .pdp-gallery-stage {
    height: 760px;
  }

  .pdp-primary .summary {
    padding: 85px 8vw 100px;
  }

  .pdp-product-family {
    margin-top: 55px;
  }

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

  .checkout-order-column {
    grid-row: 1;
  }

  .checkout-order-sticky {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  .pdp-breadcrumb {
    padding: 0 19px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .woocommerce-product-gallery {
    padding: 10px 10px 20px;
  }

  .pdp-gallery-stage {
    height: 520px;
  }

  .pdp-gallery-thumbs {
    gap: 5px;
  }

  .pdp-gallery-thumbs img,
  .thumb-art {
    height: 72px;
  }

  .pdp-gallery-thumbs small {
    padding: 7px 4px;
    font-size: 5px;
  }

  .kit-controller {
    width: 135px;
    height: 205px;
  }

  .kit-pads i {
    width: 80px;
    height: 60px;
  }

  .pdp-primary .summary {
    padding: 68px 19px 82px;
  }

  .pdp-summary-top {
    align-items: flex-start;
    gap: 20px;
  }

  .product_title {
    font-size: 74px;
  }

  .pdp-primary form.cart {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .single_add_to_cart_button {
    min-width: 0;
  }

  .pdp-buying-notes strong {
    display: block;
    margin-bottom: 3px;
  }

  .pdp-highlight-band {
    padding: 80px 19px;
  }

  .pdp-highlight-band > div {
    grid-template-columns: 1fr;
  }

  .pdp-highlight-band article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .pdp-highlight-band h2 {
    margin-top: 65px;
  }

  .woocommerce-tabs {
    padding: 80px 19px 90px;
  }

  .woocommerce-tabs .tabs {
    gap: 20px;
    overflow-x: auto;
  }

  .woocommerce-tabs .tabs li {
    flex: 0 0 auto;
  }

  .pdp-tab-description,
  .woocommerce-Reviews {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .related.products {
    padding: 80px 19px 90px;
  }

  .pdp-related-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pdp-related-grid img {
    height: 500px;
  }

  .checkout-heading {
    min-height: 420px;
    padding: 75px 19px 40px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }

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

  .checkout-heading ol {
    width: 100%;
  }

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

  .checkout-heading li span {
    display: none;
  }

  .checkout-ready-notice {
    padding: 18px 19px;
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-ready-notice button {
    margin-left: 0;
  }

  .checkout-empty {
    padding: 85px 19px;
  }

  .checkout-empty > div {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-login-coupon {
    padding: 25px 19px 0;
    grid-template-columns: 1fr;
  }

  .checkout_coupon {
    grid-column: auto;
  }

  .checkout_coupon > div {
    flex-direction: column;
  }

  .checkout_coupon input {
    min-height: 50px;
  }

  .checkout_coupon .button {
    min-height: 48px;
  }

  .canzoe-checkout {
    padding: 45px 19px 90px;
    gap: 65px;
  }

  .checkout-order-sticky {
    padding: 25px 18px;
  }

  .checkout-fields,
  .shipping_address {
    grid-template-columns: 1fr;
  }

  .checkout-fields .form-row-wide,
  .shipping_address .form-row-wide {
    grid-column: auto;
  }

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

  .checkout-product img {
    width: 62px;
    height: 76px;
  }

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

  .checkout-card-placeholder span:first-child {
    grid-column: 1 / -1;
  }
}

/* Order received / thank you */
.woocommerce-order-received-page > .woocommerce-order {
  opacity: 0;
  transition: opacity 420ms ease;
}

.woocommerce-order-received-page > .woocommerce-order.is-loaded {
  opacity: 1;
}

.order-confirmation-hero {
  min-height: 650px;
  padding: 95px 4.5vw 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 7vw;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 15% 50%, rgba(73,132,246,0.38), transparent 27%),
    linear-gradient(130deg, #051426 0%, #082746 70%, #0a3b71 100%);
}

.order-confirmation-mark {
  width: min(340px, 30vw);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.order-confirmation-mark::before,
.order-confirmation-mark::after,
.order-confirmation-mark i {
  content: "";
  position: absolute;
  border: 1px solid rgba(143,180,255,0.28);
  border-radius: 50%;
}

.order-confirmation-mark::before {
  inset: 0;
}

.order-confirmation-mark::after {
  inset: 17%;
}

.order-confirmation-mark i {
  inset: 33%;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 70px rgba(68,126,240,0.35);
}

.order-confirmation-mark span {
  position: relative;
  z-index: 1;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 250;
  animation: orderCheckIn 650ms 180ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes orderCheckIn {
  from { opacity: 0; transform: scale(0.5) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.order-confirmation-copy h1 {
  margin: 22px 0 32px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 420;
  letter-spacing: -0.07em;
}

.woocommerce-thankyou-order-received {
  max-width: 650px;
  margin: 0;
  color: #bbcee1;
  font-size: 13px;
  line-height: 1.65;
}

.woocommerce-thankyou-order-received strong {
  color: white;
  font-weight: 500;
}

.woocommerce-order-overview {
  margin: 0;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #e7edf2;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.woocommerce-order-overview li {
  min-width: 0;
  min-height: 105px;
  padding: 27px 20px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce-order-overview li:not(:first-child) {
  padding-left: 20px;
}

.woocommerce-order-overview li:last-child {
  border-right: 0;
}

.woocommerce-order-overview strong {
  overflow: hidden;
  color: var(--ink);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.order-progress {
  padding: 115px 4.5vw;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  background: var(--paper);
}

.order-progress-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.94;
  font-weight: 430;
  letter-spacing: -0.065em;
}

.order-progress ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.order-progress li {
  min-height: 115px;
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.order-progress li > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.order-progress li strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 520;
}

.order-progress li p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.order-progress li > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #8c9aa6;
  border: 1px solid #9caab5;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.order-progress li.is-current > i {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.order-confirmation-body {
  padding: 110px 4.5vw 125px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 7vw;
  align-items: start;
  background: white;
}

.order-section-heading {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.order-section-heading .eyebrow {
  grid-column: 1 / -1;
}

.order-section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 440;
  letter-spacing: -0.06em;
}

.order-section-heading button {
  padding: 9px 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.woocommerce-table--order-details thead th {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-table--order-details .product-total {
  text-align: right;
}

.woocommerce-table--order-details tbody .product-name {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
}

.order-product-image {
  width: 96px;
  height: 112px;
  display: block;
  overflow: hidden;
  background: #e9eef3;
}

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

.woocommerce-table--order-details tbody .product-name > div {
  align-self: center;
}

.woocommerce-table--order-details tbody .product-name p {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.woocommerce-table--order-details tbody .product-name > div > a {
  font-size: 17px;
  font-weight: 520;
}

.woocommerce-table--order-details .product-quantity {
  margin-left: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.woocommerce-table--order-details tbody .product-total {
  font-size: 12px;
}

.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.woocommerce-table--order-details tfoot tr:first-child th,
.woocommerce-table--order-details tfoot tr:first-child td {
  padding-top: 35px;
}

.woocommerce-table--order-details tfoot .order-total th,
.woocommerce-table--order-details tfoot .order-total td {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.order-confirmation-aside {
  position: sticky;
  top: 100px;
}

.woocommerce-customer-details,
.order-help-card {
  padding: 36px;
  border: 1px solid var(--line);
}

.woocommerce-customer-details h2,
.order-help-card h2 {
  margin: 0 0 28px;
  font-size: 27px;
  line-height: 1;
  font-weight: 470;
  letter-spacing: -0.045em;
}

.woocommerce-customer-details address {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.75;
}

.woocommerce-customer-details address strong,
.woocommerce-customer-details address span {
  display: block;
}

.woocommerce-customer-details address strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 550;
}

.woocommerce-customer-details address p {
  margin: 17px 0 0;
}

.woocommerce-customer-details address p + p {
  margin-top: 2px;
}

.order-help-card {
  margin-top: 12px;
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.order-help-card > span {
  color: #d3e1ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-help-card h2 {
  margin-top: 55px;
}

.order-help-card p {
  margin: 0;
  color: #d8e4ff;
  font-size: 10px;
  line-height: 1.7;
}

.order-help-card a {
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 10px;
}

.order-ready-section {
  min-height: 620px;
  padding: 105px 4.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  color: white;
  background: var(--navy);
}

.order-ready-section h2 {
  margin: 22px 0 0;
  font-size: clamp(52px, 6.5vw, 94px);
  line-height: 0.92;
  font-weight: 430;
  letter-spacing: -0.065em;
}

.order-ready-links {
  border-top: 1px solid rgba(255,255,255,0.38);
}

.order-ready-links a {
  min-height: 105px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.order-ready-links a > span {
  color: #8fb4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.order-ready-links strong {
  font-size: 15px;
  font-weight: 450;
}

.order-ready-links i {
  font-size: 17px;
  font-style: normal;
}

.order-actions {
  padding: 60px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--paper);
}

@media (max-width: 1050px) {
  .order-confirmation-hero {
    grid-template-columns: 0.55fr 1.45fr;
  }

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

  .woocommerce-order-overview li:nth-child(3) {
    border-right: 0;
  }

  .woocommerce-order-overview li:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

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

  .order-confirmation-aside {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .order-help-card {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .order-confirmation-hero {
    min-height: 700px;
    padding: 80px 19px 65px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .order-confirmation-mark {
    width: 190px;
  }

  .order-confirmation-copy h1 {
    font-size: 57px;
  }

  .woocommerce-order-overview {
    padding: 0 19px;
    grid-template-columns: 1fr 1fr;
  }

  .woocommerce-order-overview li,
  .woocommerce-order-overview li:not(:first-child) {
    min-height: 100px;
    padding: 23px 14px 20px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .woocommerce-order-overview li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .woocommerce-order-overview li:nth-child(even) {
    padding-left: 14px;
  }

  .woocommerce-order-overview li:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-right: 0;
  }

  .order-progress {
    padding: 85px 19px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .order-progress li {
    grid-template-columns: 36px 1fr 28px;
  }

  .order-confirmation-body {
    padding: 85px 19px 95px;
    gap: 65px;
  }

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

  .order-section-heading button {
    margin-top: 17px;
    justify-self: start;
  }

  .woocommerce-table--order-details tbody .product-name {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .order-product-image {
    width: 70px;
    height: 86px;
  }

  .woocommerce-table--order-details tbody .product-name p {
    display: none;
  }

  .woocommerce-table--order-details tbody .product-name > div > a {
    font-size: 14px;
  }

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

  .order-ready-section {
    min-height: auto;
    padding: 85px 19px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .order-ready-section h2 {
    font-size: 55px;
  }

  .order-ready-links a {
    grid-template-columns: 34px 1fr auto;
  }

  .order-actions {
    padding: 55px 19px;
    align-items: stretch;
    flex-direction: column;
  }
}

/* Phone-first refinements: preserve complete imagery and compact the editorial scale. */
@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-button,
  .menu-button {
    min-width: 44px;
    min-height: 44px;
  }

  .cart-button {
    justify-content: flex-end;
  }

  .menu-button {
    padding: 8px;
  }

  .mobile-menu a,
  .mobile-menu > button {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--navy);
  }

  .hero-content {
    order: 1;
    padding: 56px 19px 44px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    position: relative;
    inset: auto;
    order: 2;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-specs {
    width: 100%;
    position: relative;
    inset: auto;
    order: 3;
  }

  .hero h1 {
    font-size: clamp(46px, 14.2vw, 64px);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 100%;
  }

  .finder-result {
    min-height: 0;
  }

  .finder-result-image {
    min-height: 0;
    background: #dce7ef;
  }

  .finder-result-image img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .product-image {
    height: auto;
    aspect-ratio: 595 / 875;
    background: #edf1f4;
  }

  .product-image img {
    object-fit: contain;
    transform: none;
  }

  .product-card:hover .product-image img {
    transform: none;
  }

  .routine-image {
    min-height: 0;
    background: #dce7ef;
  }

  .routine-image > img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .learn-card > img,
  .learn-card-large > img {
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #e6edf2;
  }

  .shop-page-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--paper);
  }

  .shop-page-hero-copy {
    width: 100%;
    padding: 58px 19px 44px;
    position: relative;
    order: 1;
  }

  .shop-page-hero > img {
    width: 100%;
    height: auto;
    position: relative;
    inset: auto;
    order: 2;
    object-fit: contain;
    object-position: center;
  }

  .shop-page-hero-shade {
    display: none;
  }

  .shop-page-hero-foot {
    min-height: 88px;
    position: relative;
    inset: auto;
    order: 3;
  }

  .shop-page-hero-copy h1 {
    font-size: clamp(46px, 14.2vw, 64px);
    line-height: 0.94;
  }

  .shop-page-hero-copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  .catalog-image {
    height: auto;
    aspect-ratio: 595 / 875;
  }

  .catalog-image img {
    object-fit: contain;
  }

  .search-overlay,
  .legal-overlay,
  .search-dialog,
  .legal-modal {
    width: 100%;
    max-width: 100vw;
  }

  .search-dialog {
    overflow-x: hidden;
  }

  .search-results > a {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .search-results > a small {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-hero {
    min-height: 470px;
    padding-top: 68px;
  }

  .support-page-hero {
    min-height: 485px;
    padding-top: 72px;
  }

  .support-page-orbit {
    width: 96vw;
    right: -50vw;
    top: -8%;
  }

  .pdp-primary,
  .pdp-primary > *,
  .woocommerce-product-gallery,
  .pdp-primary .summary {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

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

  .woocommerce-product-gallery {
    overflow: hidden;
  }

  .pdp-gallery-stage {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .woocommerce-product-gallery__wrapper img {
    object-fit: contain;
  }

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

  .pdp-related-grid img {
    height: auto;
    aspect-ratio: 595 / 875;
    object-fit: contain;
    background: #edf1f4;
  }

  .product_title,
  .contact-hero h1,
  .support-page-hero h1,
  .checkout-heading h1,
  .order-confirmation-copy h1,
  .order-ready-section h2,
  .support-start-heading h2,
  .support-content h2,
  .finder-heading h2,
  .shop-heading h2,
  .science-intro h2,
  .compare-heading h2,
  .learn-heading h2,
  .faq-heading h2,
  .shop-intro-grid h2,
  .accessories-heading h2,
  .shop-guidance h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .logo-link {
    width: 108px;
  }

  .hero h1,
  .shop-page-hero-copy h1 {
    font-size: 44px;
  }

  .finder-heading h2,
  .shop-heading h2,
  .science-intro h2,
  .compare-heading h2,
  .learn-heading h2,
  .faq-heading h2,
  .shop-intro-grid h2,
  .accessories-heading h2,
  .shop-guidance h2,
  .routine-copy h2,
  .support-content h2,
  .support-start-heading h2 {
    font-size: 43px;
    line-height: 0.98;
  }

  .science-panel h3 {
    font-size: 46px;
  }

  .product_title {
    font-size: 60px;
  }

  .contact-hero h1,
  .support-page-hero h1,
  .checkout-heading h1,
  .order-confirmation-copy h1 {
    font-size: 50px;
  }

  .order-ready-section h2 {
    font-size: 47px;
  }

  .checkout-heading {
    min-height: 380px;
  }
}

@media print {
  .announcement,
  .site-header,
  .order-progress,
  .order-ready-section,
  .order-actions,
  .order-help-card,
  footer {
    display: none !important;
  }

  .order-confirmation-hero {
    min-height: auto;
    padding: 35px 0;
    color: var(--ink);
    background: white;
  }

  .order-confirmation-mark {
    display: none;
  }

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

  .woocommerce-thankyou-order-received {
    color: var(--muted);
  }

  .order-confirmation-body {
    padding: 35px 0;
    grid-template-columns: 1fr;
  }

  .order-confirmation-aside {
    position: static;
  }
}

/* WordPress and WooCommerce markup bridge */
.screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-main {
  min-width: 0;
}

.custom-logo {
  width: 100%;
  height: auto;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.desktop-nav > ul,
.mobile-menu > ul,
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav > ul {
  display: flex;
  gap: 29px;
}

.desktop-nav li,
.footer-links li {
  margin: 0;
}

.mobile-menu > ul,
.mobile-menu > ul > li {
  display: contents;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
}

.admin-bar .site-header {
  top: 32px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0;
  padding: 17px 4.5vw;
  border: 0;
  border-left: 2px solid var(--blue);
  color: var(--muted);
  background: #e7edf2;
  font-size: 10px;
  line-height: 1.6;
  list-style: none;
}

.woocommerce-error {
  color: #8c2d34;
  background: #f7e4e5;
  border-left-color: #b63f49;
}

.woocommerce-message {
  color: #14583f;
  background: #dff2e9;
  border-left-color: #1d8660;
}

.woocommerce-message .button,
.woocommerce-info .button {
  min-width: 0;
  height: auto;
  margin-left: 18px;
  padding: 0;
  float: right;
  color: inherit;
  background: transparent;
  text-decoration: underline;
}

/* Native WooCommerce mini-cart */
.canzoe-mini-cart-content,
.canzoe-mini-cart-content .widget_shopping_cart_content {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.woocommerce-mini-cart {
  min-height: 0;
  margin: 0;
  padding: 24px 28px;
  flex: 1;
  overflow-y: auto;
  list-style: none;
}

.woocommerce-mini-cart-item {
  min-height: 145px;
  padding: 0 0 24px 120px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.woocommerce-mini-cart-item + .woocommerce-mini-cart-item {
  margin-top: 24px;
}

.woocommerce-mini-cart-item > a:not(.remove) {
  display: block;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.woocommerce-mini-cart-item img {
  width: 105px;
  height: 138px;
  position: absolute;
  left: -120px;
  top: 0;
  object-fit: contain;
  background: #e8eef3;
}

.woocommerce-mini-cart-item .remove {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  color: var(--muted);
  font-size: 9px;
  text-decoration: underline;
}

.woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}

.woocommerce-mini-cart__empty-message {
  margin: auto;
  padding: 40px;
  color: var(--muted);
  text-align: center;
}

.woocommerce-mini-cart__total {
  margin: 0;
  padding: 26px 28px 10px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.woocommerce-mini-cart__total .amount {
  color: var(--ink);
  font-size: 27px;
  font-weight: 500;
}

.woocommerce-mini-cart__buttons {
  margin: 0;
  padding: 12px 28px 28px;
}

.woocommerce-mini-cart__buttons .button {
  width: 100%;
  min-width: 0;
  margin-top: 9px;
  color: white;
  background: var(--navy);
}

.woocommerce-mini-cart__buttons .checkout {
  background: var(--blue);
}

/* Product archive */
.catalog-toolbar > .woocommerce-notices-wrapper {
  width: 100%;
}

.catalog-toolbar .woocommerce-result-count {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-toolbar .woocommerce-ordering {
  margin: 0 0 0 auto;
}

.catalog-toolbar select {
  min-height: 38px;
  padding: 0 34px 0 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 10px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filters a {
  height: 37px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 10px;
}

.catalog-filters a.is-active,
.catalog-filters a:hover {
  color: white;
  background: var(--navy);
}

.products {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.catalog-section > .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px 14px;
  padding-top: 35px;
}

.catalog-card {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.catalog-card .woocommerce-loop-product__link {
  display: block;
}

.catalog-image .attachment-woocommerce_thumbnail,
.catalog-image .woocommerce-placeholder {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

.catalog-title-row .woocommerce-loop-product__title {
  margin: 5px 0 0;
  padding: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 450;
  letter-spacing: -0.052em;
}

.catalog-title-row .price {
  display: block;
  padding-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
}

.catalog-actions .button {
  border: 0;
  color: white;
  background: var(--navy);
}

.catalog-actions .button.added {
  background: var(--blue);
}

.catalog-actions .added_to_cart {
  font-size: 9px;
  text-decoration: underline;
}

.woocommerce-pagination {
  padding-top: 65px;
}

.woocommerce-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 10px;
}

.woocommerce-pagination .current {
  color: white;
  background: var(--navy);
}

.shop-taxonomy-header {
  min-height: 420px;
  padding: 80px 4.5vw;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: white;
  background: var(--navy);
}

.shop-taxonomy-header h1 {
  margin: 20px 0 0;
  font-size: clamp(55px, 8vw, 108px);
  line-height: 0.9;
  font-weight: 420;
  letter-spacing: -0.07em;
}

.woocommerce-breadcrumb {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pdp-breadcrumb .woocommerce-breadcrumb {
  width: 100%;
}

/* Native single-product hooks and gallery */
.pdp-primary {
  position: relative;
}

.pdp-primary > .onsale {
  z-index: 4;
  left: 42px;
  top: 42px;
  position: absolute;
}

.woocommerce-product-gallery {
  width: auto !important;
  float: none !important;
}

.woocommerce-product-gallery__image {
  height: 100%;
}

.woocommerce-product-gallery__trigger {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  font-size: 0;
}

.woocommerce-product-gallery__trigger::before {
  content: "+";
  color: var(--blue);
  font-size: 19px;
}

.flex-control-thumbs {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

.flex-control-thumbs li {
  min-width: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
}

.flex-control-thumbs img.flex-active {
  outline: 1px solid var(--blue);
  opacity: 1;
}

.pdp-stock .stock {
  margin: 0;
}

.pdp-primary .summary .product_title {
  margin-bottom: 22px;
}

.pdp-primary .summary .woocommerce-product-rating {
  margin: 0 0 24px;
}

.pdp-primary .summary .price {
  display: block;
  margin: 0 0 28px;
  font-size: 25px;
}

.pdp-primary .summary .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.pdp-primary .quantity {
  width: 112px;
  min-height: 58px;
  display: flex;
  border: 1px solid var(--ink);
}

.pdp-primary .quantity .qty {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: center;
}

.pdp-primary form.cart {
  align-items: stretch;
}

.pdp-primary form.cart .single_add_to_cart_button {
  width: 100%;
}

.pdp-primary .variations_form {
  display: block;
}

.pdp-primary .variations {
  width: 100%;
  margin-bottom: 22px;
  border-collapse: collapse;
}

.pdp-primary .variations th,
.pdp-primary .variations td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pdp-primary .variations select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: white;
}

.pdp-primary .single_variation_wrap {
  margin-top: 22px;
}

.product_meta {
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
}

.woocommerce-tabs .panel > h2:first-child {
  margin-top: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 440;
  letter-spacing: -0.055em;
}

.woocommerce-Tabs-panel--description {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5vw;
}

.woocommerce-Tabs-panel--description > h2:first-child {
  display: none;
}

.woocommerce-Tabs-panel--description > h2:nth-child(2) {
  grid-column: 1;
  grid-row: 1 / span 5;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.94;
  font-weight: 440;
  letter-spacing: -0.06em;
}

.woocommerce-Tabs-panel--description > :not(h2:first-child):not(h2:nth-child(2)) {
  grid-column: 2;
  margin-left: 0;
  margin-right: 0;
}

.related.products > h2,
.upsells.products > h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 440;
  letter-spacing: -0.06em;
}

.related.products > .products,
.upsells.products > .products {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.related.products li.product,
.upsells.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.related.products li.product img,
.upsells.products li.product img {
  width: 100%;
  height: 500px;
  margin: 0;
  object-fit: contain;
  background: #edf1f4;
}

.related.products .woocommerce-loop-product__title,
.upsells.products .woocommerce-loop-product__title {
  margin: 15px 0 0;
  padding: 0;
  font-size: 25px;
  font-weight: 480;
}

.related.products .button,
.upsells.products .button {
  min-width: 0;
  height: auto;
  margin-top: 12px;
  padding: 0;
  color: var(--blue);
}

/* Native checkout forms */
.checkout-login-coupon > .woocommerce-form-login-toggle,
.checkout-login-coupon > .woocommerce-form-coupon-toggle {
  min-width: 0;
}

.checkout-login-coupon .woocommerce-info {
  height: 100%;
  padding: 18px 20px;
}

.checkout-login-coupon .woocommerce-form-login,
.checkout-login-coupon .checkout_coupon {
  grid-column: 1 / -1;
}

.woocommerce-form-login {
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
}

.checkout-customer-column > .checkout-section-heading {
  margin-bottom: 22px;
}

.woocommerce-billing-fields > h3 {
  display: none;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}

.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection {
  height: 40px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.select2-container .select2-selection__rendered {
  padding-left: 0 !important;
  color: var(--ink) !important;
  font-size: 13px;
}

.woocommerce-additional-fields > h3 {
  margin: 75px 0 0;
  padding: 0 0 27px 45px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(33px, 4vw, 54px);
  font-weight: 450;
  letter-spacing: -0.055em;
}

.woocommerce-checkout-review-order-table .product-name {
  min-width: 0;
}

.woocommerce-checkout-review-order-table tbody .product-name {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
}

.checkout-product-image img {
  width: 62px;
  height: 76px;
  object-fit: contain;
  background: #e9eef3;
}

.checkout-product-copy {
  font-size: 12px;
  font-weight: 550;
}

.woocommerce-checkout-review-order-table .product-quantity {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.woocommerce-checkout-payment .place-order {
  display: block;
}

.woocommerce-terms-and-conditions-wrapper a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Native order details */
.order-details-dynamic {
  display: contents;
}

.order-confirmation-body .woocommerce-order-details {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.order-confirmation-body .woocommerce-customer-details {
  grid-column: 2;
  grid-row: 1;
}

.order-confirmation-body .order-help-card {
  grid-column: 2;
  grid-row: 2;
  margin-top: 12px;
}

.order-confirmation-body .order-payment-note {
  grid-column: 2;
  grid-row: 3;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.order-payment-note:empty {
  display: none;
}

.order-payment-note p {
  margin: 0;
}

.order-confirmation-body .woocommerce-order-details__title {
  margin: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 440;
  letter-spacing: -0.06em;
}

.woocommerce-table--order-details tbody .product-name > a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.order-product-copy {
  font-size: 17px;
  font-weight: 520;
}

.order-confirmation-body .woocommerce-columns--addresses {
  display: grid;
  gap: 12px;
}

.order-confirmation-body .woocommerce-column__title {
  margin: 0 0 28px;
  font-size: 27px;
  font-weight: 470;
}

/* Cart, account, and generic commerce screens */
.woocommerce-cart .site-main > .woocommerce,
.woocommerce-account .site-main > .woocommerce,
.woocommerce-page .entry-content > .woocommerce {
  padding: 80px 4.5vw 120px;
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
}

.woocommerce-cart-form table,
.cart_totals table,
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td,
.cart_totals th,
.cart_totals td,
.woocommerce-orders-table th,
.woocommerce-orders-table td {
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.woocommerce-cart-form .product-thumbnail img {
  width: 90px;
  height: 110px;
  object-fit: contain;
}

.cart-collaterals {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.cart_totals {
  width: min(540px, 100%);
}

.wc-proceed-to-checkout .checkout-button {
  width: 100%;
  margin-top: 22px;
  color: white;
  background: var(--blue);
}

.woocommerce-MyAccount-navigation {
  width: 28%;
  float: left;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid var(--line);
}

.woocommerce-MyAccount-content {
  width: calc(72% - 30px);
  float: right;
}

/* Standard WordPress content */
.content-shell,
.article-single,
.search-page-results {
  width: min(1180px, calc(100% - 9vw));
  margin: 0 auto;
  padding: 105px 0 125px;
}

.page-hero,
.article-single > header {
  min-height: 480px;
  padding: 90px 4.5vw 65px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: white;
  background: var(--navy);
}

.page-hero h1,
.article-single > header h1,
.not-found h1 {
  margin: 20px 0;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 420;
  letter-spacing: -0.07em;
}

.entry-content {
  font-size: 15px;
  line-height: 1.75;
}

.entry-content > * {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignwide {
  max-width: 1280px;
}

.entry-content > .alignfull {
  max-width: none;
}

.search-page-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px 14px;
}

.search-page-results article a {
  display: block;
}

.search-page-results article img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #e9eef3;
}

.search-page-results article p {
  margin: 16px 0 7px;
  color: var(--blue);
  font-size: 8px;
  text-transform: uppercase;
}

.search-page-results article h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 480;
}

.not-found {
  min-height: 720px;
  padding: 100px 4.5vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: white;
  background: var(--navy);
}

.not-found > p:not(.eyebrow) {
  max-width: 540px;
  color: #bfd0e1;
}

.not-found > div {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.comments-area {
  width: min(860px, calc(100% - 38px));
  margin: 0 auto;
  padding: 60px 0;
}

@media (max-width: 1050px) {
  .catalog-section > .products,
  .search-page-results {
    grid-template-columns: 1fr 1fr;
  }

  .order-confirmation-body .woocommerce-order-details,
  .order-confirmation-body .woocommerce-customer-details,
  .order-confirmation-body .order-help-card,
  .order-confirmation-body .order-payment-note {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }

  .woocommerce-MyAccount-content {
    margin-top: 20px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 700px) {
  .desktop-nav > ul {
    display: none;
  }

  .woocommerce-mini-cart {
    padding-left: 19px;
    padding-right: 19px;
  }

  .woocommerce-mini-cart__total,
  .woocommerce-mini-cart__buttons {
    padding-left: 19px;
    padding-right: 19px;
  }

  .catalog-section > .products,
  .related.products > .products,
  .upsells.products > .products,
  .search-page-results {
    grid-template-columns: 1fr;
  }

  .catalog-image .attachment-woocommerce_thumbnail,
  .catalog-image .woocommerce-placeholder {
    object-fit: contain;
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .catalog-filters {
    width: 100%;
  }

  .catalog-toolbar .woocommerce-ordering {
    width: 100%;
    margin: 0;
  }

  .catalog-toolbar select {
    width: 100%;
  }

  .shop-taxonomy-header {
    min-height: 390px;
    padding: 70px 19px 50px;
  }

  .shop-taxonomy-header h1 {
    font-size: 50px;
  }

  .woocommerce-product-gallery {
    padding: 10px 10px 20px;
  }

  .woocommerce-product-gallery__wrapper {
    aspect-ratio: 4 / 5;
  }

  .woocommerce-product-gallery__image {
    height: 100%;
  }

  .woocommerce-product-gallery__image img {
    object-fit: contain;
  }

  .flex-control-thumbs {
    gap: 5px;
  }

  .flex-control-thumbs img {
    height: 72px;
    object-fit: contain;
  }

  .related.products li.product img,
  .upsells.products li.product img {
    height: auto;
    aspect-ratio: 595 / 875;
  }

  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .woocommerce-shipping-fields__field-wrapper .form-row-wide {
    grid-column: auto;
  }

  .woocommerce-additional-fields > h3 {
    padding-left: 0;
    font-size: 36px;
  }

  .woocommerce-Tabs-panel--description {
    grid-template-columns: 1fr;
  }

  .woocommerce-Tabs-panel--description > h2:nth-child(2),
  .woocommerce-Tabs-panel--description > :not(h2:first-child):not(h2:nth-child(2)) {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout-review-order-table tbody .product-name {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .checkout-product-image img {
    width: 52px;
    height: 66px;
  }

  .woocommerce-table--order-details tbody .product-name > a {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .order-product-copy {
    font-size: 14px;
  }

  .woocommerce-cart .site-main > .woocommerce,
  .woocommerce-account .site-main > .woocommerce,
  .woocommerce-page .entry-content > .woocommerce {
    padding: 60px 19px 85px;
  }

  .woocommerce-cart-form {
    overflow-x: auto;
  }

  .woocommerce-cart-form table {
    min-width: 680px;
  }

  .content-shell,
  .article-single,
  .search-page-results {
    width: calc(100% - 38px);
    padding: 80px 0 95px;
  }

  .page-hero,
  .article-single > header {
    min-height: 420px;
    padding: 75px 19px 55px;
  }

  .page-hero h1,
  .article-single > header h1,
  .not-found h1 {
    font-size: 50px;
  }

  .search-page-results article img {
    height: auto;
    object-fit: contain;
  }
}
