/** Shopify CDN: Minification failed

Line 5164:0 Expected "}" to go with "{"

**/
/* sora-css-part1-20260729 */
/* sora:cache-evict 2026-07-29T12:10:00.000Z mobile-layout-css-fingerprint-20260729 */
:root {
  --ink: #0c1419;
  --ink-soft: #1a2a33;
  --mist: #e8f1f4;
  --fog: #c5d8e0;
  --ice: #7eb8c9;
  --glacier: #2f6f7e;
  /* Quiet-luxury accent — cool stone teal, not terracotta */
  --accent: #3a6d7a;
  --paper: #f4f8fa;
  --white: #ffffff;
  /* Soft modern off-white — must match packshot JPG plates (no box-in-box) */
  --media-plate: #f4f4f6;
  --media-plate-soft: #f4f4f6;
  --wash-warm: #eef3f5;
  --shadow-card: 0 6px 22px rgba(12, 20, 25, 0.07);
  --shadow: 0 22px 54px rgba(12, 20, 25, 0.16);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 640px at 8% -12%, rgba(126, 184, 201, 0.38), transparent 58%),
    radial-gradient(900px 520px at 96% 4%, rgba(47, 111, 126, 0.14), transparent 52%),
    linear-gradient(180deg, #eaf3f6 0%, var(--paper) 42%, #e6eef2 100%);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 20, 25, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--glacier);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--glacier);
}

.nav-link--accent {
  color: var(--glacier);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-products__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.nav-products__toggle--mobile {
  display: none;
}

.nav-products__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav.is-products-open .nav-products__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.nav-products-panel {
  border-top: 1px solid rgba(12, 20, 25, 0.06);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 20, 25, 0.08);
  /* Stable click-only panel — no hover gap flicker against Shop CTA */
  position: relative;
  z-index: 40;
}

.nav-products-panel[hidden] {
  display: none !important;
}

.nav-products-panel__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem) 1.35rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.6rem 0.4rem 0.75rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cat:hover,
.nav-cat:focus-visible {
  background: rgba(12, 20, 25, 0.05);
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(12, 20, 25, 0.08);
}

.nav-cat__media {
  width: min(100%, 168px);
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f9 !important;
  box-shadow: none;
  border: none;
}

.nav-cat__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  box-sizing: border-box;
  background: transparent !important;
  aspect-ratio: unset !important;
  transform: none !important;
  display: block !important;
}

.nav-cat__label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav .nav-cta {
  display: inline-flex;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: var(--white);
  text-decoration: none;
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(12, 20, 25, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
}

/* Shop CTA: no translateY — prevents header control-row flicker vs Products panel */
.nav .nav-cta:hover {
  transform: none;
  background: var(--ink-soft);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(12, 20, 25, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: min(92vh, 900px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 3rem;
  position: relative;
}

.hero--cinema {
  /* Shared cinema shell — homepage slideshow uses hero-nav-safe-20260727 below */
  --sora-sticky-nav-offset: 4.6rem;
  --hero-viewport-cap: calc(100svh - var(--sora-sticky-nav-offset));
  width: 100%;
  min-height: 0;
  margin-top: calc(-1 * var(--sora-sticky-nav-offset));
  padding: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background: #0c1419;
}

/* Trade / CC / marketplace — 16:9 masters, viewport-capped (unchanged behaviour) */
.hero--cinema:not([data-sora-hero-cinema]) {
  aspect-ratio: auto;
  height: min(var(--hero-viewport-cap), calc(100vw * 9 / 16));
  max-height: var(--hero-viewport-cap);
}

/* hero-nav-safe-20260727 — homepage slideshow: full 3:2 image plane + nav-safe lower copy */
[data-sora-hero-cinema].hero--cinema {
  --hero-aspect: 3 / 2;
  aspect-ratio: var(--hero-aspect);
  height: auto;
  max-height: none;
}

.hero-cinema__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cinema__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transform: none !important;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero--cinema .brand-lockup,
  .hero--cinema h1,
  .hero--cinema .hero-lede,
  .hero--cinema .hero-actions {
    animation: none !important;
  }
}

.hero-cinema__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(12, 20, 25, 0.28) 0%, rgba(12, 20, 25, 0.1) 38%, rgba(12, 20, 25, 0.72) 100%),
    linear-gradient(105deg, rgba(12, 20, 25, 0.7) 0%, rgba(12, 20, 25, 0.28) 46%, transparent 70%);
}

.hero-cinema__copy {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 4vw, 3.25rem);
  width: min(90%, 42rem);
  max-width: 1200px;
  margin: 0;
  padding: 0;
  color: #f4f8fa;
  pointer-events: none;
}

/* Non-homepage cinema heroes — bottom-anchored copy in viewport-capped box */
.hero--cinema:not([data-sora-hero-cinema]) .hero-cinema__copy {
  bottom: clamp(1.75rem, 7%, 3.25rem);
  top: auto;
}

/* Homepage — viewport copy stage: bottom-anchored, nav-safe (no vertical centering) */
[data-sora-hero-cinema] .hero-cinema__copy {
  top: auto;
  bottom: max(0px, calc(100% - var(--hero-viewport-cap)));
  left: clamp(1.25rem, 6%, 3.25rem);
  width: min(90%, 42rem);
  max-height: var(--hero-viewport-cap);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transform: none;
  padding-top: var(--sora-sticky-nav-offset);
  padding-bottom: clamp(1.25rem, 5vh, 3rem);
  box-sizing: border-box;
}

.hero--cinema .brand-lockup {
  color: #fff;
  font-size: clamp(2rem, 4.2vw + 0.5rem, 4.5rem);
  line-height: 1.02;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-sora-hero-cinema] .brand-lockup {
  font-size: clamp(2.5rem, 4.2vw + 0.5rem, 4.2rem);
}

.hero--cinema h1 {
  color: #f7fbfd;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 0 0.7rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero--cinema .hero-lede {
  color: rgba(244, 248, 250, 0.9);
  max-width: 36ch;
  font-size: 1rem;
  margin: 0 0 1.25rem;
  line-height: 1.45;
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero--cinema .hero-actions {
  gap: 0.65rem;
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.hero--cinema .hero-actions .btn {
  padding: 0.78rem 1.25rem;
  font-size: 0.9rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 719px) {
  .hero--cinema {
    --sora-sticky-nav-offset: 3.85rem;
    --hero-viewport-cap: calc(100svh - var(--sora-sticky-nav-offset));
  }

  .hero--cinema:not([data-sora-hero-cinema]) .hero-cinema__copy {
    bottom: clamp(1.25rem, 8%, 2.5rem);
    left: 5%;
    width: 90%;
  }

  [data-sora-hero-cinema].hero--cinema {
    aspect-ratio: auto;
    height: min(var(--hero-viewport-cap), max(calc(100vw * 2 / 3), 26rem));
  }

  [data-sora-hero-cinema] .hero-cinema__copy {
    left: 5%;
    width: 90%;
    bottom: 0;
    padding-top: var(--sora-sticky-nav-offset);
    padding-bottom: clamp(1rem, 4vh, 2rem);
  }

  .hero--cinema .brand-lockup {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero--cinema .hero-lede {
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    margin-bottom: 1rem;
  }
}

.btn-ghost--on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost--on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.brand-lockup {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  animation: rise 0.9s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 12ch;
  animation: rise 1s ease 0.08s both;
}

.hero-lede {
  max-width: 38ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  animation: rise 1s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1s ease 0.24s both;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--glacier);
  font-weight: 600;
}

.trust-strip--brand {
  gap: 0;
  padding: 0;
  width: 100%;
  grid-template-columns: 1fr;
  border-block: 1px solid rgba(12, 20, 25, 0.06);
  background: rgba(255, 255, 255, 0.55);
}

.trust-strip--brand p {
  margin: 0;
  padding: 1.1rem 0.75rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  border-right: 1px solid rgba(12, 20, 25, 0.06);
}

.trust-strip--brand p:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 900px) {
  .trust-strip--brand {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip--brand p {
    border-right: 1px solid rgba(12, 20, 25, 0.06);
  }

  .trust-strip--brand p:last-child {
    border-right: 0;
  }
}

/* Homepage: install path clarity + why-buy (honest, no fake reviews) */
.path-clarity {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(232, 241, 244, 0.9), rgba(255, 255, 255, 0.72)),
    radial-gradient(700px 320px at 90% 10%, rgba(126, 184, 201, 0.22), transparent 60%);
  border-block: 1px solid rgba(12, 20, 25, 0.06);
}

.path-clarity__head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.path-clarity__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--glacier);
}

.path-clarity__head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.path-clarity__head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 48ch;
}

.path-clarity__grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 780px) {
  .path-clarity__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.path-clarity__card {
  display: block;
  padding: 1.25rem 1.3rem 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 20, 25, 0.07);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.path-clarity__card:hover {
  border-color: rgba(47, 111, 126, 0.28);
  box-shadow: 0 14px 34px rgba(12, 20, 25, 0.08);
  transform: translateY(-2px);
}

.path-clarity__card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

.path-clarity__card p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.path-clarity__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--glacier);
  letter-spacing: 0.04em;
}

.why-buy {
  padding: clamp(2.75rem, 6vw, 4.75rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(247, 247, 249, 0.55), rgba(255, 255, 255, 0.92));
  border-block: 1px solid rgba(12, 20, 25, 0.05);
}

.why-buy__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.why-buy__copy {
  max-width: 36rem;
}

.why-buy__head {
  margin-bottom: 1.35rem;
}

.why-buy__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--glacier);
}

.why-buy__head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.why-buy__head p {
  margin: 0;
  color: var(--ink-soft);
}

.why-buy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.why-buy__item {
  padding: 0.95rem 0 0;
  background: transparent;
  border-top: 1px solid rgba(12, 20, 25, 0.08);
}

.why-buy__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.why-buy__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.why-buy__visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 4 / 3;
  background: #e4ebe8;
  border-radius: calc(var(--radius) + 2px);
}

.why-buy__editorial {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  display: block;
}

.why-buy__proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: clamp(0.85rem, 2.5vw, 1.15rem);
  background: linear-gradient(180deg, transparent, rgba(12, 20, 25, 0.72));
  pointer-events: none;
  user-select: none;
}

.why-buy__label {
  display: inline;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.why-buy__label + .why-buy__label::before {
  content: "·";
  margin-right: 0.55rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.72;
}

@media (min-width: 900px) {
  .why-buy__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .why-buy__visual {
    aspect-ratio: 5 / 4;
    min-height: 320px;
  }
}

.plp__trust {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.plp__trust strong {
  color: var(--ink);
  font-weight: 600;
}

.trust-strip p {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 20, 25, 0.06);
  border-radius: 12px;
  text-align: center;
}

.anchor-target {
  display: block;
  position: relative;
  top: -4.5rem;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.chapters {
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
}

.chapters__head {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.chapter {
  margin: 0;
}

.chapter__plane {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  color: #f4f8fa;
  text-decoration: none;
  background: #0c1419;
}

/* Lifestyle scene — only when the photo is already 16:9-ready */
.chapter--scene .chapter__plane {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: min(48vh, 520px);
  min-height: 220px;
}

.chapter--scene .chapter__plane .chapter__img,
.chapter--scene .chapter__plane img.chapter__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  /* Top-bias — wall units stay framed (center 28% was clipping fascia) */
  object-position: top center !important;
  display: block !important;
  transition: transform 1.2s ease;
  background: #0c1419 !important;
  aspect-ratio: unset !important;
  transform: none;
  transform-origin: top center;
  padding: 0 !important;
}

/* Split chapter — taller plane; keep AC on upper wall in view */
.chapter--split.chapter--scene .chapter__plane {
  /* fullscreen-hero-glitch-20260725: lock ~2:1 so 1920 matches windowed
     composition (full woman + full Emura). max-height 72vh/820 forced ~2.5:1
     and destroyed the frame; art-direction wide crop is retired. */
  aspect-ratio: 2 / 1;
  max-height: min(92vh, 980px);
  min-height: 280px;
  height: auto;
}

.chapter--split.chapter--scene .chapter__plane .chapter__img,
.chapter--split.chapter--scene .chapter__plane img.chapter__img {
  /* Subject-safe window for this photograph. The band is full-bleed with a
     capped height, so its ratio runs from 1.4:1 on a phone to about 3.5:1 on a
     wide, short laptop window, and the crop has to hold at the tightest one.
     36% keeps headroom above the wall unit and keeps the reader's head whole
     across that whole range; 26% put the window's bottom edge on her chin, which
     sliced her head off past roughly 2.8:1. */
  object-position: 50% 28% !important;
}

.chapter--split .chapter__veil {
  background: linear-gradient(
    105deg,
    rgba(12, 20, 25, 0.58) 0%,
    rgba(12, 20, 25, 0.32) 34%,
    rgba(12, 20, 25, 0.1) 58%,
    rgba(12, 20, 25, 0.14) 100%
  );
}

.chapter--scene .chapter__plane:hover .chapter__img {
  transform: scale(1.03);
}

/* Product chapters — packshot fills a square, never cropped */
.chapter--product .chapter__plane {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  min-height: 0;
  background: var(--media-plate);
  color: var(--ink, #0c1419);
}

.chapter--product .chapter__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--media-plate);
  overflow: hidden;
}

.chapter--product .chapter__img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 8% !important;
  background: transparent !important;
  transform: none !important;
  transition: transform 0.8s ease;
}

.chapter--product .chapter__plane:hover .chapter__img {
  transform: scale(1.03) !important;
}

.chapter--product .chapter__copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 1.35rem 1.25rem 1.5rem;
  color: inherit;
}

.chapter--product .chapter__eyebrow {
  color: #5a6a73;
}

.chapter--product .chapter__copy h3 {
  color: var(--ink, #0c1419);
}

.chapter--product .chapter__copy p {
  color: #5a6a73;
}

.chapter--product .chapter__cta {
  color: var(--ink, #0c1419);
  border-bottom-color: rgba(12, 20, 25, 0.35);
}

.chapter__plane .chapter__img,
.chapter__plane img.chapter__img {
  display: block;
}

.chapter__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 20, 25, 0.08) 0%,
    rgba(12, 20, 25, 0.2) 48%,
    rgba(12, 20, 25, 0.68) 100%
  );
}

.chapter__copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  margin: 0;
  display: block;
}

.chapter__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(126, 184, 201, 0.95);
}

.chapter__copy h3,
.worldwide__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}

.chapter__copy p {
  margin: 0 0 1.1rem;
  color: rgba(244, 248, 250, 0.88);
  max-width: 34ch;
}

.chapter__cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.15rem;
  width: fit-content;
}

@media (min-width: 900px) {
  .chapter--fans.chapter--product .chapter__plane {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .chapter--fans.chapter--product .chapter__media {
    aspect-ratio: 1;
    max-height: 520px;
  }

  .chapter--fans.chapter--product .chapter__copy {
    padding: 2rem 2.5rem 2rem 1.5rem;
  }
}

.tour-teaser__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-teaser__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--media-plate);
  display: grid;
  place-items: center;
}

.tour-teaser__visual img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

.tour-teaser__pulse {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(47, 111, 126, 0.35);
  animation: tour-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

.residences {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
}

.residences__head {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.residences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border: none;
  outline: none;
  background: transparent;
}

.residences__tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8ecf0;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.residences__tile img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  transition: transform 1s ease;
  background: transparent !important;
  aspect-ratio: auto !important;
}

.residences__tile:hover img {
  transform: scale(1.04);
}

.residences__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(12, 20, 25, 0.72));
}

.residences__note {
  display: none;
}

/* ——— Why SORA · emotional reasons + inhabited mosaic ——— */
.why-sora {
  position: relative;
  padding: clamp(3rem, 7vw, 5.25rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(236, 242, 244, 0.72), rgba(247, 247, 249, 0.35) 55%, transparent);
  border-block: 1px solid rgba(12, 20, 25, 0.05);
}

.why-sora__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.why-sora__copy {
  position: relative;
  max-width: 36rem;
}

.why-sora__eyebrow,
.mood-living__eyebrow,
.air-board__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glacier);
}

.why-sora__copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.why-sora__lede {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 38ch;
}

.why-sora__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.why-sora__item {
  padding: 0;
  border: 0;
  background: transparent;
}

.why-sora__item h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.why-sora__item p {
  margin: 0;
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.why-sora__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.why-sora__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  min-width: 0;
}

.why-sora__shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e4ebe8;
}

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

.why-sora__shot:nth-child(1) img {
  object-position: 50% 42%;
}

.why-sora__shot:nth-child(2) img {
  object-position: 32% 48%;
}

.why-sora__shot:nth-child(3) img {
  object-position: 35% 50%;
}

.why-sora__shot:nth-child(4) img {
  object-position: 50% 24%;
}

@media (min-width: 900px) {
  .why-sora__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .why-sora__mosaic {
    gap: 0.55rem;
  }

  .why-sora__shot {
    aspect-ratio: 5 / 4;
    min-height: 168px;
  }
}


/* ——— Mood living · editorial residences board ——— */
.mood-living {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(180deg, rgba(232, 241, 244, 0.65), rgba(247, 247, 249, 0.4) 40%, transparent);
}

.mood-living__intro {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.mood-living__intro h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mood-living__intro p:not(.mood-living__eyebrow) {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.mood-living__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.mood-living__hero,
.mood-living__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e4ebe8;
  display: block;
  text-decoration: none;
  color: inherit;
}

.mood-living__hero {
  aspect-ratio: 16 / 10;
}

.mood-living__tile {
  aspect-ratio: 4 / 3;
}

.mood-living__hero img,
.mood-living__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 1.1s ease;
}

.mood-living__hero img {
  object-position: top center;
}

.mood-living__tile--interior img {
  object-position: top center;
}

.mood-living__tile--terrace img {
  object-position: center 45%;
}

.mood-living__hero:hover img,
.mood-living__tile:hover img {
  transform: scale(1.03);
}

.mood-living__hero figcaption,
.mood-living__tile figcaption,
.mood-living__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.75rem 1.1rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f7fbfd;
  background: linear-gradient(180deg, transparent, rgba(12, 20, 25, 0.72));
}

/* ——— Pinterest-style air lifestyle mosaic ——— */
.air-board {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
}

.air-board__head {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 1.35rem;
}

.air-board__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(140px, 22vw);
  gap: 0.55rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.air-board__cell {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #e4ebe8;
  min-height: 140px;
}

.air-board__cell--wide {
  grid-column: 1 / -1;
  grid-row: span 1;
  min-height: 200px;
  aspect-ratio: 16 / 9;
}

.air-board__cell--tall {
  grid-row: span 2;
}

.air-board__cell--span {
  grid-column: 1 / -1;
}

.air-board__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 1.05s ease, opacity 0.4s ease;
}

.air-board__cell--wide img {
  object-position: top center;
}

.air-board__cell--tall img {
  object-position: top center;
}

.air-board__cell--span img {
  object-position: top center;
}

.air-board__cell:hover img {
  transform: scale(1.04);
}

.air-board__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent, rgba(12, 20, 25, 0.7));
}

.air-board__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 0;
}

/* Scroll presence — soft fades, not noise (JS-enhanced only) */
html.sora-reveal-ready [data-sora-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__item,
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__shot,
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__item,
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__visual,
html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__hero,
html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__tile,
html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell {
  animation: sora-soft-rise 0.9s ease both;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__item:nth-child(2),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__shot:nth-child(2),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__item:nth-child(2),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__visual:nth-child(2),
html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__tile--interior,
html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell:nth-child(2) {
  animation-delay: 0.1s;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__item:nth-child(3),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__shot:nth-child(3),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__item:nth-child(3),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__visual:nth-child(3),
html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__tile--terrace,
html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell:nth-child(3) {
  animation-delay: 0.18s;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__item:nth-child(4),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__shot:nth-child(4),
html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__visual:nth-child(4),
html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell:nth-child(4) {
  animation-delay: 0.26s;
}

html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell:nth-child(5) {
  animation-delay: 0.34s;
}

@keyframes sora-soft-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.sora-reveal-ready [data-sora-reveal],
  html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__item,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .why-sora__shot,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__item,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .why-buy__visual,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__hero,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .mood-living__tile,
  html.sora-reveal-ready [data-sora-reveal].is-revealed .air-board__cell {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@keyframes cinema-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes tour-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes route-pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 184, 201, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(126, 184, 201, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 184, 201, 0); }
}

@keyframes route-flow {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-alt {
  background: rgba(255, 255, 255, 0.42);
  border-block: 1px solid rgba(12, 20, 25, 0.05);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2,
.split h2,
.cta-band h2,
.product-page h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-grid--dense {
  gap: 0.65rem;
}

.product-grid--dense .product-media {
  aspect-ratio: 1 / 1;
}

/* Universal media frame — light plate, product fills the frame */
.product-media,
.sora-product-media,
.product-hero-media,
.linked-item__media,
.cart-line > a,
.compare-card .sora-product-media {
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: var(--media-plate) !important;
  position: relative;
  border: none !important;
  box-shadow: none !important;
}

.product-media img,
.sora-product-media img,
.product-hero-media img,
.linked-item__media img,
.cart-line img,
.compare-card img,
.thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  background: transparent !important;
  padding: 2%;
  box-sizing: border-box;
}

/* Lifestyle frames can fill; packshots stay contain via default above.
   Prefer contain everywhere so the full product is always visible. */

.product-grid--dense .product-body {
  padding: 0.7rem 0.75rem 0.85rem;
}

.product-grid--dense .product-body h3 {
  font-size: 0.8125rem;
  -webkit-line-clamp: 2;
}

.product-grid--dense .product-body__foot {
  margin-top: 0.45rem;
}

.product-grid--dense .price {
  font-size: 0.8125rem;
}

.product-grid--dense .product-card .quick-add__btn {
  font-size: 0.75rem;
  padding: 0.36rem 0.7rem;
  min-width: 2.75rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(12, 20, 25, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: none;
  border-color: rgba(12, 20, 25, 0.12);
  box-shadow: 0 4px 18px rgba(12, 20, 25, 0.06);
}

.product-media img {
  transition: transform 0.35s ease;
}

/* Crisp product-card thumbs — prefer sharp edges over soft upscale blur */
.product-card .product-media img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.product-card:hover .product-media img {
  transform: none;
}

/* Collection cards: reveal lifestyle (position 2) on hover / focus */
.product-card--has-lifestyle .product-media__packshot,
.product-card--has-lifestyle .product-media__lifestyle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card--has-lifestyle .product-media__lifestyle {
  opacity: 0;
  object-fit: cover !important;
  padding: 0 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  z-index: 1;
}
.product-card--has-lifestyle .product-media__packshot {
  opacity: 1;
  z-index: 0;
}
.product-card--has-lifestyle:hover .product-media__lifestyle,
.product-card--has-lifestyle:focus-within .product-media__lifestyle {
  opacity: 1;
}
.product-card--has-lifestyle:hover .product-media__packshot,
.product-card--has-lifestyle:focus-within .product-media__packshot {
  opacity: 0;
}
@media (hover: none) {
  .product-card--has-lifestyle .product-media__lifestyle {
    opacity: 0;
  }
  .product-card--has-lifestyle .product-media__packshot {
    opacity: 1;
  }
}

.product-media {
  aspect-ratio: 1 / 1;
  background: var(--media-plate);
  position: relative;
  overflow: hidden;
}

.product-body {
  flex: 0 0 auto;
  padding: 0.85rem 1rem 1rem;
  background: #ffffff;
}

.product-body__label {
  margin: 0 0 0.35rem;
  font: 500 0.625rem/1.2 var(--font-body, "Sora", sans-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft, #5a6368);
}

.product-body__vendor {
  margin: 0 0 0.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft, #5a6368);
  font-weight: 500;
}

.product-body h3 {
  margin: 0;
  font-family: var(--font-display, "Instrument Serif", Georgia, serif);
  font-size: 0.9375rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--ink, #0c1419);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-body__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.product-body__foot .price {
  margin: 0;
}

.product-body .meta {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.product-body .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink, #0c1419);
}

.price s {
  font-weight: 400;
  color: var(--ink-soft, #5a6368);
  font-size: 0.8125rem;
}

.product-body .btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
}

.was {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--glacier);
  margin-top: 0.15rem;
}

.compare {
  display: grid;
  gap: 1.25rem;
}

.compare-card__media {
  border-radius: 12px;
  margin-bottom: 1rem;
}

.compare-card .sora-product-media {
  max-height: none !important;
}

.compare-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 20, 25, 0.07);
}

.compare-card.featured {
  background: linear-gradient(160deg, #123039, #1f4d58);
  color: var(--white);
  border: none;
}

.compare-card.featured .was,
.compare-card.featured .eyebrow {
  color: var(--ice);
}

.compare-card h3 {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.compare-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1.25rem;
}

.compare-card.featured .btn-primary {
  background: var(--white);
  color: var(--ink);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
}

.split {
  display: grid;
  gap: 2rem;
}

.checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(12, 20, 25, 0.08);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--glacier);
}

.margin-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.margin-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.margin-card dl {
  margin: 0;
}

.margin-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.margin-card dt {
  color: var(--fog);
}

.margin-card dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.fine {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--fog);
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews-nav {
  display: inline-flex;
  gap: 0.45rem;
}

.reviews-nav__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 20, 25, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.reviews-nav__btn:hover {
  background: #fff;
  border-color: rgba(12, 20, 25, 0.28);
}

.reviews-nav__btn:active {
  transform: scale(0.96);
}

.reviews-carousel {
  position: relative;
  margin-inline: calc(-1 * clamp(0px, 2vw, 0px));
}

.reviews-carousel.is-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 82%);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0.15rem 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  outline: none;
}

.reviews-track.is-marquee {
  display: flex;
  width: max-content;
  overflow: visible;
  scroll-snap-type: none;
  cursor: default;
  padding-bottom: 0.35rem;
  gap: 1rem;
  animation: sora-reviews-marquee var(--reviews-marquee-duration, 42s) linear infinite;
  will-change: transform;
}

.reviews-track.is-marquee.is-paused,
.reviews-carousel.is-marquee:hover .reviews-track.is-marquee {
  animation-play-state: paused;
}

.reviews-track.is-marquee .review {
  flex: 0 0 min(320px, 78vw);
  width: min(320px, 78vw);
  scroll-snap-align: unset;
}

.reviews-track.is-nudge-next {
  animation-duration: calc(var(--reviews-marquee-duration, 42s) * 0.55);
}

.reviews-track.is-nudge-prev {
  animation-direction: reverse;
  animation-duration: calc(var(--reviews-marquee-duration, 42s) * 0.55);
}

@keyframes sora-reviews-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.reviews-carousel.is-static .reviews-track.is-static,
.reviews-track.is-static {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-columns: unset;
  overflow: visible;
  scroll-snap-type: none;
  cursor: default;
  animation: none;
  width: 100%;
  transform: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews {
  display: contents;
}

.review {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(12, 20, 25, 0.06);
  box-shadow: 0 10px 28px rgba(12, 20, 25, 0.06);
  min-height: 100%;
  user-select: none;
}

.review .stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.review p {
  margin: 0 0 0.85rem;
}

.review .who {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--glacier);
  font-weight: 600;
}

.review__btn {
  margin-top: auto;
  align-self: flex-start;
  width: auto;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  user-select: none;
  pointer-events: auto;
}

.review-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--glacier);
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 20, 25, 0.06);
}

.steps span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--glacier);
}

.steps h3 {
  margin: 0.4rem 0;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

/* Homepage closing CTA — quiet inset, refined radius (heatwave-section-fix-20260729) */
.cta-band {
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0 clamp(1rem, 3vw, 1.5rem) clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 2.4vw, 1.6rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(118deg, rgba(28, 42, 48, 0.98), rgba(12, 20, 25, 0.99)),
    #0c1419;
  color: #f4f8fa;
  display: grid;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 560;
}

.cta-band p {
  margin: 0;
  color: rgba(232, 238, 241, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 38rem;
}

.cta-band .btn-primary {
  background: #f4f8fa;
  color: #0c1419;
  width: fit-content;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 600;
  box-shadow: none;
}

.footer,
.sora-site-footer {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.sora-site-footer {
  margin-top: 1rem;
  background: #fff;
  border-top: 1px solid rgba(12, 20, 25, 0.1);
}

.sora-site-footer__main {
  display: grid;
  gap: 2.25rem;
  padding: 2.75rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.sora-site-footer__cols {
  display: grid;
  gap: 1.75rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sora-site-footer__col,
.sora-site-footer__block {
  min-width: 0;
}

.sora-site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.sora-site-footer__col a,
.sora-site-footer__social a,
.sora-site-footer__legal-links a {
  display: block;
  margin: 0.4rem 0;
  color: #3a4550;
  text-decoration: none;
}

.sora-site-footer__col a:hover,
.sora-site-footer__social a:hover,
.sora-site-footer__legal-links a:hover,
.footer a:hover {
  color: var(--glacier);
}

.sora-site-footer__aside {
  display: grid;
  gap: 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(12, 20, 25, 0.08);
}

.sora-site-footer__plain {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-weight: 500;
}

.sora-site-footer__fine {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6a737b;
}

.sora-site-footer__chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid #1a1f24;
  border-radius: 999px;
  background: #fff;
  color: #1a1f24;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sora-site-footer__chat:hover {
  background: #1a1f24;
  color: #fff;
}

.sora-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.sora-site-footer__social a {
  display: inline;
  margin: 0;
}

.sora-site-footer__social span {
  color: #a0a8b0;
}

.sora-site-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: center;
}

.sora-site-footer__pay span {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(12, 20, 25, 0.12);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2a333a;
  background: #f7fafb;
}

.sora-site-footer__pay svg,
.sora-site-footer__pay .icon-svg {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.88;
}

.sora-site-footer__legal {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem) 1.6rem;
  border-top: 1px solid rgba(12, 20, 25, 0.1);
}

.sora-site-footer__legal-left p {
  margin: 0.15rem 0;
}

.sora-site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  font-size: 0.78rem;
}

.sora-site-footer__legal-links a {
  display: inline;
  margin: 0;
}

.sora-site-footer__legal-links span {
  color: #b0b6bc;
}

/* legacy footer hooks used elsewhere */
.footer {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid rgba(12, 20, 25, 0.08);
}

.footer .logo-mark {
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.footer a,
.footer p {
  display: block;
  margin: 0.25rem 0;
}

/* Product page — luxury retail: balanced gallery + sticky buy */
.pdp {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2.5rem) 3rem;
  max-width: min(94vw, 1360px);
  margin: 0 auto;
  align-items: start;
}

.pdp__gallery {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  background: transparent;
  border: none;
  box-shadow: none;
}

.pdp__buy { position: relative; }

/* ——— PDP swipe carousel: packshot → in-home lifestyle ——— */
.pdp__carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  outline: none;
  background: var(--media-plate);
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}

.pdp__carousel:focus-visible {
  box-shadow: 0 0 0 2px var(--wash, #fff), 0 0 0 4px var(--glacier);
}

.pdp__carousel-viewport {
  position: relative;
  overflow: hidden;
  /* Widescreen 4:3 canvas — landscape gallery (pdp-gallery-widescreen-20260726) */
  aspect-ratio: 4 / 3;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  max-height: 550px !important;
  min-height: 0;
  background-color: var(--media-plate) !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  isolation: isolate;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.pdp__carousel--solo .pdp__carousel-viewport {
  cursor: default;
}

/* Mobile: full-width widescreen gallery — no centered square postage stamp */
@media (max-width: 719px) {
  .pdp__gallery,
  .pdp__carousel {
    max-width: 100%;
    justify-self: stretch;
    margin-inline: 0;
  }

  .pdp__carousel-viewport {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    max-height: min(550px, 58vh) !important;
    height: auto !important;
  }
}

.pdp__carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  background-color: var(--media-plate) !important;
  border: none;
  box-shadow: none;
}

.pdp__carousel-track.is-dragging {
  cursor: grabbing;
}

.pdp__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-color: var(--media-plate) !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  isolation: isolate;
}

.pdp__slide > img,
.pdp__slide--lifestyle .product-media__lifestyle-bg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ——— Flat gallery (overlay strategy retired 2026-07-24) ———
   Image 1 = studio packshot, Image 2 = finished lifestyle JPG.
   No absolute cutouts, no canvas composites, no scene math. */
.product-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--media-plate, #f4f8fa);
}

.product-gallery__img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  pointer-events: none;
  -webkit-user-drag: none;
}

.product-gallery__img--packshot,
.pdp__slide--packshot .product-gallery__img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 3% !important;
  box-sizing: border-box;
}

.product-gallery__img--lifestyle,
.pdp__slide--lifestyle .product-gallery__img {
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  mix-blend-mode: normal !important;
}

/* Kill retired overlay / canvas architecture — never show floating cutouts */
.product-media__overlay-asset,
.product-media__flattened-canvas,
.product-media__lifestyle-wrapper--canvas,
.pdp__slide--composite .product-media__overlay-asset,
.pdp--flat-gallery .product-media__overlay-asset,
.pdp--flat-gallery .product-media__flattened-canvas {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Packshot: multiply on #ffffff plate — see packshot-multiply-blend-20260726 terminal block */
.pdp__slide--packshot img,
.pdp__slide--packshot .product-gallery__img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 2% !important;
  box-sizing: border-box;
  filter: none !important;
}

/* Lifestyle gallery: strict 1:1 workspace (finished -room-1.jpg + room-plate composites) */
.product-media__lifestyle-wrapper {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

.product-media__lifestyle-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* Portable vs wall-mount overlay placement (room-plate composites ONLY).
   Finished -room-1.jpg = single bg img — no overlay-asset.
   Scene classes override blind center — see lifestyle-scene-map.json.
   Retained as a defensive kill-switch for any legacy overlay markup;
   the canvas-composite JS that used to set --true-product-* vars was
   removed 2026-07-25 (flat Shopify media gallery only, see sora-product.liquid). */
.product-media__lifestyle-wrapper.type-wall-mount .product-media__overlay-asset {
  position: absolute !important;
  width: 26% !important;
  max-width: 220px !important;
  height: auto !important;
  top: calc(15% - var(--true-product-top-padding, 0px)) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
  object-fit: contain !important;
  object-position: center top !important;
  pointer-events: none !important;
}

/* Scene: asymmetric living — IRON-CLAD footprint (never postage-stamp) */
.product-media__lifestyle-wrapper.scene-living-room-asymmetric.type-wall-mount .product-media__overlay-asset,
.scene-living-room-asymmetric .product-media__overlay-asset {
  position: absolute !important;
  width: 28% !important;
  min-width: 200px !important;
  max-width: 280px !important;
  height: auto !important;
  min-height: 70px !important;
  top: 13% !important;
  left: 32% !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
  z-index: 5 !important;
  object-fit: contain !important;
  object-position: center top !important;
  pointer-events: none !important;
  flex: none !important;
  max-height: none !important;
}

/* Scene: window on RIGHT → mount on LEFT solid wall */
.product-media__lifestyle-wrapper.scene-living-room-window-right.type-wall-mount .product-media__overlay-asset,
.scene-living-room-window-right .product-media__overlay-asset {
  position: absolute !important;
  width: 24% !important;
  min-width: 170px !important;
  max-width: 210px !important;
  height: auto !important;
  top: 12% !important;
  left: 32% !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 5 !important;
  object-fit: contain !important;
  pointer-events: none !important;
}

/* Fallback: solid centered wall — same iron-clad footprint */
.product-media__lifestyle-wrapper.scene-solid-wall-center.type-wall-mount .product-media__overlay-asset,
.scene-solid-wall-center .product-media__overlay-asset {
  position: absolute !important;
  width: 25% !important;
  min-width: 170px !important;
  max-width: 220px !important;
  height: auto !important;
  top: 15% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  z-index: 5 !important;
  object-fit: contain !important;
  pointer-events: none !important;
  flex: none !important;
}

.product-media__lifestyle-wrapper.scene-bedroom-headwall.type-wall-mount .product-media__overlay-asset,
.scene-bedroom-headwall .product-media__overlay-asset {
  position: absolute !important;
  width: 28% !important;
  max-width: 220px !important;
  height: auto !important;
  top: 11% !important;
  left: 52% !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 5 !important;
  object-fit: contain !important;
  pointer-events: none !important;
}

.product-media__lifestyle-wrapper.type-portable .product-media__overlay-asset {
  position: absolute !important;
  width: auto !important;
  height: 48% !important;
  max-height: 420px !important;
  max-width: 55% !important;
  top: auto !important;
  left: 65% !important;
  right: auto !important;
  bottom: calc(14% - var(--true-product-bottom-padding, 0px)) !important;
  transform: none !important;
  z-index: 5 !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  pointer-events: none !important;
}

/* Ventilation / ducted / HRV — never show cutout; lifestyle spans clean */
.product-media__lifestyle-wrapper.type-hidden-overlay .product-media__overlay-asset,
.product-media__lifestyle-wrapper.type-hidden-overlay .product-media__flattened-canvas {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-media__lifestyle-wrapper.type-hidden-overlay .product-media__lifestyle-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Refrigeration / ice / hospitality — clean studio gallery, no AC room overlays */
.product-media__standard-gallery {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--media-plate, #f4f8fa);
}

.product-media__clean-asset {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  padding: 4% !important;
  background: transparent !important;
}

.pdp--excluded-overlay .product-media__overlay-asset,
.pdp--excluded-overlay .product-media__flattened-canvas,
.pdp[data-overlay-excluded="true"] .product-media__overlay-asset,
.pdp[data-overlay-excluded="true"] .product-media__flattened-canvas,
[data-product-type*="Refrigeration"] .product-media__overlay-asset,
[data-product-type*="refrigeration"] .product-media__overlay-asset,
[data-product-type*="Ice"] .product-media__overlay-asset,
[data-product-type*="ice"] .product-media__overlay-asset,
[data-product-type*="Hospitality"] .product-media__overlay-asset,
[data-product-type*="hospitality"] .product-media__overlay-asset,
[data-product-handle*="ice-maker"] .product-media__overlay-asset {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Portables never show wall-mount placeholder chrome */
.product-media__lifestyle-wrapper.type-portable .wall-placeholder-box,
.product-media__lifestyle-wrapper.type-portable [class*="placeholder"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* Room-plate composite: single flattened canvas (bg + packshot baked in) */
.product-media__lifestyle-wrapper--canvas {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

.product-media__flattened-canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Swipe cue killed 2026-07-29 — owner redline (clutter on PDP gallery) */
.pdp__swipe-cue,
.pdp__swipe-cue span {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Kill any figcaption / media title bars under packshots (grids + PDP thumbs).
   Product titles stay in normal card/PDP text below media — never on the image. */
.product-media > figcaption,
.product-card .product-media figcaption,
.pdp__slide > figcaption,
.pdp__slide figcaption,
.pdp__thumb figcaption,
.pdp__thumbs figcaption,
.product-gallery__slide > figcaption,
.card-gallery figcaption,
.product-card-gallery__title-placeholder {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.pdp__carousel-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pdp__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(12, 20, 25, 0.1);
  border-radius: 999px;
  background: rgba(244, 244, 246, 0.88);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.pdp__carousel-btn:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(12, 20, 25, 0.22);
}

.pdp__carousel-btn:disabled {
  opacity: 0.28;
  cursor: default;
}

.pdp__carousel-btn--prev { left: 0.65rem; }
.pdp__carousel-btn--next { right: 0.65rem; }

.pdp__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pdp__carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 20, 25, 0.18);
  cursor: pointer;
  transition: width 0.28s ease, background 0.28s ease;
}

.pdp__carousel-dot.is-active {
  width: 22px;
  background: var(--glacier);
}

.pdp__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pdp__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid transparent;
  background: var(--media-plate);
  cursor: pointer;
  overflow: hidden;
}

.pdp__thumb.is-active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4%;
  display: block;
}

.pdp__thumb--lifestyle img {
  object-fit: cover !important;
  padding: 0 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .pdp__carousel-track,
  .pdp__swipe-cue,
  .pdp__carousel-dot,
  .pdp__carousel-btn {
    transition: none !important;
  }
}

.pdp__story {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.pdp__story-inner {
  display: grid;
  gap: clamp(1.15rem, 3vw, 2rem);
  max-width: none;
  width: 100%;
}

.pdp__story-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.pdp__story-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--media-plate, #eef2f4);
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.pdp__story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pdp__story-visual--alternate {
  position: relative;
}

.pdp__story-visual--alternate .pdp__story-visual__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.pdp__story-visual--alternate .pdp__story-visual__frame.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pdp__story-visual--alternate .pdp__story-visual__frame {
    transition: none;
  }
}

.pdp__story-head {
  display: grid;
  gap: 0.45rem;
}

.pdp__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--glacier);
}

.pdp__story-benefit {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
}

.pdp__story-product {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* Body: lede → proof → delivery (semantic classes from sync-product-content) */
.pdp__story-body {
  display: grid;
  gap: 1.15rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.pdp__story-body > *:last-child {
  margin-bottom: 0;
}

.pdp__story-body p,
.pdp-copy__lede {
  margin: 0;
  max-width: none;
}

.pdp-copy__lede,
.pdp__story-body > p:first-child {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.pdp__story-body ul,
.pdp-copy__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: none;
}

.pdp__story-body li,
.pdp-copy__proof li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.pdp__story-body li::before,
.pdp-copy__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--glacier);
}

.pdp-copy__delivery,
.pdp__story-body p:has(strong),
.pdp__story-body .pdp-copy__delivery {
  margin: 0.15rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(12, 20, 25, 0.08);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: none;
}

.pdp-copy__label,
.pdp__story-body p strong {
  display: inline;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.pdp-copy__label::after {
  content: " · ";
  font-weight: 500;
  color: var(--ink-soft);
}

/* Legacy description HTML ended with a brand-support line — hide it (buy rail owns trust). */
.pdp__story-body > p:last-child:not(.pdp-copy__delivery):not(:has(strong)) {
  display: none;
}

.pdp__story-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding-top: 0.35rem;
}

.pdp__story-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid rgba(12, 20, 25, 0.22);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pdp__story-buy:hover {
  background: rgba(12, 20, 25, 0.04);
  border-color: rgba(12, 20, 25, 0.35);
}

.pdp__story-buy--muted {
  font-weight: 600;
}

.pdp__story-jump {
  font-size: 0.88rem;
  color: var(--glacier);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.pdp__story-jump:hover {
  border-bottom-color: currentColor;
}

.pdp__features-head {
  margin: 0 0 1rem;
}

.pdp__features-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.pdp__features-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pdp__linked {
  padding-top: 0.5rem;
}

.pdp__linked h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.pdp__linked-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.pdp__linked-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(12, 20, 25, 0.08);
  padding: 0.55rem;
}

.pdp__linked-item img {
  width: 88px !important;
  height: 88px !important;
  object-fit: contain !important;
  background: #f3f5f7 !important;
  padding: 6% !important;
}

.pdp__linked-meta {
  display: grid;
  gap: 0.2rem;
}

.pdp__linked-meta strong {
  font-size: 0.95rem;
}

.pdp__linked-meta span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pdp__buy {
  position: relative;
}

.pdp__buy-inner {
  background:
    linear-gradient(180deg, rgba(244, 248, 250, 0.95) 0%, #fff 28%),
    #fff;
  border: 1px solid rgba(12, 20, 25, 0.09);
  box-shadow: 0 18px 40px rgba(12, 20, 25, 0.07);
  padding: 1.3rem 1.25rem 1.4rem;
}

.pdp__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pdp__was {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--glacier);
  text-decoration: line-through;
}

/* Conversion price block — quiet-luxury anchoring (2026-07-25) */
.pdp__price-block {
  margin-bottom: 0.15rem;
}

.pdp__vat-note {
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.pdp__price--hero {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pdp__price-now {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.pdp__rrp-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.pdp__rrp-was {
  text-decoration: line-through;
  color: var(--glacier);
}

.pdp__rrp-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  margin-left: 0.15rem;
  padding: 0;
  border: 1px solid rgba(12, 20, 25, 0.18);
  border-radius: 999px;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.pdp__save-row {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-deep, #3d5a52);
  letter-spacing: 0.01em;
}

.pdp__rrp-disclosure {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__rrp-disclosure a {
  color: inherit;
  text-decoration: underline;
}

.pdp__finance {
  margin: 0.45rem 0 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.pdp__finance-sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.pdp__finance-footnote {
  margin: 0.2rem 0 0;
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--glacier);
}

.pdp__finance--paypal {
  margin-top: 0.35rem;
}

.pdp__finance--klarna + .pdp__finance-footnote + .pdp__finance--paypal {
  margin-top: 0.55rem;
}

.pdp__supply-soft {
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-soft);
}

.pdp__urgency {
  margin: 0.55rem 0 0;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(61, 90, 82, 0.08);
  color: var(--sage-deep, #3d5a52);
}

.pdp__urgency--sold {
  background: rgba(12, 20, 25, 0.06);
  color: var(--ink);
}

.pdp__pay-hint {
  margin: 0.35rem 0 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.pdp__pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
}

.pdp__pay-icons svg,
.pdp__pay-icons .icon-svg {
  height: 22px;
  width: auto;
  display: block;
}

.pdp__install-note,
.pdp__lead-note {
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(126, 184, 201, 0.14);
  border-left: 3px solid var(--glacier);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.pdp__lead-note {
  background: rgba(58, 109, 122, 0.08);
  border-left-color: var(--ink-soft, #3a6d7a);
}

.pdp__install-note strong,
.pdp__lead-note strong,
.pdp__included-kit__title strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.pdp__dispatch-eta__reassurance {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.76rem;
  color: var(--ink-soft, #3a6d7a);
}

.pdp__included-kit {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(58, 109, 122, 0.22);
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__included-kit__headline {
  margin: 0 0 0.45rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
}

.pdp__included-kit__list {
  margin: 0;
  padding-left: 1.1rem;
}

.pdp__included-kit__list li {
  margin-bottom: 0.25rem;
}

.pdp__included-kit__list li:last-child {
  margin-bottom: 0;
}

/* Installer-certification capture for pre-charged refrigerant equipment */
.pdp__fgas {
  margin: 0 0 1.1rem;
  padding: 0.9rem 0.95rem 1rem;
  border: 1px solid rgba(58, 109, 122, 0.3);
  border-radius: 4px;
  background: rgba(126, 184, 201, 0.09);
}

.pdp__fgas[data-fgas-invalid] {
  border-color: rgba(164, 62, 52, 0.6);
  background: rgba(164, 62, 52, 0.06);
}

.pdp__fgas__legend {
  padding: 0 0.35rem;
  margin-left: -0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.pdp__fgas__why {
  margin: 0.15rem 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__fgas__field {
  display: block;
  margin: 0 0 0.7rem;
}

.pdp__fgas__field > span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.pdp__fgas__field em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.8;
}

.pdp__fgas__field em.opt {
  opacity: 0.55;
}

.pdp__fgas__field input,
.pdp__fgas__field select {
  width: 100%;
  padding: 0.6rem 0.65rem;
  border: 1px solid rgba(31, 43, 46, 0.22);
  border-radius: 3px;
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
}

.pdp__fgas__field input:focus-visible,
.pdp__fgas__field select:focus-visible {
  outline: 2px solid var(--glacier);
  outline-offset: 1px;
}

.pdp__fgas__row {
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 540px) {
  .pdp__fgas__row {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp__fgas__after,
.pdp__fgas__help {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__fgas__error {
  margin: 0.55rem 0 0;
  padding: 0.5rem 0.6rem;
  background: rgba(164, 62, 52, 0.1);
  border-left: 3px solid rgba(164, 62, 52, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
  color: #7d2a22;
}

/* Shown when the buyer picks an installation country outside the four markets
   whose refrigerant rules we have confirmed. Advisory, not an error — the
   binding refusal is server-side. */
.pdp__fgas__after--warn {
  margin-top: 0.5rem;
  padding: 0.55rem 0.65rem;
  background: rgba(176, 122, 42, 0.09);
  border-left: 3px solid rgba(176, 122, 42, 0.6);
  color: #6f4a12;
}

.pdp__fgas__after--warn[hidden] {
  display: none;
}

/* --- F-Gas capture as a purchase option, not a compliance panel -----------
   The default path ("we arrange your engineer") shows no certificate fields at
   all, so the surrounding panel chrome is dropped and the two choices are
   styled like ordinary product option cards. */
.pdp__fgas--option {
  margin: 0 0 1.1rem;
  padding: 0;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.pdp__fgas--option[data-fgas-invalid] {
  border: 0;
  background: none;
}

.pdp__fgas--option .pdp__fgas__legend {
  padding: 0;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.pdp__fgas__choices {
  display: grid;
  gap: 0.5rem;
}

.pdp__fgas__choice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(12, 20, 25, 0.18);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.pdp__fgas__choice:hover {
  border-color: rgba(12, 20, 25, 0.34);
}

.pdp__fgas__choice input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.16rem 0 0;
  accent-color: var(--ink);
}

/* Selected state is set both by :has() and by a JS-written attribute, so the
   card still highlights if :has() is unsupported. */
.pdp__fgas__choice[data-fgas-selected],
.pdp__fgas__choice:has(input:checked) {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.pdp__fgas__choice:has(input:focus-visible) {
  outline: 2px solid var(--glacier);
  outline-offset: 2px;
}

.pdp__fgas__choice__text {
  display: grid;
  gap: 0.18rem;
}

.pdp__fgas__choice__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.pdp__fgas__chip {
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  background: rgba(58, 109, 122, 0.14);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c5b66;
}

.pdp__fgas__choice__note {
  font-size: 0.79rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__fgas__own {
  margin-top: 0.8rem;
  padding: 0.85rem 0.9rem 0.4rem;
  border: 1px solid rgba(12, 20, 25, 0.14);
  border-radius: 8px;
  background: rgba(126, 184, 201, 0.07);
}

.pdp__fgas__own[hidden] {
  display: none;
}

.pdp__fgas--option[data-fgas-invalid] .pdp__fgas__own {
  border-color: rgba(164, 62, 52, 0.55);
  background: rgba(164, 62, 52, 0.05);
}

/* The regulatory explanation stays available but stops being the first thing
   a homeowner reads. */
.pdp__fgas__why-more {
  margin: 0.6rem 0 0;
}

.pdp__fgas__why-more > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp__fgas__why-more > summary::-webkit-details-marker {
  display: none;
}

.pdp__fgas__why-more > summary:focus-visible {
  outline: 2px solid var(--glacier);
  outline-offset: 2px;
}

.pdp__fgas__why-more__body p {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.pdp__install-included {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.pdp__fgas--seamless {
  margin: 0.5rem 0 0;
  padding: 0;
  border: none;
  background: transparent;
}

.pdp__fgas--seamless .pdp__fgas__trust {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft, #3a6d7a);
}

.pdp__fgas--seamless .pdp__fgas__own-toggle {
  margin-top: 0.65rem;
}

.pdp__fgas--seamless .pdp__fgas__own-link {
  font-size: 0.78rem;
  color: var(--ink-soft, #3a6d7a);
  cursor: pointer;
  list-style: none;
}

.pdp__fgas--seamless .pdp__fgas__own-link::-webkit-details-marker {
  display: none;
}

.pdp__fgas--seamless .pdp__fgas__own-link:hover {
  text-decoration: underline;
}

.pdp__fgas--seamless .pdp__fgas__own {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(58, 109, 122, 0.06);
}

.pdp__fgas--seamless .pdp__fgas__own-lede {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 0.65rem;
}

.pdp__fgas__choice--own {
  margin-bottom: 0.75rem;
}

.pdp__install-note--fgas {
  background: rgba(58, 109, 122, 0.12);
  border-left-color: var(--ink-soft, #3a6d7a);
}

.pdp__install-offer {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  background: rgba(58, 109, 122, 0.06);
  border-radius: 8px;
}

.pdp__install-scope__legend {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pdp__install-scope__note,
.pdp__install-offer__warn {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0.35rem 0;
}

.pdp__install-offer__warn {
  color: #7a4e10;
  background: #fdf0e3;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
}

.pdp__install-scope__check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.pdp__fgas__lede,
.pdp__fgas__soon {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0.5rem 0;
}

.pdp__fgas__soon {
  background: rgba(58, 109, 122, 0.08);
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
}

.installer-apply__hero {
  max-width: 52rem;
}

.installer-apply__facts {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.55;
}

.installer-apply__form label {
  display: block;
  margin: 0.75rem 0;
  font-size: 0.85rem;
}

.installer-apply__form input[type="text"],
.installer-apply__form input[type="email"],
.installer-apply__form input[type="date"] {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line, #d8d4cc);
  border-radius: 6px;
}

.installer-apply__check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  max-width: 40rem;
}

.installer-apply__status {
  color: #1c6b2c;
  font-size: 0.85rem;
}
.installer-apply__help {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(12, 20, 25, 0.62);
}

.installer-apply__help a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.installer-apply__customer-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(12, 20, 25, 0.72);
  max-width: 44rem;
}

.installer-apply__customer-note a {
  color: var(--ink, #0c1419);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.installer-apply__faq-item {
  border-top: 1px solid var(--line, #d8d4cc);
  padding: 0.85rem 0;
  max-width: 44rem;
}

.installer-apply__faq-item:last-child {
  border-bottom: 1px solid var(--line, #d8d4cc);
}

.installer-apply__faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.installer-apply__faq-item summary::-webkit-details-marker {
  display: none;
}

.installer-apply__faq-item p {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(12, 20, 25, 0.72);
}

/* Cart-side F-Gas evidence surface */
.bag__fgas {
  margin: 0.5rem 0 0;
  padding: 0.55rem 0.65rem;
  background: rgba(126, 184, 201, 0.12);
  border-left: 3px solid var(--glacier);
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.bag__fgas strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.bag__fgas--missing {
  background: rgba(164, 62, 52, 0.09);
  border-left-color: rgba(164, 62, 52, 0.75);
  color: #7d2a22;
}

.bag__fgas--missing strong {
  color: #7d2a22;
}

/* Heatwave VIP Express Install surge (optional; API-gated) */
.pdp__heatwave-surge {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(58, 109, 122, 0.28);
  background:
    linear-gradient(160deg, rgba(58, 109, 122, 0.1) 0%, rgba(244, 248, 250, 0.95) 55%);
}

.pdp__heatwave-surge__banner {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__heatwave-surge__banner strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.pdp__heatwave-surge__opt {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
}

.pdp__heatwave-surge__opt input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.pdp__heatwave-surge__fallback {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.pdp__heatwave-surge__fallback a {
  color: var(--glacier);
}

/* Polymarket Loop — OEM scale social proof */
.pdp__scale-proof {
  margin: 0 0 1.05rem;
  padding: 0.85rem 0.9rem 0.95rem;
  border: 1px solid rgba(12, 20, 25, 0.08);
  background:
    linear-gradient(135deg, rgba(126, 184, 201, 0.12) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(244, 248, 250, 0.95) 100%);
}

.pdp__scale-proof__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--glacier);
}

.pdp__scale-proof__stat {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.4rem;
  font-family: var(--font-display);
  line-height: 1.05;
}

.pdp__scale-proof__num,
.pdp__scale-proof__suffix {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.pdp__scale-proof__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.pdp__scale-proof__copy {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.pdp__buy-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.pdp__buy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
}

.pdp__buy-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}

.pdp__form {
  display: grid;
  gap: 0.65rem;
}

.pdp__option {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.pdp__option select {
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 500;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(12, 20, 25, 0.18);
  background: #fff;
  color: var(--ink);
}

.pdp__cta {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(12, 20, 25, 0.18);
}

.pdp__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.pdp__cta--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(12, 20, 25, 0.22);
  box-shadow: none;
}

.pdp__cta:hover:not(:disabled) {
  filter: brightness(1.06);
}

#sora-product-form,
#product-root {
  scroll-margin-top: 5.5rem;
}

.pdp__assurances {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(12, 20, 25, 0.07);
  display: grid;
  gap: 0.5rem;
}

.pdp__assurances li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-left: 1.05rem;
  position: relative;
  line-height: 1.35;
}

.pdp__assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--glacier);
}

/* Keep legacy product-page rules from fighting the new PDP */
.product-page {
  display: none;
}

.product-hero-media,
.thumbs,
.pay-row,
.pay-pill {
  /* retained for cart/other templates */
}

.thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumb {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  width: 72px;
  height: 72px;
  cursor: pointer;
  background: #f5f8fa;
}

.thumb.active {
  border-color: var(--ink);
}

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

.pay-row,
#pay-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.pay-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 20, 25, 0.1);
  color: var(--ink-soft);
}

.search-link {
  gap: 0.4rem;
  padding: 0.65rem 0.95rem;
}

.search-link__icon {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.search-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  --icon-stroke-width: 1.25;
}

.search-link__label {
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 719px) {
  .search-link {
    padding: 0.65rem 0.75rem;
  }

  .search-link__label {
    display: none;
  }
}

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.newsletter {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
  border: 1px solid rgba(12, 20, 25, 0.15);
  padding: 0.85rem 1.1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
}

.cart-table {
  display: grid;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(12, 20, 25, 0.07);
}

.cart-line img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: #f5f8fa;
}

/* Shopping bag — premium ROI cart */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bag {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 4vw, 2.5rem) 3.5rem;
  min-height: 60vh;
}

.bag__head {
  margin-bottom: 1.75rem;
}

.bag__head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bag__count {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.bag__empty {
  padding: 2rem 0;
}

.bag__empty p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.bag__layout {
  display: grid;
  gap: 2rem;
}

.bag__list-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

.bag__item {
  border: 1px solid rgba(12, 20, 25, 0.1);
  background: #fff;
  padding: 1rem 1.1rem 1.15rem;
  margin-bottom: 0.85rem;
}

.bag__item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(12, 20, 25, 0.06);
}

.bag__est {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--glacier);
}

.bag__remove {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bag__item-body {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
}

.bag__media {
  display: block;
  width: 96px;
  height: 96px;
  background: #f7f7f9;
  overflow: hidden;
}

.bag__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8% !important;
  display: block !important;
  background: transparent !important;
}

.bag__details {
  min-width: 0;
}

.bag__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.bag__variant,
.bag__meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.bag__qty {
  margin-top: 0.85rem;
}

.bag__qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(12, 20, 25, 0.16);
}

.bag__qty-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: #fff;
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink);
}

.bag__qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bag__qty-input {
  width: 2.5rem;
  height: 2.25rem;
  border: 0;
  border-inline: 1px solid rgba(12, 20, 25, 0.12);
  text-align: center;
  font: inherit;
  font-weight: 600;
  -moz-appearance: textfield;
}

.bag__qty-input::-webkit-outer-spin-button,
.bag__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bag__price {
  margin: 0;
  grid-column: 2;
  justify-self: start;
  font-weight: 700;
  font-size: 1.05rem;
}

.bag__update {
  margin-top: 0.35rem;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}

.bag__summary-inner {
  background: #fff;
  border: 1px solid rgba(12, 20, 25, 0.1);
  padding: 1.25rem 1.2rem 1.4rem;
}

.bag__summary h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.bag__promo {
  margin: 0 0 1rem;
  border-bottom: 1px solid rgba(12, 20, 25, 0.08);
  padding-bottom: 0.85rem;
}

.bag__promo summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
  list-style: none;
}

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

.bag__promo-note {
  margin: 0.55rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.bag__totals {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.bag__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.bag__totals dt {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.bag__totals dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.bag__total {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(12, 20, 25, 0.1);
  align-items: start;
}

.bag__total dt,
.bag__total dd {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.bag__total dd span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.bag__finance {
  margin: 0.9rem 0 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.bag__cta {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font: inherit;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.bag__cta:hover {
  filter: brightness(1.06);
}

.bag__alt-pay {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.bag__alt-pay .shopify-payment-button,
.bag__alt-pay .shopify-payment-button__button {
  width: 100% !important;
  border-radius: 999px !important;
}

.bag__continue {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 900px) {
  .bag__layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.78fr);
    align-items: start;
    gap: 2rem 2.25rem;
  }

  .bag__summary-inner {
    position: sticky;
    top: 5.5rem;
  }

  .bag__item-body {
    grid-template-columns: 120px 1fr auto;
  }

  .bag__media {
    width: 120px;
    height: 120px;
  }

  .bag__price {
    grid-column: auto;
    justify-self: end;
    padding-top: 0.15rem;
  }
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(12, 20, 25, 0.15);
  background: white;
  cursor: pointer;
  font: inherit;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.linked-item img,
.linked-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f5f8fa;
  display: block;
}

.hero:not(.hero--cinema) {
  background-image:
    linear-gradient(105deg, rgba(237, 244, 247, 0.94) 40%, rgba(237, 244, 247, 0.55) 72%, transparent),
    url("/images/products/fit/dreame-mf10-1.jpg");
  background-size: cover;
  background-position: right center;
  border-radius: 0 0 28px 28px;
}

.tiktok-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(12, 20, 25, 0.07);
}

.tiktok-card .links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.legal h1 {
  font-family: var(--font-display);
}

.admin-note {
  font-size: 0.85rem;
  color: var(--glacier);
}

.product-page .price-lg {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.linked {
  margin-top: 2rem;
}

.linked h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.linked-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.linked-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 20, 25, 0.07);
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.linked-item__media {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f8fa;
  flex-shrink: 0;
}

.linked-item__body {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.linked-item__badge {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--glacier);
  font-weight: 600;
}

.linked-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.25;
}

.linked-item__price {
  font-weight: 700;
  font-size: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes wash {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.1);
  }
}

@media (min-width: 720px) {
  .nav-products-panel__inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
    padding: 1.35rem clamp(1.25rem, 4vw, 3rem) 1.6rem;
  }

  .nav-cat__media {
    width: min(100%, 168px);
  }

  .trust-strip:not(.trust-strip--brand) {
    grid-template-columns: repeat(4, 1fr);
  }

  .tour-teaser__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .tour-teaser__visual {
    margin: 0 0 0 auto;
  }

  .residences__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
  }

  .residences__tile {
    aspect-ratio: 4 / 3;
  }

  /* Why Sora reasons stay stacked in the copy column; mosaic carries imagery */

  .mood-living__board {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.65rem;
    min-height: min(62vh, 640px);
  }

  .mood-living__hero {
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    height: 100%;
    min-height: 420px;
  }

  .mood-living__tile {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }

  .air-board__mosaic {
    grid-template-columns: 1.35fr 0.9fr 0.9fr;
    grid-template-rows: minmax(200px, 28vh) minmax(200px, 28vh);
    grid-auto-rows: unset;
  }

  .air-board__cell--wide {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }

  .air-board__cell--tall {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
  }

  .air-board__cell:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .air-board__cell:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }

  .air-board__cell--span {
    display: none;
  }

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

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

  .compare-card .sora-product-media {
    width: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .reviews-track:not(.is-marquee):not(.is-static) {
    grid-auto-columns: minmax(280px, calc((100% - 2rem) / 3));
  }

  .reviews-track.is-marquee .review {
    flex-basis: 300px;
    width: 300px;
  }

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

  .cta-band {
    grid-template-columns: 1fr auto;
    gap: 1.25rem 2rem;
    padding: 1.5rem 1.75rem;
    align-items: center;
  }

  .cta-band .btn-primary {
    justify-self: end;
  }

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

  .sora-site-footer__main {
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.7fr);
    align-items: start;
    gap: 2.5rem;
  }

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

  .sora-site-footer__aside {
    border-top: 0;
    border-left: 1px solid rgba(12, 20, 25, 0.08);
    padding-top: 0;
    padding-left: 1.75rem;
  }

  .sora-site-footer__legal {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .pdp {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    grid-template-rows: auto auto;
    gap: 1.75rem 2.5rem;
    padding-top: 1.5rem;
  }

  .pdp__gallery {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    width: 100%;
  }

  .pdp__buy {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: start;
  }

  .pdp__story {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    width: 100%;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(12, 20, 25, 0.06);
  }

  .pdp__story:not(.pdp__story--split) .pdp__story-copy {
    max-width: min(750px, 100%);
  }

  .pdp__story--split .pdp__story-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
