/** Shopify CDN: Minification failed

Line 39:0 All "@import" rules must come first

**/
* {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html {
  overflow-y: scroll;            /* keep scroll context so vw stays stable */
  scrollbar-width: none;         /* Firefox: hide scrollbar */
  -ms-overflow-style: none;      /* legacy Edge / IE */
}

html::-webkit-scrollbar,
::-webkit-scrollbar {            /* Chrome, Safari, modern Edge */
  width: 0;
  height: 0;
  display: none;
}

body {
  background: #ffffff;
  color: #20242b;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --ink: #111111;
  --accent: #dc1b27;
  --lux-ink: #1f1711;
  --lux-gold: #d7b27b;
  --lux-gold-deep: #9f7641;
  --lux-light: #f2e4cd;
  --shop-media-size: clamp(300px, 38vw, 520px);
  --shop-thumb-size: clamp(84px, 8vw, 116px);
}

.page {
  background: var(--bg);
}

.floating-nav {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  width: min(1080px, calc(100% - 1.4rem));
  z-index: 170;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(0.985);
  transition:
    opacity 0.3s ease,
    transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.floating-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.floating-nav__shell {
  border-radius: 999px;
  border: 1px solid rgba(224, 229, 236, 0.92);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(1.2) blur(10px);
  box-shadow: 0 12px 22px rgba(15, 20, 29, 0.14);
  padding: 0.42rem 0.48rem 0.42rem 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.floating-nav__logo img {
  width: clamp(136px, 15vw, 172px);
  height: auto;
  display: block;
}

.floating-nav__logo {
  display: inline-flex;
}

.floating-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.floating-nav__about {
  border: 1px solid #e2e6ec;
  border-radius: 999px;
  background: #ffffff;
  color: #1c2128;
  min-width: 86px;
  height: 36px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.floating-nav__shop {
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  min-width: 90px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing {
  min-height: 100vh;
  background: linear-gradient(180deg, #f2f3f4 0%, #f7f7f8 54%, #ffffff 100%);
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.2rem, 3.2vw, 2.4rem)
    clamp(2.2rem, 4vw, 3.4rem);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Full-bleed background image variant (set --landing-bg via Liquid). */
.landing.landing--has-bg {
  background:
    linear-gradient(100deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 28%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.15) 70%,
      rgba(255, 255, 255, 0) 90%
    ),
    var(--landing-bg, none) right center / cover no-repeat #f2f3f4;
}

.landing.landing--has-bg .landing__visual {
  display: none;
}

.landing.landing--has-bg .landing__hero {
  grid-template-columns: minmax(0, 1fr);
}

.landing.landing--has-bg .landing__copy {
  max-width: 540px;
}

/* Tablet: shift pillow slightly so it doesn't crowd the right edge */
@media (max-width: 1100px) {
  .landing.landing--has-bg {
    background:
      linear-gradient(120deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.78) 32%,
        rgba(255, 255, 255, 0.4) 56%,
        rgba(255, 255, 255, 0.1) 78%,
        rgba(255, 255, 255, 0) 100%
      ),
      var(--landing-bg, none) right center / cover no-repeat #f2f3f4;
  }
}

/* Mobile portrait: stack image (top half) above text (bottom half) so the
   pillow stays prominent and the copy sits on a clean white field. */
@media (max-width: 760px) {
  .landing.landing--has-bg {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 38%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.92) 62%,
        rgba(255, 255, 255, 1) 75%
      ),
      var(--landing-bg, none) center top / cover no-repeat #f2f3f4;
    min-height: 100svh;
  }

  .landing.landing--has-bg .landing__hero {
    align-items: end;
    min-height: 70vh;
  }

  .landing.landing--has-bg .landing__copy {
    max-width: none;
    padding-top: 38vh; /* push copy below the image area */
  }
}

.landing__glow {
  position: absolute;
  right: -220px;
  bottom: -240px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 32, 39, 0.12) 0%, rgba(210, 32, 39, 0) 72%);
  pointer-events: none;
  opacity: 0;
  animation: hero-glow-in 1s ease-out 140ms forwards;
}

.landing__brand {
  width: min(100%, 640px);
  margin: 0 auto clamp(0.9rem, 1.8vw, 1.3rem);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: hero-fade-up 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms forwards;
}

.landing__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.landing__hero {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 4.2rem);
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.landing__eyebrow {
  margin: 0 0 0.65rem;
  color: #6a6a6a;
  font-size: clamp(0.75rem, 0.95vw, 0.88rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.landing__copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.landing__copy p {
  margin: clamp(0.95rem, 1.5vw, 1.4rem) 0 0;
  max-width: 31ch;
  color: #1a1a1a;
  font-size: clamp(1rem, 1.45vw, 1.4rem);
  font-weight: 400;
  line-height: 1.34;
}

.landing__copy {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: hero-fade-up 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 200ms forwards;
}

.landing__actions {
  margin-top: clamp(1.3rem, 2.7vw, 2.35rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  min-width: clamp(156px, 15vw, 230px);
  height: clamp(52px, 4.4vw, 72px);
  border-radius: 999px;
  font-size: clamp(1.05rem, 1.55vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--shop {
  border: 0;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 8px 18px #d4162124;
}

.btn--learn {
  border: 2px solid var(--accent);
  color: #111111;
  background: #ffffff00;
}

.landing__visual {
  display: grid;
  justify-items: end;
  align-items: center;
  padding-right: 0;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.988);
  animation: hero-fade-up 820ms cubic-bezier(0.22, 0.61, 0.36, 1) 240ms forwards;
}

.landing__visual img {
  width: min(100%, 690px);
  max-height: 66vh;
  height: auto;
  object-fit: contain;
  transform: rotate(7deg);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 22px 32px #1c2b3a2b);
  margin: 0;
}

.landing__actions .btn {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-fade-up 600ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.landing__actions .btn:nth-child(1) {
  animation-delay: 360ms;
}

.landing__actions .btn:nth-child(2) {
  animation-delay: 450ms;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.995);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-glow-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.story-section {
  background: #ffffff;
  padding: clamp(3.3rem, 6.6vw, 5.9rem) clamp(1.2rem, 3.2vw, 2.4rem)
    clamp(3.1rem, 6vw, 5.2rem);
}

.store-section {
  background: #f6f7f9;
  border-top: 1px solid #eceef1;
  border-bottom: 1px solid #eceef1;
  padding: clamp(3.2rem, 6.4vw, 5.8rem) clamp(1.2rem, 3.2vw, 2.4rem);
}

.feature-section {
  background: #ffffff;
  padding: clamp(3.3rem, 6.5vw, 5.9rem) clamp(1.2rem, 3.2vw, 2.4rem);
}

.scenario-section {
  background: #f6f7f8;
  padding: clamp(3.3rem, 6.4vw, 5.7rem) clamp(1.2rem, 3.2vw, 2.4rem);
}

.assurance-band {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3.1rem) clamp(1.2rem, 3.2vw, 2.4rem);
}

.faq-section {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5.2rem) clamp(1.2rem, 3.2vw, 2.4rem);
}

.final-cta-section {
  background: linear-gradient(180deg, #fafbfc 0%, #f2f4f7 100%);
  padding: clamp(2.6rem, 5.5vw, 4.4rem) clamp(1.2rem, 3.2vw, 2.4rem)
    clamp(3rem, 6vw, 4.9rem);
}

.story-section,
.store-section,
.feature-section,
.scenario-section,
.assurance-band,
.faq-section,
.final-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.68s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-shell--compact {
  width: min(1120px, 100%);
}

.section-shell--faq {
  width: min(860px, 100%);
}

.section-label {
  margin: 0;
  color: #666a72;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0.62rem 0 0;
  color: #111215;
  font-size: clamp(1.85rem, 3.05vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.08;
}

.section-copy {
  margin: 0.95rem 0 0;
  color: #4a4d55;
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  line-height: 1.57;
  max-width: 58ch;
}

.section-intro--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-intro--centered .section-copy {
  margin-inline: auto;
}

.glyph {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #dfe1e6;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  color: #2a2d33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glyph svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.1rem);
}

.story-media {
  margin: 0;
  min-height: 420px;
  border-radius: 30px;
  border: 1px solid #e9ebee;
  background: linear-gradient(160deg, #fdfdfd 0%, #f1f3f6 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.2vw, 1.8rem);
  box-shadow: 0 20px 36px rgba(15, 17, 21, 0.07);
}

.story-media::before {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 27, 39, 0.12) 0%, rgba(220, 27, 39, 0) 72%);
}

.story-media > img {
  width: min(86%, 430px);
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 28px rgba(16, 19, 24, 0.18));
}

.story-media__inset {
  width: 124px;
  border-radius: 14px;
  border: 1px solid #e4e6eb;
  background: #ffffff;
  box-shadow: 0 12px 20px rgba(15, 17, 21, 0.1);
  padding: 0.36rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.story-media__inset img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-9deg);
}

.story-content {
  max-width: 530px;
}

.story-highlights {
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.story-highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem;
  border-top: 1px solid #eceef1;
  padding: 0.84rem 0;
}

.story-highlights li:last-child {
  border-bottom: 1px solid #eceef1;
}

.story-highlights span {
  color: #81858f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.24rem;
}

.story-highlights p {
  margin: 0;
  color: #1d2026;
  font-size: 0.98rem;
  line-height: 1.5;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 3.8vw, 3.8rem);
  align-items: center;
}

.store-intro__stat {
  margin-top: 1.5rem;
  border-top: 1px solid #e5e8ec;
  padding-top: 1rem;
  display: grid;
  gap: 0.32rem;
}

.store-intro__stat strong {
  color: #15171b;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.store-intro__stat span {
  color: #5a5d65;
  font-size: 0.92rem;
}

.store-globe-panel {
  display: grid;
  gap: 0.9rem;
}

.store-globe {
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: 30px;
  border: 1px solid #e4e8ee;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f8 100%);
  box-shadow: 0 26px 44px rgba(16, 20, 26, 0.12);
  padding: clamp(0.7rem, 1.8vw, 1.1rem);
  cursor: grab;
  touch-action: none;
  contain: layout paint;
}

.store-globe.is-dragging {
  cursor: grabbing;
}

.store-globe--loading {
  min-height: 380px;
  display: grid;
  place-items: center;
  cursor: default;
}

.store-globe__loading-sphere {
  width: min(88%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, #ffffff 0%, #eef3f9 48%, #dfe6f1 100%);
  border: 1px solid #c9d2e0;
  box-shadow:
    inset -26px -24px 34px rgba(103, 116, 134, 0.15),
    0 18px 34px rgba(16, 20, 26, 0.09);
  position: relative;
}

.store-globe__loading-sphere::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 70%;
  height: 34px;
  border-radius: 999px;
  background: rgba(34, 43, 57, 0.11);
}

.store-globe svg {
  display: block;
  width: 100%;
  height: auto;
}

.store-globe__shadow {
  fill: rgba(38, 47, 61, 0.11);
}

.store-globe__sphere {
  fill: url(#storeGlobeSurface);
}

.store-globe__shade {
  fill: url(#storeGlobeShadow);
}

.store-globe__graticule {
  fill: none;
  stroke: #bdc7d6;
  stroke-width: 0.8;
  stroke-opacity: 0.38;
}

.store-globe__land {
  fill: #cfd8e4;
  fill-opacity: 0.58;
}

.store-globe__borders {
  fill: none;
  stroke: #aeb8c8;
  stroke-width: 0.6;
  stroke-opacity: 0.7;
}

.store-globe__rim {
  fill: none;
  stroke: #c7d0dd;
  stroke-width: 1.3;
}

.store-globe__marker {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.store-globe__dot {
  fill: #cf2a34;
  stroke: #ffffff;
  stroke-width: 1.4;
}

.store-globe__marker.is-active .store-globe__dot {
  fill: #dc1b27;
}

.store-globe__pulse {
  fill: none;
  stroke: rgba(220, 27, 39, 0.48);
  stroke-width: 1.2;
  animation: store-globe-pulse 1.8s ease-in-out infinite;
}

@keyframes store-globe-pulse {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.9;
  }
}

.store-current {
  margin-left: auto;
  width: min(100%, 340px);
  border-radius: 14px;
  border: 1px solid #e2e6eb;
  background: #ffffff;
  padding: 0.78rem 0.9rem;
}

.store-current__label {
  margin: 0;
  color: #747884;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.store-current h3 {
  margin: 0.34rem 0 0;
  color: #181a1f;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.store-current__status {
  margin: 0.26rem 0 0;
  color: #525760;
  font-size: 0.86rem;
}

.store-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.58rem;
}

.store-pill {
  border: 1px solid #dde2e9;
  border-radius: 12px;
  background: #fafbfd;
  text-align: left;
  padding: 0.62rem 0.72rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.store-pill:hover {
  transform: translateY(-1px);
}

.store-pill.is-active {
  border-color: #e2bbc0;
  background: #fff5f6;
}

.store-pill__city {
  display: block;
  color: #17191f;
  font-size: 0.91rem;
  font-weight: 600;
}

.store-pill__country {
  display: block;
  margin-top: 0.08rem;
  color: #656973;
  font-size: 0.79rem;
}

.store-pill__status {
  display: block;
  margin-top: 0.42rem;
  color: #6a3f43;
  font-size: 0.73rem;
  font-weight: 600;
}

.feature-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr);
  gap: clamp(1.4rem, 3.4vw, 3.4rem);
  align-items: center;
}

.feature-composition__visual {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid #eaecf0;
  background: #f3f5f8;
  position: relative;
  overflow: hidden;
  display: block;
  padding: clamp(0.6rem, 1.4vw, 0.9rem);
  box-shadow: 0 18px 40px rgba(14, 18, 24, 0.08);
}

.feature-composition__chip {
  position: absolute;
  top: 0.88rem;
  left: 0.88rem;
  border-radius: 999px;
  border: 1px solid #e4d8da;
  background: #fff9f9;
  color: #684045;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.33rem 0.64rem;
  z-index: 2;
}

.feature-composition__media-stack {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 0.6rem;
  animation: feature-media-pop 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-composition__media-stack--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.feature-composition__media-stack--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 1fr;
}

.feature-composition__media-stack--triple {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr 1fr;
}

.feature-composition__media-stack--triple > :nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.feature-composition__media-stack--triple > :nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.feature-composition__media-stack--triple > :nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.feature-composition__media-card {
  border-radius: 18px;
  background: #e6ebf2;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
  position: relative;
  padding: 0;
  display: block;
}

.feature-composition__media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.feature-composition__media-stack--single .feature-composition__media-card {
  border-radius: 20px;
}

@keyframes feature-media-pop {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.feature-composition__content {
  max-width: 520px;
}

.feature-composition__list {
  margin-top: 1.4rem;
  border-top: 1px solid #e7eaee;
}

.feature-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.74rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e7eaee;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.feature-row:hover {
  background: rgba(252, 253, 255, 0.75);
}

.feature-row:focus-visible {
  outline: 2px solid rgba(220, 27, 39, 0.24);
  outline-offset: 2px;
}

.feature-row__index {
  margin-top: 0.34rem;
  color: #8a8d97;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-row h3 {
  margin: 0;
  color: #16191f;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.feature-row p {
  margin: 0.3rem 0 0;
  color: #51555e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-row__content {
  min-width: 0;
}

.feature-row__progress {
  margin-top: 0.62rem;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #e4e8ee;
  overflow: hidden;
}

.feature-row__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c8ced8 0%, #b8c0cc 100%);
}

.feature-row.is-active h3 {
  color: #12151a;
}

.feature-row.is-active .feature-row__progress-fill {
  background: linear-gradient(90deg, rgba(220, 27, 39, 0.74) 0%, #dc1b27 100%);
  animation: feature-row-progress linear forwards;
}

@keyframes feature-row-progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.scenario-layout {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.scenario-panel {
  border-radius: 24px;
  border: 1px solid #e6e9ee;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 34px rgba(15, 20, 28, 0.07);
}

.scenario-panel__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #dbe3ed;
  overflow: hidden;
}

.scenario-panel__video-shell,
.scenario-panel__image-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scenario-panel__video,
.scenario-panel__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.scenario-panel__body {
  padding: 1rem 1rem 1.15rem;
}

.scenario-panel__label {
  margin: 0;
  color: #7a7f89;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scenario-panel h3 {
  margin: 0.38rem 0 0;
  color: #171a20;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.scenario-panel p {
  margin: 0.42rem 0 0;
  color: #545963;
  font-size: 0.89rem;
  line-height: 1.5;
}

.assurance-band__frame {
  border-top: 1px solid #e8ebef;
  border-bottom: 1px solid #e8ebef;
  display: grid;
  grid-template-columns: minmax(136px, 0.78fr) repeat(3, minmax(0, 1fr));
}

.assurance-band__label {
  margin: 0;
  padding: 1rem 0.72rem 1rem 0;
  color: #6d717b;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.assurance-point {
  border-left: 1px solid #eceff2;
  padding: 1rem 0 1rem 1rem;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.64rem;
  align-items: start;
}

.assurance-point h3 {
  margin: 0;
  color: #171a20;
  font-size: 0.94rem;
  letter-spacing: -0.013em;
}

.assurance-point p {
  margin: 0.3rem 0 0;
  color: #585d66;
  font-size: 0.83rem;
  line-height: 1.46;
}

.faq-accordion {
  margin-top: 1.35rem;
  border-top: 1px solid #e0e3e8;
}

.faq-accordion__item {
  border-bottom: 1px solid #e0e3e8;
}

.faq-accordion__item summary {
  list-style: none;
  cursor: pointer;
  margin: 0;
  color: #1a1c21;
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 0.15rem;
  transition: color 0.2s ease;
}

.faq-accordion__item summary:hover {
  color: #111215;
}

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

.faq-accordion__toggle {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #cfd4db;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.faq-accordion__toggle::before,
.faq-accordion__toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #6f7480;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.faq-accordion__toggle::before {
  width: 9px;
  height: 1.5px;
}

.faq-accordion__toggle::after {
  width: 1.5px;
  height: 9px;
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion__answer p {
  margin: 0 0 1rem;
  padding-right: 2rem;
  color: #4d525c;
  font-size: 0.92rem;
  line-height: 1.56;
}

.faq-accordion__item[open] .faq-accordion__answer {
  max-height: 220px;
}

.faq-accordion__item[open] .faq-accordion__toggle {
  border-color: #e2c4c7;
  background: #fff6f6;
  transform: rotate(180deg);
}

.faq-accordion__item[open] .faq-accordion__toggle::before {
  background: var(--accent);
}

.faq-accordion__item[open] .faq-accordion__toggle::after {
  opacity: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid #e4e7ec;
  border-radius: 34px;
  background: linear-gradient(154deg, #ffffff 0%, #f2f5f8 100%);
  box-shadow: 0 24px 44px rgba(17, 21, 28, 0.09);
  padding: clamp(1.7rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: clamp(1.4rem, 2.8vw, 2.4rem);
  align-items: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: auto -90px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 27, 39, 0.15) 0%, rgba(220, 27, 39, 0) 70%);
}

.final-cta__copy,
.final-cta__media,
.final-cta__actions {
  position: relative;
  z-index: 1;
}

.final-cta .section-title {
  max-width: 18ch;
}

.final-cta .section-copy {
  max-width: 50ch;
}

.final-cta__actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.final-cta .btn {
  min-width: 156px;
  height: 50px;
  font-size: 1rem;
}

.final-cta .btn--learn {
  border-width: 1.5px;
  background: #ffffff;
}

.final-cta__media {
  margin: 0;
  display: grid;
  place-items: center;
}

.final-cta__media img {
  width: min(100%, 440px);
  max-height: 280px;
  object-fit: contain;
  transform: rotate(6deg);
  filter: drop-shadow(0 18px 28px rgba(16, 21, 29, 0.24));
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .store-globe__pulse {
    animation: none;
  }

  .btn,
  .store-pill {
    transition: none;
  }

  .floating-nav {
    transition: none;
  }

  .feature-composition__media-stack {
    animation: none;
  }

  .feature-row.is-active .feature-row__progress-fill {
    animation: none;
    width: 100%;
  }

  .landing__brand,
  .landing__copy,
  .landing__actions .btn {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  background: #0f1113;
  color: #d6d8dc;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2.3rem, 5vw, 3.5rem) clamp(1.2rem, 3.2vw, 2.4rem)
    clamp(1.3rem, 3vw, 2rem);
}

.site-footer__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(160px, 1fr));
  gap: clamp(1.3rem, 3vw, 3.2rem);
}

.site-footer__brand img {
  width: min(100%, 250px);
  display: block;
  filter: brightness(0) invert(1) opacity(0.88);
}

.site-footer__brand p {
  margin: 1rem 0 0;
  color: #b4bac0;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36ch;
}

.site-footer__col h3 {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f3f4f6;
}

.site-footer__col a {
  display: block;
  color: #bcc1c7;
  text-decoration: none;
  font-size: 0.92rem;
  margin: 0.52rem 0;
}

.site-footer__col a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  width: min(1240px, 100%);
  margin: clamp(1.45rem, 3vw, 2rem) auto 0;
  padding-top: 1rem;
  border-top: 1px solid #23262b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: #9299a2;
  font-size: 0.84rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__legal a {
  color: #a7adb6;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #ffffff;
}

.shop-selector {
  min-height: 100vh;
  background: #f2f3f5;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.shop-selector__content {
  min-height: 100vh;
  min-height: 100dvh;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 3.2vw, 2.2rem) clamp(2.2rem, 4vw, 3.3rem);
}

.shop-selector__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.shop-selector__logo {
  grid-column: 2;
  justify-self: center;
}

.shop-selector__logo img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.shop-selector__bag {
  grid-column: 3;
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #171a20;
  text-decoration: none;
  position: relative;
}

.shop-selector__bag-icon {
  width: 24px;
  height: 24px;
}

.shop-selector__bag-count {
  min-width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-selector__intro {
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 640px;
}

.shop-selector__intro h1 {
  margin: 0.66rem 0 0;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.shop-selector__intro p {
  margin: 0.95rem 0 0;
  color: #4e525b;
  font-size: clamp(0.94rem, 1.18vw, 1.05rem);
  line-height: 1.56;
}

.shop-selector__grid {
  margin-top: clamp(2.8rem, 6vh, 4.6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.selector-card {
  border-radius: 24px;
  border: 1px solid #e1e5ec;
  background: #fcfcfd;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(16, 20, 26, 0.06);
  display: grid;
  grid-template-rows: auto 1fr;
}

.selector-card__media {
  margin: 0;
  background: #f5f6f8;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid #e7ebf0;
  min-height: 248px;
  display: grid;
  place-items: center;
}

.selector-card__media img {
  width: min(100%, 332px);
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
  filter: none;
}

.selector-card__body {
  padding: 1rem;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 0.55rem;
}

.selector-card__badge {
  margin: 0;
  color: #6b4248;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.selector-card h2 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.024em;
  line-height: 1.13;
}

.selector-card p {
  margin: 0;
  color: #515762;
  font-size: 0.9rem;
  line-height: 1.5;
}

.selector-card__meta {
  margin-top: 0.22rem;
  padding-top: 0.62rem;
  border-top: 1px solid #eceff4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.selector-card__meta span {
  color: #676d78;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.selector-card__meta strong {
  color: #15181e;
  font-size: 1.08rem;
}

.selector-card__cta {
  margin-top: 0.15rem;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 18px rgba(220, 27, 39, 0.2);
}

.shop {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
}

.shop__content {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.2rem, 4vw, 3.5rem)
    clamp(2.5rem, 6vw, 4.5rem);
}

.shop__header {
  width: min(1200px, 100%);
  margin: 0 auto clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
  z-index: 40;
}

.shop__logo img {
  height: clamp(32px, 4.6vw, 58px);
  width: auto;
  display: block;
}

.shop__products-link {
  justify-self: start;
  color: #4f5560;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop__products-link:hover {
  color: #1f232b;
}

.shop__breadcrumb {
  width: min(1200px, 100%);
  margin: 0 auto clamp(1rem, 2vw, 1.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #6b6b6b;
}

.shop__breadcrumb a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop__breadcrumb a:hover {
  color: var(--accent);
}

.shop__breadcrumb-current {
  color: #1a1a1a;
  font-weight: 600;
}

.shop__hero {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: start;
}

.shop__gallery-mobile {
  display: none;
}

.shop__gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  align-content: start;
}

.shop__gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #ececec;
  aspect-ratio: 1 / 1;
}

.shop__gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 11;
}

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

.shop__gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid #ececec;
  overflow: hidden;
}

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

.shop__gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop__gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.shop__gallery-thumb {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  background: #f5f5f5;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: block;
  transition: border-color 0.2s ease;
}

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

.shop__gallery-thumb.is-active {
  border-color: #1a1a1a;
}

.shop__buybox {
  position: sticky;
  top: 1.2rem;
  align-self: start;
}

.shop__buybox h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.shop__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: 600;
}

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

.shop__stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #d8d8dd;
  font-size: 1rem;
  line-height: 1;
}

.shop__star.is-filled {
  color: #e8a330;
}

.shop__rating-text {
  font-size: 0.82rem;
  color: #6b6b6b;
  font-weight: 500;
}

.shop__description {
  margin: 0.85rem 0 0;
  color: #2a2a2a;
  font-size: 1.02rem;
  line-height: 1.5;
}

.shop__price-row {
  margin-top: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.shop__price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
}

.shop__price-compare {
  font-size: 1.05rem;
  font-weight: 500;
  color: #9aa0a8;
  text-decoration: line-through;
}

.shop__price-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.shop__quick-features {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.shop__quick-features li {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: #fafafa;
}

.shop__quick-features-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #181818;
}

.shop__quick-features-body {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
}

.shop__colors {
  margin-top: 1.6rem;
}

.shop__colors-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.92rem;
}

.shop__color-name {
  color: #666666;
  font-weight: 500;
}

.shop__swatches {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.7rem;
}

.shop__swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop__swatch.is-selected {
  border-color: #1a1a1a;
  transform: scale(1.05);
}

/* Bundle selector */
.shop__bundles {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.shop__bundles-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin: 0 0 0.2rem;
}

.shop__bundle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.shop__bundle:hover {
  border-color: #b8b8b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
}

.shop__bundle:focus-visible {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.shop__bundle.is-selected {
  border-color: #111;
  background: #fafafa;
  box-shadow: 0 0 0 1.5px #111, 0 6px 18px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.shop__bundle--featured {
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  border-color: rgba(224, 32, 32, 0.35);
}

.shop__bundle--featured:hover {
  border-color: rgba(224, 32, 32, 0.6);
}

.shop__bundle--featured.is-selected {
  border-color: #e02020;
  background: linear-gradient(180deg, #fff 0%, #fff0f0 100%);
  box-shadow: 0 0 0 1.5px #e02020, 0 6px 18px rgba(224, 32, 32, 0.14);
}

.shop__bundle-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.shop__bundle.is-selected .shop__bundle-radio {
  border-color: #111;
}

.shop__bundle.is-selected .shop__bundle-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #111;
  border-radius: 50%;
  animation: shop-bundle-radio-fill 0.18s ease-out;
}

.shop__bundle--featured.is-selected .shop__bundle-radio,
.shop__bundle--featured.is-selected .shop__bundle-radio::after {
  border-color: #e02020;
}
.shop__bundle--featured.is-selected .shop__bundle-radio::after {
  background: #e02020;
}

@keyframes shop-bundle-radio-fill {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.shop__bundle-ribbon {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #e02020;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(224, 32, 32, 0.28);
}

.shop__bundle-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.shop__bundle-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop__bundle-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.4;
}

.shop__bundle-tag--hot {
  background: #e02020;
}

.shop__bundle-sub {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.35;
}

.shop__bundle-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.shop__bundle-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
}

.shop__bundle-compare {
  font-size: 0.78rem;
  color: #aaa;
  text-decoration: line-through;
}

/* Per-pillow color picker (qty > 1) */
.shop__pillow-colors {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  animation: shop-pillow-colors-in 0.28s ease;
}

@keyframes shop-pillow-colors-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.shop__pillow-row {
  border: 1.5px solid #ececec;
  border-radius: 14px;
  padding: 0.95rem 1.05rem 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop__pillow-row:hover {
  border-color: #d5d5d5;
}

.shop__pillow-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.shop__pillow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
}

.shop__pillow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.shop__pillow-color-name {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.shop__pillow-row .shop__swatches {
  margin-top: 0;
}

/* Hide third-party bundle app injections */
.shopify-section--bundler,
[id*="bundler"],
[class*="bundler"]:not(.shop__bundle):not(.shop__bundles):not(.shop__bundle-badge):not(.shop__bundle-compare):not(.shop__bundle-info):not(.shop__bundle-name):not(.shop__bundle-pricing):not(.shop__bundle-price):not(.shop__bundle-radio):not(.shop__bundle-sub):not(.shop__bundles-label) {
  display: none !important;
}

.shop__purchase {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: stretch;
}

.shop__quantity {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop__quantity-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6b6b;
}

.shop__quantity-control {
  display: inline-grid;
  grid-template-columns: 38px 38px 38px;
  align-items: center;
  height: 56px;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  overflow: hidden;
}

.shop__quantity-control button {
  height: 100%;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
}

.shop__quantity-control button:disabled {
  color: #c2c2c2;
  cursor: not-allowed;
}

.shop__quantity-control span {
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  color: #1a1a1a;
}

.shop__cta {
  align-self: end;
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 24px #d4162124;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px #d4162133;
}

.shop__cta--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0 1.6rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  box-shadow: none;
}

.shop__cta--ghost:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.shop__meta-list {
  margin: 1.4rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fafafa;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.shop__meta-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #2a2a2a;
}

.shop__meta-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
  flex-shrink: 0;
}

.shop__meta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Below-CTA video placeholders (9:16) */
.shop__videos {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.shop__video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ededed;
  background: linear-gradient(160deg, #f4f5f7 0%, #e8eaed 100%);
  padding: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.shop__video-card:hover {
  transform: translateY(-2px);
  border-color: #d4d4d4;
  box-shadow: 0 8px 22px rgba(15, 20, 29, 0.10);
}

.shop__video-card:focus-visible {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.14);
}

.shop__video,
.shop__video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop__video-card--empty {
  background: repeating-linear-gradient(
    135deg,
    #f4f5f7 0px,
    #f4f5f7 12px,
    #eef0f3 12px,
    #eef0f3 24px
  );
}

.shop__video-empty-label {
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8e96;
}

.shop__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 20, 29, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
  pointer-events: none;
}

.shop__video-card:hover .shop__video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #ffffff;
}

.shop__video-play svg {
  margin-left: 2px; /* nudge play triangle to optical center */
}

.shop__video-card.is-playing .shop__video-play {
  opacity: 0;
}

@media (max-width: 760px) {
  .shop__videos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .shop__video-play {
    width: 38px;
    height: 38px;
  }
}

.shop__section-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: 600;
}

.shop__story {
  width: min(1200px, 100%);
  margin: clamp(3.4rem, 7vw, 5.5rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}

.shop__story-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #ececec;
  background: #f5f5f5;
  aspect-ratio: 4 / 3;
}

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

.shop__story-content h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.shop__story-content p {
  margin: 0 0 0.85rem;
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.6;
}

.shop__inuse {
  width: min(1200px, 100%);
  margin: clamp(3.4rem, 7vw, 5.5rem) auto 0;
}

.shop__inuse-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.shop__inuse-header h2 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.shop__inuse-description {
  margin: 0;
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.5;
}

.shop__inuse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.shop__inuse-video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.shop__inuse-video video {
  width: 100%;
  border-radius: 22px;
  border: 1px solid #ececec;
  background: #f5f5f5;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shop__inuse-video figcaption {
  font-size: 0.88rem;
  font-weight: 500;
  color: #4f5560;
  text-align: center;
}

/* Customer reviews — fallback grid styling */
.shop__reviews {
  width: min(1200px, 100%);
  margin: clamp(3.4rem, 7vw, 5.5rem) auto 0;
  padding: 0 clamp(1.2rem, 3.2vw, 2.4rem);
}

.shop__reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #ececec;
  margin-bottom: 1.6rem;
}

.shop__reviews-header > div {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.shop__reviews-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #181818;
}

.shop__reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.shop__review {
  position: relative;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.shop__review:hover {
  transform: translateY(-2px);
  border-color: #d6d6d6;
  box-shadow: 0 10px 26px rgba(15, 20, 29, 0.07);
}

.shop__review::before {
  content: '\201C';
  position: absolute;
  top: 0.4rem;
  right: 1.05rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.8rem;
  line-height: 1;
  color: #f1f1f1;
  pointer-events: none;
}

.shop__review-stars {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5b847;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.shop__review-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c2c2c;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.shop__review-author {
  margin: 0;
  font-size: 0.78rem;
  color: #6b6b6b;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding-top: 0.55rem;
  border-top: 1px solid #f2f2f2;
}

@media (max-width: 760px) {
  .shop__reviews {
    margin-top: 2.4rem;
  }

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

  .shop__review {
    padding: 1.2rem 1.3rem 1.1rem;
  }

  .shop__review::before {
    font-size: 3rem;
    top: 0.3rem;
    right: 0.9rem;
  }
}

.shop__help {
  width: min(1200px, 100%);
  margin: clamp(3.4rem, 7vw, 5.5rem) auto 0;
}

.shop__help-header {
  text-align: center;
  margin-bottom: 2rem;
}

.shop__help-header h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.shop__help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.shop__help-card {
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: clamp(1.4rem, 2.2vw, 1.8rem);
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.shop__help-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181818;
}

.shop__help-card p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.shop__help-card a {
  margin-top: 0.4rem;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.95rem;
}

.shop__help-card a:hover {
  text-decoration: underline;
}

.checkout-page {
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
}

.checkout-page__content {
  min-height: 100vh;
  padding: clamp(1.7rem, 4vw, 3.2rem) clamp(1rem, 3.2vw, 2.4rem)
    clamp(2rem, 4vw, 3rem);
}

.checkout-page__header {
  width: min(1200px, 100%);
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-page__header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.checkout-page__back {
  color: #4c4c4c;
  text-decoration: none;
  font-size: 0.95rem;
}

.checkout-page__layout {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.3rem, 2.8vw, 2.3rem);
  align-items: start;
}

.checkout-form,
.checkout-summary {
  border: 1px solid #ebebeb;
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  background: #ffffff;
}

.checkout-form h2,
.checkout-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.06rem;
  font-weight: 700;
}

.checkout-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: #353535;
}

.checkout-form__countries {
  margin: 0.2rem 0 0.95rem;
}

.checkout-form__countries h3 {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a2a2a;
}

.checkout-form__country-grid {
  max-height: 180px;
  overflow: auto;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: #fcfcfc;
}

.checkout-form__country-btn {
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 0.78rem;
  line-height: 1.2;
  border-radius: 999px;
  padding: 0.34rem 0.55rem;
  cursor: pointer;
}

.checkout-form__country-btn.is-selected {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}

.checkout-form input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  padding: 0 0.8rem;
  font-size: 0.95rem;
}

.checkout-form__express {
  margin: 0 0 0.95rem;
  padding: 0.75rem;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fcfcfc;
}

.checkout-form__express h3 {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3b3b3b;
}

.checkout-form__wallet-note {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.35;
}

.checkout-form__divider {
  margin: 0.6rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #7a7a7a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.checkout-form__divider::before,
.checkout-form__divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: #ececec;
}

.checkout-form__payment-wrap {
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  padding: 0.72rem;
  display: flex;
  align-items: center;
}

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

.checkout-form__error {
  margin: 0.8rem 0 0;
  color: #c5161d;
  font-size: 0.88rem;
  line-height: 1.4;
}

.checkout-form__submit {
  margin-top: 0.55rem;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.checkout-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-hosted__desc {
  margin: 0;
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkout-summary__items {
  display: grid;
  gap: 0.65rem;
}

.checkout-summary__item {
  border: 1px solid #efefef;
  border-radius: 12px;
  background: #fafafa;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
}

.checkout-summary__item-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #e9e9e9;
  background: #f4f4f4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.checkout-summary__item-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.checkout-summary__item-title {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
}

.checkout-summary__item-meta {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: #666666;
}

.checkout-summary__item-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.checkout-summary__totals {
  border-top: 1px solid #ececec;
  margin-top: 1rem;
  padding-top: 0.8rem;
  display: grid;
  gap: 0.52rem;
}

.checkout-summary__totals div {
  display: flex;
  justify-content: space-between;
  color: #3a3a3a;
  font-size: 0.9rem;
}

.checkout-summary__totals .checkout-summary__total {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.checkout-summary__empty {
  margin: 0;
  color: #666666;
  font-size: 0.92rem;
}

.checkout-page__success {
  width: min(720px, 100%);
  margin: 1rem auto 0;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
}

.checkout-page__success h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.checkout-page__success p {
  margin: 0.7rem 0 0;
  color: #5a5a5a;
}

.checkout-page__home-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 160px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  color: #111111;
}

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

@media (max-width: 1120px) {
  .story-layout,
  .store-layout,
  .feature-composition,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .story-content,
  .feature-composition__content {
    max-width: none;
  }

  .store-globe {
    margin-left: 0;
    width: min(100%, 560px);
  }

  .store-current {
    margin-left: 0;
  }

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

  .scenario-panel:last-child {
    grid-column: 1 / -1;
  }

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

  .assurance-band__label {
    grid-column: 1 / -1;
    padding: 0.95rem 0;
    border-bottom: 1px solid #eceff2;
  }

  .assurance-point {
    padding-left: 0.6rem;
  }

  .assurance-point:nth-of-type(1) {
    border-left: none;
    padding-left: 0;
  }

  .final-cta__media {
    justify-content: start;
  }

  .final-cta__media img {
    max-height: 240px;
  }

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

  .shop__story {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

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

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

@media (max-width: 980px) {
  .floating-nav {
    width: calc(100% - 1rem);
    top: 0.55rem;
  }

  .floating-nav__shell {
    padding: 0.34rem 0.36rem 0.34rem 0.55rem;
    gap: 0.5rem;
  }

  .floating-nav__logo img {
    width: 120px;
  }

  .floating-nav__about,
  .floating-nav__shop {
    min-width: 72px;
    height: 32px;
    font-size: 0.74rem;
  }

  .landing {
    padding-inline: 1rem;
    padding-top: 1.35rem;
  }

  .landing__brand {
    width: min(100%, 500px);
    margin-bottom: 0.8rem;
  }

  .landing__hero {
    grid-template-columns: 1fr;
    padding-top: 0.2rem;
    align-items: start;
    gap: 0.7rem;
  }

  .landing__copy {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

  .landing__copy p {
    max-width: 34ch;
    margin-inline: auto;
  }

  .landing__eyebrow {
    text-align: center;
  }

  .landing__visual {
    justify-items: center;
    margin-top: 0.35rem;
    padding-right: 0;
  }

  .landing__visual img {
    width: min(92vw, 500px);
    max-height: none;
    margin: 0;
  }

  .landing__actions {
    justify-content: center;
  }

  .story-section,
  .store-section,
  .feature-section,
  .scenario-section,
  .assurance-band,
  .faq-section,
  .final-cta-section {
    padding-inline: 1rem;
  }

  .story-section,
  .store-section,
  .feature-section,
  .scenario-section,
  .faq-section {
    padding-top: 2.55rem;
    padding-bottom: 2.85rem;
  }

  .assurance-band {
    padding-top: 1.45rem;
    padding-bottom: 1.95rem;
  }

  .final-cta-section {
    padding-top: 2.3rem;
    padding-bottom: 3rem;
  }

  .section-title {
    max-width: 20ch;
  }

  .section-copy {
    max-width: 44ch;
  }

  .section-intro--centered {
    text-align: left;
    margin-inline: 0;
  }

  .section-intro--centered .section-copy {
    margin-inline: 0;
  }

  .story-media {
    min-height: 320px;
    border-radius: 22px;
  }

  .story-media__inset {
    width: 98px;
  }

  .store-globe {
    border-radius: 22px;
  }

  .store-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .store-current {
    width: 100%;
  }

  .feature-composition__visual {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    padding: 0.6rem;
  }

  .feature-composition__media-stack {
    gap: 0.5rem;
  }

  .feature-composition__media-stack--split {
    grid-template-columns: 1fr 1fr;
  }

  .feature-composition__media-stack--triple {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr 1fr;
  }

  .feature-composition__media-card {
    border-radius: 14px;
  }

  .scenario-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .scenario-panel:last-child {
    grid-column: auto;
  }

  .assurance-band__frame {
    grid-template-columns: 1fr;
  }

  .assurance-band__label {
    padding: 0.9rem 0;
    border-bottom: 1px solid #eceff2;
  }

  .assurance-point {
    border-left: none;
    border-bottom: 1px solid #eceff2;
    padding: 0.9rem 0;
  }

  .assurance-point:last-child {
    border-bottom: none;
  }

  .faq-accordion__item summary {
    padding-inline: 0;
  }

  .faq-accordion__answer p {
    padding-right: 0;
  }

  .final-cta {
    border-radius: 26px;
    padding: 1.35rem;
  }

  .final-cta .section-title {
    max-width: 20ch;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

  .shop__content {
    padding: 0;
  }

  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .shop__header {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0;
  }

  .shop__header .shop__logo img {
    height: 28px;
  }

  .shop__products-link {
    font-size: 0.72rem;
  }

  .shop__breadcrumb {
    padding: 0 0.8rem 0.5rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .shop__hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .shop__buybox {
    position: static;
    padding: 1.2rem 1rem 0;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .shop__buybox h1 {
    font-size: 1.6rem;
  }

  .shop__price-row {
    margin-top: 0.8rem;
  }

  .shop__price {
    font-size: 1.4rem;
  }

  .shop__purchase {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .shop__quantity {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
  }

  .shop__cta {
    width: 100%;
    height: 52px;
    font-size: 1rem;
  }

  .shop__quantity-control {
    height: 48px;
    grid-template-columns: 40px 40px 40px;
  }

  .shop__meta-list {
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .shop__meta-list li {
    font-size: 0.88rem;
    gap: 0.6rem;
  }

  .shop__meta-icon {
    width: 24px;
    height: 24px;
  }

  .shop__meta-icon svg {
    width: 20px;
    height: 20px;
  }

  .shop__accordions {
    margin-top: 1rem;
  }

  .shop__accordion {
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }

  .shop__accordion summary {
    font-size: 0.92rem;
  }

  .shop__accordion p {
    font-size: 0.88rem;
  }

  .shop__gallery-mosaic {
    display: none;
  }

  .shop__gallery-mobile {
    display: block;
    max-width: 100%;
    overflow: hidden;
  }

  .shop__gallery-main {
    border-radius: 0;
    border: none;
    aspect-ratio: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
  }

  .shop__gallery-main img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .shop__gallery-thumbs {
    padding: 0.5rem 0.8rem;
    gap: 0.45rem;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop__gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .shop__gallery-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    border-width: 1.5px;
  }

  .shop__quick-features {
    grid-template-columns: 1fr;
  }

  .shop__reviews,
  .shop__story,
  .shop__inuse,
  .shop__help {
    padding-inline: 0.8rem;
    margin-top: 2.4rem;
  }

  .shop__reviews-header h2 {
    font-size: 1.3rem;
  }

  .shop__reviews-write {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .shop__story {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .shop__story-content h2 {
    font-size: 1.4rem;
  }

  .shop__inuse-header h2 {
    font-size: 1.4rem;
  }

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

  .shop__help-header h2 {
    font-size: 1.4rem;
  }

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

  .shop__colors {
    margin-top: 1.2rem;
  }

  .shop__swatches {
    margin-top: 0.5rem;
    gap: 0.55rem;
  }

  .shop__swatch {
    width: 32px;
    height: 32px;
  }

  .shop-selector__header {
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
  }

  .shop-selector__logo {
    grid-column: 1;
    justify-self: start;
  }

  .shop-selector__logo img {
    width: min(100%, 300px);
  }

  .shop-selector__bag {
    grid-column: 2;
  }

  .shop-selector__grid {
    margin-top: clamp(1.5rem, 4vw, 2.2rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selector-card {
    border-radius: 20px;
  }

  .selector-card__media {
    min-height: 210px;
  }

  .checkout-page__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .shop__hero {
    gap: 0;
  }

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

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

@media (max-width: 640px) {
  .landing__copy h1 {
    font-size: clamp(2.2rem, 8vw, 2.9rem);
  }

  .landing__copy p {
    font-size: 0.95rem;
  }

  .btn {
    min-width: 130px;
    height: 48px;
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  .section-copy {
    font-size: 0.9rem;
  }

  .story-media {
    min-height: 260px;
    border-radius: 18px;
  }

  .story-media > img {
    width: min(80%, 300px);
  }

  .story-media__inset {
    width: 80px;
    border-radius: 10px;
  }

  .store-globe {
    border-radius: 18px;
    padding: 0.5rem;
  }

  .store-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }

  .store-pill {
    padding: 0.5rem 0.58rem;
  }

  .store-pill__city {
    font-size: 0.84rem;
  }

  .store-pill__country {
    font-size: 0.74rem;
  }

  .store-pill__status {
    font-size: 0.68rem;
  }

  .feature-composition__visual {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    padding: 0.45rem;
  }

  .feature-composition__media-card {
    border-radius: 12px;
  }

  .feature-row {
    gap: 0.55rem;
    padding: 0.72rem 0;
  }

  .feature-row h3 {
    font-size: 0.92rem;
  }

  .feature-row p {
    font-size: 0.82rem;
  }

  .scenario-panel {
    border-radius: 18px;
  }

  .scenario-panel__body {
    padding: 0.8rem;
  }

  .scenario-panel h3 {
    font-size: 0.94rem;
  }

  .scenario-panel p {
    font-size: 0.82rem;
  }

  .faq-accordion__item summary {
    font-size: 0.9rem;
    padding: 0.78rem 0;
  }

  .faq-accordion__answer p {
    font-size: 0.85rem;
  }

  .final-cta {
    border-radius: 20px;
    padding: 1.1rem;
  }

  .final-cta .btn {
    min-width: 130px;
    height: 44px;
    font-size: 0.9rem;
  }

  .final-cta__media img {
    max-height: 180px;
  }

  .shop-selector__content {
    padding: clamp(1.2rem, 3vw, 1.8rem) 0.8rem clamp(1.5rem, 3vw, 2rem);
  }

  .shop-selector__grid {
    grid-template-columns: 1fr;
  }

  .shop-selector__logo img {
    width: min(100%, 220px);
  }

  .shop-selector__intro h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .shop-selector__intro p {
    font-size: 0.9rem;
  }

  .selector-card {
    border-radius: 16px;
  }

  .selector-card__media {
    min-height: 180px;
    padding: 0.8rem 0.8rem 0.3rem;
  }

  .selector-card__body {
    padding: 0.8rem;
    gap: 0.45rem;
  }

  .selector-card h2 {
    font-size: 1.1rem;
  }

  .selector-card p {
    font-size: 0.84rem;
  }

  .selector-card__cta {
    height: 40px;
    font-size: 0.88rem;
  }

  .shop__buybox h1 {
    font-size: 1.4rem;
  }

  .shop__description {
    font-size: 0.92rem;
  }

  .shop__quick-features li {
    padding: 0.7rem;
  }

  .shop__quick-features-title {
    font-size: 0.85rem;
  }

  .shop__quick-features-body {
    font-size: 0.78rem;
  }

  .shop__reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .shop__reviews-header h2 {
    font-size: 1.15rem;
  }

  .shop__review {
    padding: 1.2rem 0;
  }

  .shop__review-body {
    font-size: 0.9rem;
  }

  .shop__story-content h2 {
    font-size: 1.25rem;
  }

  .shop__story-content p {
    font-size: 0.92rem;
  }

  .shop__inuse-header h2 {
    font-size: 1.25rem;
  }

  .shop__help-header h2 {
    font-size: 1.25rem;
  }

  .shop__help-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .shop__help-card h3 {
    font-size: 0.98rem;
  }

  .shop__help-card p {
    font-size: 0.85rem;
  }

  .checkout-page__content {
    padding: 1rem 0.8rem 1.5rem;
  }

  .checkout-page__header h1 {
    font-size: 1.5rem;
  }

  .checkout-form,
  .checkout-summary {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .site-footer {
    padding-inline: 1rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__brand p {
    font-size: 0.88rem;
  }

  .site-footer__col h3 {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
  }

  .site-footer__col a {
    font-size: 0.85rem;
    margin: 0.38rem 0;
  }

  .site-footer__bottom {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .floating-nav__shell {
    padding: 0.28rem 0.3rem 0.28rem 0.46rem;
    gap: 0.35rem;
  }

  .floating-nav__logo img {
    width: 100px;
  }

  .floating-nav__about,
  .floating-nav__shop {
    min-width: 60px;
    height: 28px;
    font-size: 0.68rem;
  }

  .landing {
    padding-inline: 0.75rem;
  }

  .landing__brand {
    width: min(100%, 320px);
  }

  .landing__copy h1 {
    font-size: 2rem;
  }

  .landing__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing__actions .btn {
    width: 100%;
  }

  .landing__visual img {
    width: min(100%, 340px);
  }

  .story-section,
  .store-section,
  .feature-section,
  .scenario-section,
  .faq-section,
  .final-cta-section {
    padding-inline: 0.75rem;
  }

  .assurance-band {
    padding-inline: 0.75rem;
  }

  .story-media {
    min-height: 220px;
    border-radius: 16px;
    padding: 0.7rem;
  }

  .store-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }

  .store-pill {
    padding: 0.42rem 0.5rem;
  }

  .store-pill__city {
    font-size: 0.8rem;
  }

  .store-pill__country {
    font-size: 0.7rem;
  }

  .store-pill__status {
    font-size: 0.65rem;
    margin-top: 0.3rem;
  }

  .feature-composition__visual {
    border-radius: 14px;
    padding: 0.35rem;
  }

  .feature-composition__media-card {
    border-radius: 10px;
  }

  .final-cta {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .final-cta .section-title {
    font-size: 1.3rem;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .final-cta__media img {
    max-height: 140px;
  }

  .shop-selector__content {
    padding: 1rem 0.65rem 1.4rem;
  }

  .shop-selector__intro h1 {
    font-size: 1.45rem;
  }

  .selector-card__media {
    min-height: 160px;
  }

  .shop__buybox {
    padding: 0.8rem 0.75rem 0;
  }

  .shop__buybox h1 {
    font-size: 1.25rem;
  }

  .shop__cta {
    height: 50px;
    font-size: 0.95rem;
  }

  .shop__quantity-control {
    height: 44px;
    grid-template-columns: 36px 36px 36px;
  }

  .shop__gallery-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
  }

  .shop__reviews,
  .shop__story,
  .shop__inuse,
  .shop__help {
    padding-inline: 0.75rem;
    margin-top: 2rem;
  }

  .shop__meta-list {
    padding: 0.75rem;
  }

  .shop__meta-list li {
    font-size: 0.82rem;
  }

  .shop__accordion {
    padding: 0.65rem 0.75rem;
  }

  .checkout-page__content {
    padding: 0.8rem 0.65rem 1.2rem;
  }

  .checkout-form,
  .checkout-summary {
    border-radius: 12px;
    padding: 0.7rem;
  }

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

  .site-footer {
    padding-inline: 0.75rem;
  }
}
