body[data-site-page="home"] {
  --home-v2-font-display: "Space Grotesk", Arial, sans-serif;
  --home-v2-font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --home-v2-panel-border: rgba(255, 255, 255, 0.1);
  --home-v2-panel-bg: linear-gradient(180deg, rgba(12, 14, 22, 0.82) 0%, rgba(8, 9, 15, 0.76) 100%);
  --home-v2-panel-strong: linear-gradient(180deg, rgba(16, 18, 29, 0.92) 0%, rgba(9, 10, 17, 0.96) 100%);
  --home-v2-panel-shadow: 0 28px 90px rgba(4, 5, 10, 0.5);
  --home-v2-panel-shadow-strong: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 32px 90px rgba(5, 5, 10, 0.62);
  --home-v2-text-strong: rgba(248, 247, 252, 0.98);
  --home-v2-text-muted: rgba(223, 223, 236, 0.7);
  --home-v2-text-subtle: rgba(223, 223, 236, 0.46);
  --home-v2-grid-line: rgba(255, 255, 255, 0.04);
  font-family: var(--home-v2-font-body);
  color: var(--home-v2-text-strong);
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body[data-site-page="home"]::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 78%);
}

body[data-site-page="home"] .home-v2-container {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

body[data-site-page="home"] .home-v2-main {
  position: relative;
}

body[data-site-page="home"] .home-v2-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.72);
  backdrop-filter: blur(24px);
}

body[data-site-page="home"] .home-v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

body[data-site-page="home"] .home-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

body[data-site-page="home"] .home-v2-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

body[data-site-page="home"] .home-v2-brand-mark img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.95rem;
  object-fit: contain;
}

body[data-site-page="home"] .home-v2-brand-copy {
  display: flex;
  flex-direction: column;
}

body[data-site-page="home"] .home-v2-brand-name {
  font-family: var(--home-v2-font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
}

body[data-site-page="home"] .home-v2-brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

body[data-site-page="home"] .home-v2-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

body[data-site-page="home"] .home-v2-nav a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  transition: 180ms ease;
}

body[data-site-page="home"] .home-v2-nav a:hover,
body[data-site-page="home"] .home-v2-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(6, 7, 12, 0.18);
}

body[data-site-page="home"] .home-v2-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body[data-site-page="home"] .home-v2-cart,
body[data-site-page="home"] .home-v2-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  transition: 180ms ease;
}

body[data-site-page="home"] .home-v2-cart {
  display: none;
  gap: 0.75rem;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.95rem;
}

body[data-site-page="home"] .home-v2-cart:hover,
body[data-site-page="home"] .home-v2-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

body[data-site-page="home"] .home-v2-cart-icon,
body[data-site-page="home"] .home-v2-cta-icon,
body[data-site-page="home"] .home-v2-style-card-arrow,
body[data-site-page="home"] .home-v2-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body[data-site-page="home"] .home-v2-cart-icon svg,
body[data-site-page="home"] .home-v2-cta-icon svg,
body[data-site-page="home"] .home-v2-style-card-arrow svg,
body[data-site-page="home"] .home-v2-feature-icon svg {
  width: 1rem;
  height: 1rem;
}

body[data-site-page="home"] .home-v2-cart-badge {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
}

body[data-site-page="home"] .home-v2-menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  position: relative;
}

body[data-site-page="home"] .home-v2-menu-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body[data-site-page="home"] .home-v2-menu-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

body[data-site-page="home"] .home-v2-menu-toggle .home-v2-menu-icon-close {
  opacity: 0;
}

body[data-site-page="home"] .home-v2-menu-toggle.is-open .home-v2-menu-icon-open {
  opacity: 0;
}

body[data-site-page="home"] .home-v2-menu-toggle.is-open .home-v2-menu-icon-close {
  opacity: 1;
}

body[data-site-page="home"] .home-v2-mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 18, 0.95);
  backdrop-filter: blur(24px);
}

body[data-site-page="home"] .home-v2-mobile-menu.is-open {
  display: block;
}

body[data-site-page="home"] .home-v2-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
}

body[data-site-page="home"] .home-v2-mobile-menu-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

body[data-site-page="home"] .home-v2-mobile-menu-inner a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body[data-site-page="home"] .home-v2-hero,
body[data-site-page="home"] .home-v2-gallery-section,
body[data-site-page="home"] .home-v2-luma-section,
body[data-site-page="home"] .home-v2-reviews-section {
  position: relative;
}

body[data-site-page="home"] .home-v2-hero {
  overflow: hidden;
  padding: 1.5rem 0 5rem;
  color: #fff;
}

body[data-site-page="home"] .home-v2-hero-grid-violet,
body[data-site-page="home"] .home-v2-dark-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
}

body[data-site-page="home"] .home-v2-hero-grid-violet {
  opacity: 0.3;
}

body[data-site-page="home"] .home-v2-dark-grid {
  opacity: 0.3;
}

body[data-site-page="home"] .home-v2-hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body[data-site-page="home"] .home-v2-hero-glow {
  position: absolute;
  inset-inline: 0;
  bottom: -12rem;
  height: 30rem;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(161, 110, 255, 0.24), transparent 56%);
  filter: blur(64px);
}

body[data-site-page="home"] .home-v2-hero-inner {
  position: relative;
}

body[data-site-page="home"] .home-v2-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

body[data-site-page="home"] .home-v2-hero-copy {
  padding-top: 2rem;
}

body[data-site-page="home"] .home-v2-hero-copy-scale {
  transform-origin: top left;
}

body[data-site-page="home"] .home-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 199, 255, 0.16);
  background: rgba(42, 22, 70, 0.72);
  color: #f1e9ff;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(98, 48, 180, 0.18);
  backdrop-filter: blur(24px);
}

body[data-site-page="home"] .home-v2-eyebrow-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: oklch(81.1% 0.111 293.571);
}

body[data-site-page="home"] .home-v2-eyebrow-icon svg {
  width: 100%;
  height: 100%;
}

body[data-site-page="home"] .home-v2-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

body[data-site-page="home"] .home-v2-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  backdrop-filter: blur(24px);
}

body[data-site-page="home"] .home-v2-hero-copy-stack {
  margin-top: 1.8rem;
}

body[data-site-page="home"] .home-v2-hero-heading {
  margin: 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.072em;
}

body[data-site-page="home"] .home-v2-hero-heading-main,
body[data-site-page="home"] .home-v2-hero-heading-accent {
  display: block;
  white-space: normal;
  overflow-wrap: break-word;
}

body[data-site-page="home"] .home-v2-hero-heading-line-tail {
  white-space: nowrap;
}

/* Hero word cycler */
body[data-site-page="home"] .home-v2-hero-cycle {
  display: inline-grid;
  vertical-align: baseline;
}
body[data-site-page="home"] .home-v2-hero-cycle-word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.18em);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
body[data-site-page="home"] .home-v2-hero-cycle-word.home-v2-hero-cycle-word-active {
  opacity: 1;
  transform: translateY(0);
}

body[data-site-page="home"] .home-v2-gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #f4dcff 24%, #d5b2ff 56%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(196, 148, 255, 0.24);
}

body[data-site-page="home"] .home-v2-hero-lead {
  margin-top: 1.6rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.75;
}

body[data-site-page="home"] .home-v2-hero-actions,
body[data-site-page="home"] .home-v2-luma-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

body[data-site-page="home"] .home-v2-cta,
body[data-site-page="home"] .home-v2-review-button,
body[data-site-page="home"] .home-v2-form-button,
body[data-site-page="home"] .home-v2-gallery-section-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

body[data-site-page="home"] .home-v2-cta:hover,
body[data-site-page="home"] .home-v2-review-button:hover,
body[data-site-page="home"] .home-v2-form-button:hover,
body[data-site-page="home"] .home-v2-gallery-section-link:hover {
  transform: translateY(-2px);
}

body[data-site-page="home"] .home-v2-cta-primary,
body[data-site-page="home"] .home-v2-review-button,
body[data-site-page="home"] .home-v2-form-button {
  border: 1px solid rgba(246, 224, 255, 0.22);
  background: linear-gradient(135deg, rgba(232, 101, 255, 0.98), rgba(153, 112, 255, 0.98));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 34px rgba(194, 107, 255, 0.34);
}

body[data-site-page="home"] .home-v2-cta-secondary,
body[data-site-page="home"] .home-v2-gallery-section-link {
  border: 1px solid rgba(223, 205, 255, 0.18);
  background: linear-gradient(180deg, rgba(66, 43, 110, 0.52), rgba(29, 20, 50, 0.56));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 28px rgba(133, 97, 228, 0.16);
  backdrop-filter: blur(18px);
}

body[data-site-page="home"] .home-v2-cta,
body[data-site-page="home"] .home-v2-gallery-section-link,
body[data-site-page="home"] .home-v2-review-button {
  padding: 1rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body[data-site-page="home"] .home-v2-form-button {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
}

body[data-site-page="home"] .home-v2-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 320ms ease;
  background: radial-gradient(280px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(240, 190, 255, 0.34), transparent 52%);
}

body[data-site-page="home"] .home-v2-spotlight:hover::after,
body[data-site-page="home"] .home-v2-spotlight:focus-within::after {
  opacity: 1;
  transition: opacity 80ms ease;
}

body[data-site-page="home"] .home-v2-spotlight > * {
  position: relative;
  z-index: 1;
}

body[data-site-page="home"] .home-v2-hero-media {
  position: relative;
  padding-top: 1rem;
}

body[data-site-page="home"] .home-v2-floating-pill {
  display: none;
  position: absolute;
  left: 0.5rem;
  top: 2rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(19, 20, 34, 0.9) 0%, rgba(11, 14, 23, 0.84) 100%);
  padding: 0.75rem;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

body[data-site-page="home"] .home-v2-hero-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1.5px;
  background:
    linear-gradient(145deg, rgba(247, 240, 255, 0.92) 0%, rgba(198, 176, 245, 0.46) 18%, rgba(86, 76, 126, 0.14) 52%, rgba(112, 81, 213, 0.52) 82%, rgba(151, 113, 255, 0.84) 100%);
  opacity: 1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

body[data-site-page="home"] .home-v2-hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 90%);
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.62; }
  50% { opacity: 1; }
}

body[data-site-page="home"] .home-v2-hero-frame-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 8%, rgba(220, 198, 255, 0.42), transparent 31%),
    radial-gradient(circle at 84% 96%, rgba(128, 90, 255, 0.4), transparent 32%),
    linear-gradient(180deg, rgba(9, 11, 18, 0.02) 0%, rgba(9, 11, 18, 0.18) 100%);
  animation: heroGlowPulse 3.8s ease-in-out infinite;
  will-change: opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  body[data-site-page="home"] .home-v2-hero-frame-glow { animation: none; }
}

body[data-site-page="home"] .home-v2-hero-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(232, 205, 255, 0.24);
  background:
    radial-gradient(circle at 50% 50%, rgba(188, 117, 255, 0.08), transparent 50%),
    radial-gradient(circle at 24% 14%, rgba(131, 109, 197, 0.16), transparent 28%),
    radial-gradient(circle at 78% 88%, rgba(98, 72, 197, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(11, 12, 20, 0.94) 0%, rgba(7, 8, 14, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -26px 48px rgba(57, 22, 112, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 26px rgba(216, 180, 254, 0.18),
    0 0 58px rgba(147, 51, 234, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

body[data-site-page="home"] .home-v2-hero-image-topline {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

body[data-site-page="home"] .home-v2-hero-image-topline span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-image-window {
  position: relative;
  overflow: hidden;
}

body[data-site-page="home"] .home-v2-hero-image-window {
  aspect-ratio: 1.05 / 1.16;
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(11, 12, 20, 0.08) 0%, rgba(7, 8, 14, 0.22) 100%);
}

body[data-site-page="home"] .home-v2-hero-image-window > img,
body[data-site-page="home"] .home-v2-style-card-thumb > img,
body[data-site-page="home"] .home-v2-gallery-card-media > img,
body[data-site-page="home"] .home-v2-luma-display > img,
body[data-site-page="home"] .home-v2-luma-display > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 320ms ease, filter 320ms ease;
}

body[data-site-page="home"] .home-v2-hero-image-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.1) 0%, rgba(7, 10, 18, 0) 38%, rgba(7, 10, 18, 0.55) 100%);
}

body[data-site-page="home"] .home-v2-hero-price-card {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 10, 18, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(30px);
}

body[data-site-page="home"] .home-v2-card-label,
body[data-site-page="home"] .home-v2-card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-card-label {
  color: rgba(255, 255, 255, 0.52);
}

body[data-site-page="home"] .home-v2-card-meta {
  color: rgba(255, 255, 255, 0.36);
}

body[data-site-page="home"] .home-v2-card-meta-light {
  color: rgba(255, 255, 255, 0.4);
}

body[data-site-page="home"] .home-v2-card-price {
  text-align: right;
}

body[data-site-page="home"] .home-v2-card-price div:last-child {
  margin-top: 0.3rem;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: #fff;
}

body[data-site-page="home"] .home-v2-style-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

body[data-site-page="home"] .home-v2-style-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 8.25rem;
  padding: 1rem;
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 70px rgba(4, 5, 10, 0.32);
  backdrop-filter: blur(24px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body[data-site-page="home"] .home-v2-style-card:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 207, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 32px 80px rgba(4, 5, 10, 0.42);
}

body[data-site-page="home"] .home-v2-style-card-thumb {
  display: inline-flex;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

body[data-site-page="home"] .home-v2-style-card-copy {
  min-width: 0;
  flex: 1;
}

body[data-site-page="home"] .home-v2-style-card-tag {
  display: block;
  color: #d5c6ff;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-style-card-title {
  display: block;
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.045em;
}

body[data-site-page="home"] .home-v2-style-card-text {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

body[data-site-page="home"] .home-v2-style-card-arrow {
  flex-shrink: 0;
  color: #ddd2ff;
}

body[data-site-page="home"] .home-v2-gallery-section {
  padding: 6rem 0 7rem;
  background: #f4f1eb;
  color: rgba(16, 18, 22, 0.9);
}

body[data-site-page="home"] .home-v2-gallery-topfade {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244, 241, 235, 0), #f4f1eb);
}

body[data-site-page="home"] .home-v2-section-heading {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

body[data-site-page="home"] .home-v2-section-eyebrow,
body[data-site-page="home"] .home-v2-footer-pill,
body[data-site-page="home"] .home-v2-inquiry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-section-eyebrow {
  color: rgba(16, 18, 22, 0.58);
}

body[data-site-page="home"] .home-v2-section-heading h2,
body[data-site-page="home"] .home-v2-footer-copy h2 {
  margin: 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

body[data-site-page="home"] .home-v2-section-heading p {
  margin: 1.25rem auto 0;
  max-width: 46rem;
  color: rgba(16, 18, 22, 0.62);
  font-size: 1.1rem;
  line-height: 1.78;
}

body[data-site-page="home"] .home-v2-gallery-shell {
  margin-top: 3rem;
}

body[data-site-page="home"] .home-v2-gallery-surface {
  position: relative;
  overflow: hidden;
  border-radius: 3.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 244, 238, 0.9) 58%, rgba(240, 236, 228, 0.92) 100%);
  padding: 1rem 0.75rem 2.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 38px 120px rgba(16, 18, 22, 0.08);
}

body[data-site-page="home"] .home-v2-gallery-surface-glow,
body[data-site-page="home"] .home-v2-gallery-shadow,
body[data-site-page="home"] .home-v2-gallery-edge {
  position: absolute;
  pointer-events: none;
}

body[data-site-page="home"] .home-v2-gallery-surface-glow {
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.98), transparent 30%),
    radial-gradient(circle at 50% 74%, rgba(255, 228, 183, 0.26), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 30%);
}

body[data-site-page="home"] .home-v2-gallery-edge {
  inset-block: 0;
  width: 3rem;
  z-index: 20;
}

body[data-site-page="home"] .home-v2-gallery-edge-left {
  left: 0;
  background: linear-gradient(90deg, #f3efe8 18%, rgba(243, 239, 232, 0));
}

body[data-site-page="home"] .home-v2-gallery-edge-right {
  right: 0;
  background: linear-gradient(270deg, #f3efe8 18%, rgba(243, 239, 232, 0));
}

body[data-site-page="home"] .home-v2-gallery-shadow {
  left: 50%;
  top: 68%;
  width: 84%;
  height: 8rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 19, 25, 0.16), transparent 70%);
  filter: blur(48px);
}

body[data-site-page="home"] .home-v2-gallery-viewport {
  position: relative;
  padding-block: 2rem 3.5rem;
  touch-action: pan-y;
  outline: none;
}

body[data-site-page="home"] .home-v2-gallery-viewport.is-grabbing {
  cursor: grabbing;
}

body[data-site-page="home"] .home-v2-gallery-stage {
  position: relative;
  min-height: clamp(22rem, 64vw, 34rem);
  isolation: isolate;
  perspective: 1600px;
  perspective-origin: center center;
}

body[data-site-page="home"] .home-v2-gallery-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, clamp(16.5rem, 66vw, 27rem));
  aspect-ratio: 0.92 / 1.08;
  border-radius: 2.45rem;
  pointer-events: none;
  transform-style: preserve-3d;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

body[data-site-page="home"] .home-v2-gallery-card.is-active,
body[data-site-page="home"] .home-v2-gallery-card.is-interactive {
  pointer-events: auto;
}

body[data-site-page="home"] .home-v2-gallery-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -1.15rem;
  height: 1.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 19, 25, 0.16) 0%, transparent 72%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

body[data-site-page="home"] .home-v2-gallery-card-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2.45rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 244, 238, 0.9) 58%, rgba(240, 236, 228, 0.92) 100%);
  box-shadow: 0 30px 80px rgba(16, 18, 22, 0.14);
}

body[data-site-page="home"] .home-v2-gallery-card-media {
  position: relative;
  height: 100%;
}

body[data-site-page="home"] .home-v2-gallery-card-media > img {
  object-fit: cover;
}

body[data-site-page="home"] .home-v2-gallery-card-dim,
body[data-site-page="home"] .home-v2-gallery-card-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-site-page="home"] .home-v2-gallery-card-dim {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.04) 8%, rgba(10, 12, 18, 0.14) 42%, rgba(10, 12, 18, 0.72) 100%);
}

body[data-site-page="home"] .home-v2-gallery-card-sheen {
  background: radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.16), transparent 32%), radial-gradient(circle at 50% 112%, rgba(255, 203, 112, 0.12), transparent 32%);
}

body[data-site-page="home"] .home-v2-gallery-card-copy {
  display: none;
}

body[data-site-page="home"] .home-v2-gallery-card-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-gallery-card-title {
  margin-top: 0.6rem;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.055em;
}

body[data-site-page="home"] .home-v2-gallery-card-text {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

body[data-site-page="home"] .home-v2-gallery-card-action {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body[data-site-page="home"] .home-v2-gallery-card-action a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 224, 255, 0.22);
  background: linear-gradient(135deg, rgba(232, 101, 255, 0.98), rgba(153, 112, 255, 0.98));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(194, 107, 255, 0.34);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

body[data-site-page="home"] .home-v2-gallery-card-action a::after {
  border-radius: inherit;
}

body[data-site-page="home"] .home-v2-gallery-card-action a:hover,
body[data-site-page="home"] .home-v2-gallery-card-action a:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 46px rgba(212, 118, 255, 0.46);
}

body[data-site-page="home"] .home-v2-gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

body[data-site-page="home"] .home-v2-gallery-controls button,
body[data-site-page="home"] .home-v2-gallery-count {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 19, 25, 0.86);
  box-shadow: 0 10px 24px rgba(16, 18, 22, 0.08);
}

body[data-site-page="home"] .home-v2-gallery-controls button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
}

body[data-site-page="home"] .home-v2-gallery-controls button svg {
  width: 1rem;
  height: 1rem;
}

body[data-site-page="home"] .home-v2-gallery-count {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

body[data-site-page="home"] .home-v2-gallery-hint {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: rgba(16, 18, 22, 0.54);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

body[data-site-page="home"] .home-v2-gallery-link-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

body[data-site-page="home"] .home-v2-luma-section {
  overflow: hidden;
  padding: 6rem 0 7rem;
  color: #fff;
}

body[data-site-page="home"] .home-v2-luma-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body[data-site-page="home"] .home-v2-section-heading-light p {
  color: rgba(255, 255, 255, 0.6);
}

body[data-site-page="home"] .home-v2-luma-heading {
  margin: 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(3rem, 6.8vw, 5.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

body[data-site-page="home"] .home-v2-luma-heading-main,
body[data-site-page="home"] .home-v2-luma-heading-accent {
  display: block;
}

body[data-site-page="home"] .home-v2-luma-card {
  position: relative;
  margin-top: 3.5rem;
  overflow: hidden;
  border-radius: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.5);
}

body[data-site-page="home"] .home-v2-luma-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 154, 87, 0.16), transparent 18%),
    radial-gradient(circle at 78% 34%, rgba(91, 140, 255, 0.2), transparent 20%);
}

body[data-site-page="home"] .home-v2-luma-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

body[data-site-page="home"] .home-v2-luma-visual {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c1018;
  padding: 1.25rem;
  isolation: isolate;
}

body[data-site-page="home"] .home-v2-luma-visual::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  z-index: 0;
  pointer-events: none;
  border-radius: 2rem;
  background:
    radial-gradient(38% 28% at 14% 18%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(42% 34% at 84% 22%, rgba(216, 180, 254, 0.42), transparent 66%),
    radial-gradient(44% 38% at 22% 86%, rgba(147, 51, 234, 0.4), transparent 68%),
    radial-gradient(34% 30% at 88% 82%, rgba(255, 255, 255, 0.18), transparent 62%);
  filter: blur(28px);
  opacity: 0.58;
  transform: translate3d(0, 0, 0) scale(1);
}

body[data-site-page="home"] .home-v2-luma-visual-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(48px);
}

body[data-site-page="home"] .home-v2-luma-visual-glow-bottom {
  inset-inline: 10%;
  bottom: 2.5rem;
  height: 5rem;
  background: radial-gradient(circle, rgba(147, 175, 255, 0.38), transparent 68%);
}

body[data-site-page="home"] .home-v2-luma-visual-glow-top {
  inset-inline: 16%;
  top: 2rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(255, 171, 106, 0.24), transparent 72%);
}

body[data-site-page="home"] .home-v2-luma-display {
  position: relative;
  z-index: 1;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(232, 205, 255, 0.24);
  background:
    radial-gradient(circle at 50% 50%, rgba(188, 117, 255, 0.08), transparent 50%),
    #0d1220;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -26px 48px rgba(57, 22, 112, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 26px rgba(216, 180, 254, 0.18),
    0 0 58px rgba(147, 51, 234, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

body[data-site-page="home"] .home-v2-luma-display > img,
body[data-site-page="home"] .home-v2-luma-display > video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-site-page="home"] .home-v2-luma-display > img[data-home-v2-media-image],
body[data-site-page="home"] .home-v2-luma-display > video[data-home-v2-media-video] {
  position: absolute;
  inset: 0;
}

body[data-site-page="home"] .home-v2-luma-display > img[data-home-v2-media-image] {
  z-index: 0;
}

body[data-site-page="home"] .home-v2-luma-display > video[data-home-v2-media-video] {
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

body[data-site-page="home"] .home-v2-luma-display.is-video-ready > video[data-home-v2-media-video] {
  opacity: 1;
}

body[data-site-page="home"] .home-v2-luma-display::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0.3) 0%, rgba(5, 8, 14, 0.02) 30%, rgba(5, 8, 14, 0.08) 72%, rgba(5, 8, 14, 0.46) 100%);
}

body[data-site-page="home"] .home-v2-hero-image-shell::after,
body[data-site-page="home"] .home-v2-luma-display::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background:
    radial-gradient(76% 160% at 8% 14%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(80% 150% at 92% 18%, rgba(232, 213, 255, 0.88), transparent 27%),
    radial-gradient(84% 170% at 18% 92%, rgba(168, 85, 247, 0.9), transparent 31%),
    radial-gradient(68% 140% at 86% 88%, rgba(255, 255, 255, 0.66), transparent 24%),
    linear-gradient(116deg, rgba(255, 255, 255, 0.95) 0%, transparent 12%, transparent 43%, rgba(255, 255, 255, 0.58) 49%, transparent 58%, transparent 83%, rgba(255, 255, 255, 0.72) 100%),
    conic-gradient(
      from var(--luma-border-angle, 38deg),
      rgba(255, 255, 255, 0.82) 0deg,
      rgba(216, 180, 254, 0.9) 34deg,
      rgba(147, 51, 234, 0.84) 72deg,
      rgba(85, 32, 169, 0.22) 104deg,
      rgba(255, 255, 255, 0.74) 144deg,
      rgba(192, 132, 252, 0.92) 194deg,
      rgba(255, 255, 255, 0.88) 232deg,
      rgba(126, 34, 206, 0.64) 288deg,
      rgba(255, 255, 255, 0.82) 360deg
    );
  background-blend-mode: screen, screen, screen, screen, screen, normal;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 0 18px rgba(255, 255, 255, 0.24),
    inset 0 0 36px rgba(216, 180, 254, 0.26);
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 18px rgba(168, 85, 247, 0.28));
  opacity: 0.84;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

body[data-site-page="home"] .home-v2-luma-display-topline {
  position: absolute;
  inset-inline: 1rem;
  top: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

body[data-site-page="home"] .home-v2-luma-display-topline span,
body[data-site-page="home"] .home-v2-luma-mode-pills span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.26);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(24px);
}

body[data-site-page="home"] .home-v2-luma-mode-pills span {
  padding: 0.42rem 0.72rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.56rem, 1.45vw, 0.66rem);
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

body[data-site-page="home"] .home-v2-luma-mode-pills span.is-active-mode {
  transform: translateY(-1px);
  border-color: rgba(216, 180, 254, 0.34);
  background: rgba(168, 85, 247, 0.18);
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 12px rgba(168, 85, 247, 0.26),
    0 0 26px rgba(216, 180, 254, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body[data-site-page="home"] .home-v2-luma-mode-pills {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body[data-site-page="home"] .home-v2-luma-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

body[data-site-page="home"] .home-v2-luma-title {
  margin: 1rem 0 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

body[data-site-page="home"] .home-v2-luma-text {
  margin-top: 1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.8;
}

body[data-site-page="home"] .home-v2-luma-feature-grid {
  display: grid;
  gap: 1rem;
  flex: 1 1 auto;
  align-content: stretch;
}

body[data-site-page="home"] .home-v2-luma-feature {
  height: 100%;
  padding: 1rem;
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

body[data-site-page="home"] .home-v2-feature-icon {
  color: #fff;
}

body[data-site-page="home"] .home-v2-luma-feature-title {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

body[data-site-page="home"] .home-v2-luma-feature p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.65;
}

body[data-site-page="home"] .home-v2-luma-price-row strong {
  display: block;
  margin-top: 0.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

body[data-site-page="home"] .home-v2-reviews-section {
  padding: 6rem 0 7rem;
  background: #f6f3ec;
  color: rgba(16, 18, 22, 0.9);
}

body[data-site-page="home"] .home-v2-reviews-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

body[data-site-page="home"] .home-v2-inquiry-panel,
body[data-site-page="home"] .home-v2-review-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: 0 30px 90px rgba(16, 18, 22, 0.18);
}

body[data-site-page="home"] .home-v2-inquiry-panel {
  color: #fff;
  background: linear-gradient(180deg, rgba(19, 15, 36, 0.96) 0%, rgba(9, 11, 20, 0.96) 100%);
}

body[data-site-page="home"] .home-v2-review-panel {
  color: #fff;
  background: linear-gradient(180deg, rgba(19, 15, 36, 0.96) 0%, rgba(9, 11, 20, 0.96) 100%);
}

body[data-site-page="home"] .home-v2-review-panel-glow,
body[data-site-page="home"] .home-v2-review-panel-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-site-page="home"] .home-v2-review-panel-glow {
  background: radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body[data-site-page="home"] .home-v2-review-panel-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

body[data-site-page="home"] .home-v2-review-panel-grid-strong {
  opacity: 0.34;
}

body[data-site-page="home"] .home-v2-inquiry-panel-inner,
body[data-site-page="home"] .home-v2-review-panel-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

body[data-site-page="home"] .home-v2-inquiry-pill {
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.74);
}

body[data-site-page="home"] .home-v2-inquiry-pill span:first-child {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #fff;
}

body[data-site-page="home"] .home-v2-inquiry-title {
  margin: 1.75rem 0 0;
  max-width: 11ch;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

body[data-site-page="home"] .home-v2-form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

body[data-site-page="home"] .home-v2-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

body[data-site-page="home"] .home-v2-field-full {
  grid-column: 1 / -1;
}

body[data-site-page="home"] .home-v2-field label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

body[data-site-page="home"] .home-v2-field input,
body[data-site-page="home"] .home-v2-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

body[data-site-page="home"] .home-v2-field textarea {
  min-height: 9rem;
  resize: vertical;
}

body[data-site-page="home"] .home-v2-field input:focus,
body[data-site-page="home"] .home-v2-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 0 3px rgba(188, 160, 255, 0.16);
}

body[data-site-page="home"] .home-v2-form-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

body[data-site-page="home"] .home-v2-review-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

body[data-site-page="home"] .home-v2-review-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

body[data-site-page="home"] .home-v2-review-rating-value {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}

body[data-site-page="home"] .home-v2-review-stars {
  color: oklch(82.8% 0.189 84.429);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

body[data-site-page="home"] .home-v2-review-stars-small {
  font-size: 0.85rem;
}

body[data-site-page="home"] .home-v2-review-summary-copy p {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.75;
}

body[data-site-page="home"] .home-v2-review-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

body[data-site-page="home"] .home-v2-review-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.04);
}

body[data-site-page="home"] .home-v2-review-avatar {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 101, 255, 0.92), rgba(153, 112, 255, 0.92));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body[data-site-page="home"] .home-v2-review-copy {
  min-width: 0;
  flex: 1;
}

body[data-site-page="home"] .home-v2-review-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

body[data-site-page="home"] .home-v2-review-author {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

body[data-site-page="home"] .home-v2-review-meta {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

body[data-site-page="home"] .home-v2-review-title {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

body[data-site-page="home"] .home-v2-review-copy p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
}

body[data-site-page="home"] .footer {
  border-top: none;
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 2rem;
}

body[data-site-page="home"] .footer::before,
body[data-site-page="home"] .footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-site-page="home"] .footer::before {
  background:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
}

body[data-site-page="home"] .footer::after {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body[data-site-page="home"] .home-v2-footer-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--home-v2-panel-border);
  background: var(--home-v2-panel-bg);
  box-shadow: var(--home-v2-panel-shadow);
  padding: 1.75rem;
  backdrop-filter: blur(18px);
}

body[data-site-page="home"] .home-v2-footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.15), transparent 32%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 35%);
}

body[data-site-page="home"] .home-v2-footer-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

body[data-site-page="home"] .home-v2-footer-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d111b;
  color: rgba(255, 255, 255, 0.68);
}

body[data-site-page="home"] .home-v2-footer-copy h2 {
  max-width: 34rem;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  line-height: 0.95;
  color: #fff;
}

body[data-site-page="home"] .home-v2-footer-copy p {
  margin-top: 0.85rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

body[data-site-page="home"] .home-v2-footer-meta {
  position: relative;
  display: inline-flex;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.95rem;
}

body[data-site-page="home"] .home-v2-footer-secret {
  position: absolute;
  inset: 0;
}

body[data-site-page="home"] .home-v2-footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body[data-site-page="home"] .home-v2-footer-heading {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body[data-site-page="home"] .home-v2-footer-links,
body[data-site-page="home"] .home-v2-footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body[data-site-page="home"] .home-v2-footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

body[data-site-page="home"] .home-v2-footer-links a:hover {
  color: #fff;
}

body[data-site-page="home"] .home-v2-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

body[data-site-page="home"] .home-v2-social-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body[data-site-page="home"] .home-v2-social-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

body[data-site-page="home"] .home-v2-social-icon img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

body.home-v2-storefront-page .home-v2-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.72);
  backdrop-filter: blur(24px);
}

body.home-v2-storefront-page .home-v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

body.home-v2-storefront-page .home-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

body.home-v2-storefront-page .home-v2-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

body.home-v2-storefront-page .home-v2-brand-mark img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.95rem;
  object-fit: contain;
}

body.home-v2-storefront-page .home-v2-brand-copy {
  display: flex;
  flex-direction: column;
}

body.home-v2-storefront-page .home-v2-brand-name {
  font-family: var(--home-v2-font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
}

body.home-v2-storefront-page .home-v2-brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

body.home-v2-storefront-page .home-v2-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

body.home-v2-storefront-page .home-v2-nav a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  transition: 180ms ease;
}

body.home-v2-storefront-page .home-v2-nav a:hover,
body.home-v2-storefront-page .home-v2-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(6, 7, 12, 0.18);
}

body.home-v2-storefront-page .home-v2-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.home-v2-storefront-page .home-v2-cart,
body.home-v2-storefront-page .home-v2-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  transition: 180ms ease;
}

body.home-v2-storefront-page .home-v2-cart {
  display: none;
  gap: 0.75rem;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.95rem;
}

body.home-v2-storefront-page .home-v2-cart:hover,
body.home-v2-storefront-page .home-v2-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

body.home-v2-storefront-page .home-v2-cart-icon,
body.home-v2-storefront-page .home-v2-cta-icon,
body.home-v2-storefront-page .home-v2-style-card-arrow,
body.home-v2-storefront-page .home-v2-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.home-v2-storefront-page .home-v2-cart-icon svg,
body.home-v2-storefront-page .home-v2-cta-icon svg,
body.home-v2-storefront-page .home-v2-style-card-arrow svg,
body.home-v2-storefront-page .home-v2-feature-icon svg {
  width: 1rem;
  height: 1rem;
}

body.home-v2-storefront-page .home-v2-cart-badge {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
}

body.home-v2-storefront-page .home-v2-menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  position: relative;
}

body.home-v2-storefront-page .home-v2-menu-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.home-v2-storefront-page .home-v2-menu-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

body.home-v2-storefront-page .home-v2-menu-toggle .home-v2-menu-icon-close {
  opacity: 0;
}

body.home-v2-storefront-page .home-v2-menu-toggle.is-open .home-v2-menu-icon-open {
  opacity: 0;
}

body.home-v2-storefront-page .home-v2-menu-toggle.is-open .home-v2-menu-icon-close {
  opacity: 1;
}

body.home-v2-storefront-page .home-v2-mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 18, 0.95);
  backdrop-filter: blur(24px);
}

body.home-v2-storefront-page .home-v2-mobile-menu.is-open {
  display: block;
}

body.home-v2-storefront-page .home-v2-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
}

body.home-v2-storefront-page .home-v2-mobile-menu-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

body.home-v2-storefront-page .home-v2-mobile-menu-inner a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (min-width: 640px) {
  body[data-site-page="home"] .home-v2-cart {
    display: inline-flex;
  }

  body.home-v2-storefront-page .home-v2-cart {
    display: inline-flex;
  }

  body[data-site-page="home"] .home-v2-style-grid,
  body[data-site-page="home"] .home-v2-luma-feature-grid,
  body[data-site-page="home"] .home-v2-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site-page="home"] .home-v2-hero-price-card {
    inset-inline: 1.25rem;
    bottom: 1.25rem;
  }

  body[data-site-page="home"] .home-v2-hero-image-topline {
    padding-inline: 1.25rem;
  }
}

@media (min-width: 768px) {
  body[data-site-page="home"] .home-v2-hero-actions,
  body[data-site-page="home"] .home-v2-luma-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  body[data-site-page="home"] .home-v2-reviews-grid,
  body[data-site-page="home"] .home-v2-footer-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  body[data-site-page="home"] .home-v2-footer-grid {
    grid-template-columns: 1.35fr 0.7fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  body[data-site-page="home"] .home-v2-nav {
    display: flex;
  }

  body.home-v2-storefront-page .home-v2-nav {
    display: flex;
  }

  body[data-site-page="home"] .home-v2-menu-toggle,
  body[data-site-page="home"] .home-v2-mobile-menu {
    display: none !important;
  }

  body.home-v2-storefront-page .home-v2-menu-toggle,
  body.home-v2-storefront-page .home-v2-mobile-menu {
    display: none !important;
  }

  body[data-site-page="home"] .home-v2-container {
    width: min(1360px, calc(100% - 3rem));
  }

  body.home-v2-storefront-page .home-v2-container {
    width: min(1360px, calc(100% - 3rem));
  }

  body[data-site-page="home"] .home-v2-hero {
    padding: 0.75rem 0 6.5rem;
  }

  body[data-site-page="home"] .home-v2-hero-grid {
    grid-template-columns: 0.9fr 1.02fr;
    gap: 2.5rem;
  }

  body[data-site-page="home"] .home-v2-hero-copy {
    max-width: 43rem;
    min-width: 0;
    padding-top: 3rem;
  }

  body[data-site-page="home"] .home-v2-hero-lead {
    max-width: 28rem;
  }

  body[data-site-page="home"] .home-v2-hero-copy-scale {
    transform: scale(1.1);
  }

  body[data-site-page="home"] .home-v2-hero-copy-stack {
    position: relative;
    top: -0.4rem;
  }

  body[data-site-page="home"] .home-v2-hero-lead {
    max-width: 40rem;
    font-size: 1.18rem;
  }

  body[data-site-page="home"] .home-v2-floating-pill {
    display: inline-flex;
  }

  body[data-site-page="home"] .home-v2-hero-media {
    padding-top: 3rem;
  }

  body[data-site-page="home"] .home-v2-style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3.25rem;
  }

  body[data-site-page="home"] .home-v2-gallery-edge {
    width: 6rem;
  }

  body[data-site-page="home"] .home-v2-luma-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  body[data-site-page="home"] .home-v2-luma-visual {
    display: flex;
    flex-direction: column;
  }

  body[data-site-page="home"] .home-v2-luma-display {
    flex: 1 1 auto;
  }

  body[data-site-page="home"] .home-v2-luma-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  body[data-site-page="home"] .home-v2-reviews-grid {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
  }
}

@media (max-width: 639px) {
  /* ── Layout & spacing ──────────────────────────── */
  body[data-site-page="home"] .home-v2-container {
    width: min(100%, calc(100% - 1.5rem));
  }

  body[data-site-page="home"] .home-v2-header-inner,
  body.home-v2-storefront-page .home-v2-header-inner {
    position: relative;
    justify-content: center;
    gap: 0.55rem;
    min-height: 4.05rem;
  }

  body[data-site-page="home"] .home-v2-brand,
  body.home-v2-storefront-page .home-v2-brand {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-inline: 4.9rem;
    min-width: 0;
  }

  body[data-site-page="home"] .home-v2-brand-mark,
  body.home-v2-storefront-page .home-v2-brand-mark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  body[data-site-page="home"] .home-v2-brand-copy,
  body.home-v2-storefront-page .home-v2-brand-copy {
    align-items: center;
    min-width: 0;
    max-width: 100%;
    text-align: center;
  }

  body[data-site-page="home"] .home-v2-brand-name,
  body.home-v2-storefront-page .home-v2-brand-name {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
  }

  body[data-site-page="home"] .home-v2-brand-subtitle,
  body.home-v2-storefront-page .home-v2-brand-subtitle {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  body[data-site-page="home"] .home-v2-header-actions,
  body.home-v2-storefront-page .home-v2-header-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  body[data-site-page="home"] .home-v2-menu-toggle,
  body.home-v2-storefront-page .home-v2-menu-toggle {
    margin-left: 0;
    flex: 0 0 auto;
  }

  body[data-site-page="home"] .home-v2-hero {
    padding: 0.5rem 0 2.5rem;
  }

  body[data-site-page="home"] .home-v2-gallery-section,
  body[data-site-page="home"] .home-v2-luma-section,
  body[data-site-page="home"] .home-v2-reviews-section {
    padding: 3rem 0 3.5rem;
  }

  body[data-site-page="home"] .home-v2-reel {
    padding: 2.5rem 0 3rem;
  }

  /* ── Hero ──────────────────────────────────────── */
  body[data-site-page="home"] .home-v2-hero-copy {
    padding-top: 1rem;
    min-width: 0;
  }

  body[data-site-page="home"] .home-v2-hero-grid,
  body[data-site-page="home"] .home-v2-hero-copy-scale,
  body[data-site-page="home"] .home-v2-hero-copy-stack,
  body[data-site-page="home"] .home-v2-pill-row {
    min-width: 0;
  }

  body[data-site-page="home"] .home-v2-hero-heading {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    letter-spacing: -0.055em;
  }

  body[data-site-page="home"] .home-v2-hero-heading-line {
    display: block;
  }

  body[data-site-page="home"] .home-v2-hero-heading-line-primary {
    white-space: nowrap;
  }

  body[data-site-page="home"] .home-v2-hero-heading-line-tail {
    margin-top: 0.08em;
  }

  body[data-site-page="home"] .home-v2-hero-lead {
    font-size: 0.93rem;
    margin-top: 1.1rem;
    line-height: 1.7;
  }

  body[data-site-page="home"] .home-v2-hero-actions {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  body[data-site-page="home"] .home-v2-hero-actions > * {
    min-width: 0;
    max-width: 100%;
  }

  body[data-site-page="home"] .home-v2-cta,
  body[data-site-page="home"] .home-v2-cta-ghost {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
  }

  body[data-site-page="home"] .home-v2-hero-image-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-site-page="home"] .home-v2-hero-frame {
    border-radius: 1.6rem;
    padding: 0.5rem;
  }

  body[data-site-page="home"] .home-v2-pill-row {
    gap: 0.4rem;
  }

  /* ── Section headings ──────────────────────────── */
  body[data-site-page="home"] .home-v2-section-heading h2,
  body[data-site-page="home"] .home-v2-footer-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    letter-spacing: -0.06em;
  }

  body[data-site-page="home"] .home-v2-section-heading p {
    font-size: 0.95rem;
    margin-top: 0.9rem;
  }

  /* ── Build reel ────────────────────────────────── */
  body[data-site-page="home"] .home-v2-reel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  body[data-site-page="home"] .home-v2-reel-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  body[data-site-page="home"] .home-v2-reel-card {
    width: 220px;
    height: 290px;
    border-radius: 1rem;
  }

  body[data-site-page="home"] .home-v2-reel-viewport::before,
  body[data-site-page="home"] .home-v2-reel-viewport::after {
    width: 3rem;
  }

  /* ── Gallery carousel ──────────────────────────── */
  body[data-site-page="home"] .home-v2-gallery-surface {
    padding-inline: 0.5rem;
    border-radius: 1.8rem;
  }

  body[data-site-page="home"] .home-v2-gallery-edge {
    width: 2rem;
  }

  body[data-site-page="home"] .home-v2-gallery-stage {
    min-height: clamp(16rem, 72vw, 22rem);
  }

  body[data-site-page="home"] .home-v2-gallery-shell {
    margin-top: 1.75rem;
  }

  body[data-site-page="home"] .home-v2-gallery-hint {
    font-size: 0.82rem;
    margin-top: 0.75rem;
  }

  /* ── LumaGlow section ──────────────────────────── */
  body[data-site-page="home"] .home-v2-luma-heading {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    letter-spacing: -0.06em;
  }

  body[data-site-page="home"] .home-v2-luma-card {
    margin-top: 2rem;
    border-radius: 1.6rem;
    padding: 0.75rem;
  }

  body[data-site-page="home"] .home-v2-luma-display {
    min-height: 18rem;
  }

  body[data-site-page="home"] .home-v2-luma-visual {
    border-radius: 1.4rem;
    padding: 0.75rem;
  }

  /* ── Reviews & inquiries ───────────────────────── */
  body[data-site-page="home"] .home-v2-reviews-grid {
    margin-top: 2rem;
    gap: 1rem;
  }

  body[data-site-page="home"] .home-v2-inquiry-panel,
  body[data-site-page="home"] .home-v2-review-panel {
    border-radius: 1.6rem;
  }

  /* ── Footer ────────────────────────────────────── */
  body[data-site-page="home"] .home-v2-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  body[data-site-page="home"] .home-v2-footer-copy {
    max-width: none;
  }

  /* ── Hero image ────────────────────────────────── */
  /* Portrait aspect ratio is too tall on phones; flatten to near-square */
  body[data-site-page="home"] .home-v2-hero-image-window {
    aspect-ratio: 1.15;
  }

  body[data-site-page="home"] .home-v2-hero-copy-stack {
    margin-top: 1.25rem;
  }

  body[data-site-page="home"] .home-v2-eyebrow {
    font-size: 0.6rem;
    padding: 0.38rem 0.78rem;
  }

  body[data-site-page="home"] .home-v2-pill-row {
    margin-top: 0.85rem;
  }

  /* ── CTAs ──────────────────────────────────────── */
  body[data-site-page="home"] .home-v2-cta,
  body[data-site-page="home"] .home-v2-gallery-section-link,
  body[data-site-page="home"] .home-v2-review-button {
    padding: 0.82rem 1.35rem;
    font-size: 0.88rem;
    overflow: hidden;
    flex-wrap: wrap;
  }

  body[data-site-page="home"] .home-v2-cta > span:first-child,
  body[data-site-page="home"] .home-v2-gallery-section-link > span:first-child,
  body[data-site-page="home"] .home-v2-review-button > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body[data-site-page="home"] .home-v2-cta-icon {
    flex: 0 0 auto;
  }

  body[data-site-page="home"] .home-v2-form-button {
    padding: 0.82rem 1.2rem;
    font-size: 0.88rem;
  }

  /* ── Style cards ───────────────────────────────── */
  body[data-site-page="home"] .home-v2-style-card {
    min-height: 6rem;
    padding: 0.85rem;
    gap: 0.85rem;
  }

  body[data-site-page="home"] .home-v2-style-card-title {
    font-size: 0.95rem;
  }

  /* ── Luma section ──────────────────────────────── */
  body[data-site-page="home"] .home-v2-luma-heading {
    /* already set above; override here for safety */
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  body[data-site-page="home"] .home-v2-luma-grid {
    gap: 1.5rem;
  }

  body[data-site-page="home"] .home-v2-luma-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-top: 0.75rem;
  }

  body[data-site-page="home"] .home-v2-luma-display {
    min-height: 14rem;
  }

  body[data-site-page="home"] .home-v2-luma-price-row strong {
    font-size: 1.55rem;
  }

  /* ── Inquiry panel ─────────────────────────────── */
  body[data-site-page="home"] .home-v2-inquiry-title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    margin-top: 1rem;
    letter-spacing: -0.06em;
  }

  body[data-site-page="home"] .home-v2-inquiry-panel-inner,
  body[data-site-page="home"] .home-v2-review-panel-inner {
    padding: 1.2rem;
  }

  /* ── Reviews ───────────────────────────────────── */
  body[data-site-page="home"] .home-v2-review-rating-value {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  body[data-site-page="home"] .home-v2-review-card {
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  /* ── Footer card ───────────────────────────────── */
  body[data-site-page="home"] .home-v2-footer-card {
    padding: 1.25rem;
  }
}

body.home-v2-storefront-page {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(18, 19, 29, 0.98) 0%, rgba(10, 11, 17, 1) 100%);
  color: #fff;
}

body.home-v2-storefront-page::before,
body.home-v2-storefront-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.home-v2-storefront-page::before {
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.34;
}

body.home-v2-storefront-page::after {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

/* Rich atmosphere for shop, product, and cart/checkout/success/cancel pages — grid baked into body background */
body[data-site-page="shop"].home-v2-storefront-page,
body[data-site-page="product"].home-v2-storefront-page,
body[data-site-page="cart"].home-v2-storefront-page {
  background:
    linear-gradient(rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 50% 16%, rgba(188, 132, 255, 0.14), transparent 24%),
    radial-gradient(circle at 12% 10%, rgba(122, 88, 232, 0.24), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(85, 47, 182, 0.22), transparent 28%),
    linear-gradient(180deg, #161624 0%, #0c0d17 42%, #06070f 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
}

body[data-site-page="shop"].home-v2-storefront-page::before,
body[data-site-page="product"].home-v2-storefront-page::before,
body[data-site-page="cart"].home-v2-storefront-page::before {
  background-image: none;
  opacity: 1;
}

body[data-site-page="shop"].home-v2-storefront-page::after,
body[data-site-page="product"].home-v2-storefront-page::after,
body[data-site-page="cart"].home-v2-storefront-page::after {
  background:
    radial-gradient(circle at 18% 12%, rgba(156, 118, 255, 0.28), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(95, 60, 212, 0.18), transparent 22%),
    radial-gradient(circle at 50% 58%, rgba(121, 74, 232, 0.16), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(81, 45, 176, 0.24), transparent 30%);
}

body.home-v2-storefront-page .container {
  width: min(1280px, calc(100% - 2rem));
}

body.home-v2-storefront-page .home-v2-container {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
}

body.home-v2-storefront-page .topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: none;
}

body.home-v2-storefront-page .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

body.home-v2-storefront-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

body.home-v2-storefront-page .brand-logo {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

body.home-v2-storefront-page .brand-copy {
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  font-family: var(--home-v2-font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

body.home-v2-storefront-page .brand-copy small {
  margin-top: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

body.home-v2-storefront-page .nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

body.home-v2-storefront-page .nav a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 0.95rem;
  transition: 180ms ease;
}

body.home-v2-storefront-page .nav a:hover,
body.home-v2-storefront-page .nav a.is-active {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(6, 7, 12, 0.18);
  color: #fff;
}

body.home-v2-storefront-page .page-hero,
body.home-v2-storefront-page .section.product-page-section,
body.home-v2-storefront-page .section {
  position: relative;
  padding-top: 2rem;
}

body.home-v2-storefront-page .page-hero::before,
body.home-v2-storefront-page .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.home-v2-storefront-page .page-hero .container,
body.home-v2-storefront-page .section .container,
body.home-v2-storefront-page .section.product-page-section .container {
  position: relative;
}

body.home-v2-storefront-page .page-hero-copy,
body.home-v2-storefront-page .catalog-path-card,
body.home-v2-storefront-page .section-header > div,
body.home-v2-storefront-page .product-detail-hero-band,
body.home-v2-storefront-page .product-detail-panel,
body.home-v2-storefront-page .product-gallery-panel,
body.home-v2-storefront-page .checkout-panel,
body.home-v2-storefront-page .cart-item,
body.home-v2-storefront-page .empty-state,
body.home-v2-storefront-page .status-box,
body.home-v2-storefront-page .product-card,
body.home-v2-storefront-page .home-v2-footer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(18, 19, 29, 0.94) 0%, rgba(10, 11, 17, 0.96) 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

body.home-v2-storefront-page .page-hero-copy,
body.home-v2-storefront-page .catalog-path-card,
body.home-v2-storefront-page .section-header > div,
body.home-v2-storefront-page .checkout-panel,
body.home-v2-storefront-page .empty-state {
  border-radius: 2rem;
  padding: 1.5rem;
}

body.home-v2-storefront-page .page-hero .eyebrow,
body.home-v2-storefront-page .product-detail-summary-card .eyebrow,
body.home-v2-storefront-page .pill,
body.home-v2-storefront-page .proof-pill,
body.home-v2-storefront-page .footer-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(223, 205, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

body.home-v2-storefront-page .product-back-link {
  border: none;
  background: none;
  border-radius: 0;
}

body.home-v2-storefront-page .page-hero .eyebrow::before {
  display: none;
}

body.home-v2-storefront-page .page-hero h1,
body.home-v2-storefront-page .product-detail-title,
body.home-v2-storefront-page .card-title,
body.home-v2-storefront-page .hero-mini-title,
body.home-v2-storefront-page .footer-card h2 {
  font-family: var(--home-v2-font-display);
  color: #fff;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

body.home-v2-storefront-page .page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

body.home-v2-storefront-page .page-hero p,
body.home-v2-storefront-page .muted,
body.home-v2-storefront-page .section-header p,
body.home-v2-storefront-page .product-intro,
body.home-v2-storefront-page .product-detail-copy,
body.home-v2-storefront-page .product-detail-section-copy,
body.home-v2-storefront-page .note,
body.home-v2-storefront-page .subtle-note,
body.home-v2-storefront-page .product-support-note,
body.home-v2-storefront-page .summary-list,
body.home-v2-storefront-page .summary-bullets,
body.home-v2-storefront-page .footer-card p,
body.home-v2-storefront-page .footer-card small {
  color: rgba(255, 255, 255, 0.62);
}

body.home-v2-storefront-page .hero-proof-row,
body.home-v2-storefront-page .button-row {
  gap: 0.75rem;
}

body.home-v2-storefront-page .button,
body.home-v2-storefront-page .button-secondary,
body.home-v2-storefront-page .button-ghost,
body.home-v2-storefront-page [data-buy-button],
body.home-v2-storefront-page [data-add-button],
body.home-v2-storefront-page [data-cart-checkout],
body.home-v2-storefront-page [data-cart-clear],
body.home-v2-storefront-page .product-card-link-inline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

body.home-v2-storefront-page .button,
body.home-v2-storefront-page [data-buy-button],
body.home-v2-storefront-page [data-cart-checkout] {
  border: 1px solid rgba(246, 224, 255, 0.22);
  background: linear-gradient(135deg, rgba(232, 101, 255, 0.98), rgba(153, 112, 255, 0.98));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 0 0 1px rgba(255,255,255,0.08), 0 0 34px rgba(194,107,255,0.34);
}

body.home-v2-storefront-page .button-secondary,
body.home-v2-storefront-page [data-add-button],
body.home-v2-storefront-page .button-ghost,
body.home-v2-storefront-page [data-cart-clear] {
  border: 1px solid rgba(223, 205, 255, 0.18);
  background: linear-gradient(180deg, rgba(66, 43, 110, 0.52), rgba(29, 20, 50, 0.56));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 28px rgba(133,97,228,0.16);
  backdrop-filter: blur(18px);
}

body.home-v2-storefront-page .button:hover,
body.home-v2-storefront-page .button-secondary:hover,
body.home-v2-storefront-page .button-ghost:hover,
body.home-v2-storefront-page [data-buy-button]:hover,
body.home-v2-storefront-page [data-add-button]:hover,
body.home-v2-storefront-page [data-cart-checkout]:hover,
body.home-v2-storefront-page [data-cart-clear]:hover {
  transform: translateY(-2px);
}

body.home-v2-storefront-page .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

body.home-v2-storefront-page .product-card {
  border-radius: 2rem;
}

body.home-v2-storefront-page .product-listing-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.home-v2-storefront-page .product-card-media {
  margin: 1rem 1rem 0;
  border-radius: 1.7rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.9), rgba(10, 11, 17, 0.96));
}

body.home-v2-storefront-page .product-card-media .media-frame-window {
  border-radius: 1.35rem;
  background: rgba(0, 0, 0, 0.28);
}

body.home-v2-storefront-page .product-card-preview-strip,
body.home-v2-storefront-page .product-card-body {
  padding-inline: 1rem;
}

body.home-v2-storefront-page .product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-bottom: 1.15rem;
}

body.home-v2-storefront-page .product-card-topline {
  align-items: center;
}

body.home-v2-storefront-page .price {
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: 1.45rem;
  letter-spacing: -0.06em;
}

body.home-v2-storefront-page .product-card-highlights,
body.home-v2-storefront-page .comparison-highlights,
body.home-v2-storefront-page .summary-bullets {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.66);
}

body.home-v2-storefront-page .product-card-link-inline {
  margin-top: auto;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(223, 205, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: fit-content;
}

body.home-v2-storefront-page .product-detail-shell,
body.home-v2-storefront-page .product-detail-layout {
  display: grid;
  gap: 1.25rem;
}

body.home-v2-storefront-page .product-detail-hero-band {
  grid-template-columns: 1.2fr 0.8fr;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 2.25rem;
}

body.home-v2-storefront-page .product-detail-summary-card,
body.home-v2-storefront-page .product-detail-buybox,
body.home-v2-storefront-page .product-detail-highlights-block {
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 1.1rem;
}

body.home-v2-storefront-page .product-gallery-panel,
body.home-v2-storefront-page .product-detail-panel {
  border-radius: 2rem;
  padding: 1.2rem;
}

body.home-v2-storefront-page .product-gallery-image-window,
body.home-v2-storefront-page .product-gallery-track,
body.home-v2-storefront-page .product-gallery-slide {
  border-radius: 1.5rem;
}

body.home-v2-storefront-page .product-gallery-nav,
body.home-v2-storefront-page .product-gallery-dot,
body.home-v2-storefront-page .product-gallery-thumb,
body.home-v2-storefront-page .product-color-button,
body.home-v2-storefront-page .mount-preview-link {
  border-color: rgba(223,205,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

body.home-v2-storefront-page .qty-control button {
  border: none;
  background: transparent;
  background-image: none;
}

body.home-v2-storefront-page .field input,
body.home-v2-storefront-page .field select,
body.home-v2-storefront-page .field textarea,
body.home-v2-storefront-page .qty-control input {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

body.home-v2-storefront-page .artwork-dropzone,
body.home-v2-storefront-page .mount-matrix,
body.home-v2-storefront-page .mount-option-tile,
body.home-v2-storefront-page .artwork-selection {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
}

body.home-v2-storefront-page .cart-layout {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

body.home-v2-storefront-page .cart-item {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1rem;
  align-items: start;
  border-radius: 1.9rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

body.home-v2-storefront-page .cart-item img {
  width: 100%;
  border-radius: 1.2rem;
  aspect-ratio: 1;
  object-fit: cover;
}

body.home-v2-storefront-page .checkout-panel {
  border-radius: 2rem;
}

body.home-v2-storefront-page .checkout-panel.checkout-summary-panel {
  overflow: visible;
}

body.home-v2-storefront-page .summary-row {
  color: rgba(255,255,255,0.72);
}

body.home-v2-storefront-page .summary-row strong,
body.home-v2-storefront-page [data-cart-subtotal],
body.home-v2-storefront-page [data-cart-count-label] {
  color: #fff;
}

body.home-v2-storefront-page .footer {
  position: relative;
  overflow: hidden;
  background: transparent;
}

body.home-v2-storefront-page .footer::before,
body.home-v2-storefront-page .footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.home-v2-storefront-page .footer::before {
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
}

body.home-v2-storefront-page .footer::after {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body.home-v2-storefront-page .home-v2-footer-card {
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  body.home-v2-storefront-page .product-detail-hero-band,
  body.home-v2-storefront-page .cart-layout {
    grid-template-columns: 1fr;
  }

  body.home-v2-storefront-page .cart-item {
    grid-template-columns: 1fr;
  }
}

body.home-v2-storefront-page main,
body.home-v2-storefront-page .footer {
  position: relative;
  z-index: 1;
}

body.home-v2-storefront-page .home-v2-pointer-glow {
  display: none;
}

body.home-v2-storefront-page .home-v2-spotlight {
  position: relative;
  isolation: isolate;
}

body.home-v2-storefront-page .home-v2-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 180ms ease;
  background: radial-gradient(280px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(240, 190, 255, 0.2), transparent 46%);
}

body.home-v2-storefront-page .home-v2-spotlight:hover::after,
body.home-v2-storefront-page .home-v2-spotlight:focus-within::after {
  opacity: 1;
}

body.home-v2-storefront-page .home-v2-spotlight > * {
  position: relative;
  z-index: 1;
}

body.home-v2-storefront-page .button,
body.home-v2-storefront-page .button-secondary,
body.home-v2-storefront-page .button-ghost,
body.home-v2-storefront-page [data-buy-button],
body.home-v2-storefront-page [data-add-button],
body.home-v2-storefront-page [data-cart-checkout],
body.home-v2-storefront-page [data-cart-clear],
body.home-v2-storefront-page .product-card-link-inline,
body.home-v2-storefront-page .nav a,
body.home-v2-storefront-page .home-v2-social-link,
body.home-v2-storefront-page .product-gallery-nav,
body.home-v2-storefront-page .product-gallery-dot,
body.home-v2-storefront-page .product-gallery-thumb,
body.home-v2-storefront-page .product-color-button,
body.home-v2-storefront-page .mount-preview-link {
  --button-base: linear-gradient(180deg, rgba(66, 43, 110, 0.52), rgba(29, 20, 50, 0.56));
  --button-spotlight-alpha: 0;
  background-image:
    radial-gradient(180px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(255, 255, 255, var(--button-spotlight-alpha)), transparent 48%),
    var(--button-base);
  background-color: transparent;
  background-repeat: no-repeat;
  background-origin: border-box;
}

body.home-v2-storefront-page .button,
body.home-v2-storefront-page [data-buy-button],
body.home-v2-storefront-page [data-cart-checkout] {
  --button-base: linear-gradient(135deg, rgba(232, 101, 255, 0.98), rgba(153, 112, 255, 0.98));
}

body.home-v2-storefront-page .home-v2-spotlight-button:hover,
body.home-v2-storefront-page .home-v2-spotlight-button:focus-visible {
  --button-spotlight-alpha: 0.24;
}

body.home-v2-storefront-page .button,
body.home-v2-storefront-page .button-secondary,
body.home-v2-storefront-page .button-ghost,
body.home-v2-storefront-page [data-buy-button],
body.home-v2-storefront-page [data-add-button],
body.home-v2-storefront-page [data-cart-checkout],
body.home-v2-storefront-page [data-cart-clear],
body.home-v2-storefront-page .product-card-link-inline,
body.home-v2-storefront-page .home-v2-social-link {
  backdrop-filter: blur(20px) saturate(140%);
}

body.home-v2-storefront-page .page-hero-copy,
body.home-v2-storefront-page .catalog-path-card,
body.home-v2-storefront-page .section-header > div,
body.home-v2-storefront-page .product-detail-hero-band,
body.home-v2-storefront-page .product-detail-panel,
body.home-v2-storefront-page .product-gallery-panel,
body.home-v2-storefront-page .checkout-panel,
body.home-v2-storefront-page .cart-item,
body.home-v2-storefront-page .empty-state,
body.home-v2-storefront-page .status-box,
body.home-v2-storefront-page .product-card,
body.home-v2-storefront-page .home-v2-footer-card,
body.home-v2-storefront-page .product-detail-summary-card,
body.home-v2-storefront-page .product-detail-buybox,
body.home-v2-storefront-page .product-detail-highlights-block {
  border-color: rgba(233, 223, 255, 0.12);
  background: linear-gradient(180deg, rgba(19, 21, 32, 0.7) 0%, rgba(9, 11, 18, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px) saturate(150%);
}

body.home-v2-storefront-page .catalog-path-card::before,
body.home-v2-storefront-page .section-header > div::before,
body.home-v2-storefront-page .product-detail-hero-band::before,
body.home-v2-storefront-page .product-detail-panel::before,
body.home-v2-storefront-page .product-gallery-panel::before,
body.home-v2-storefront-page .checkout-panel::before,
body.home-v2-storefront-page .cart-item::before,
body.home-v2-storefront-page .empty-state::before,
body.home-v2-storefront-page .status-box::before,
body.home-v2-storefront-page .product-card::before,
body.home-v2-storefront-page .home-v2-footer-card::before,
body.home-v2-storefront-page .product-detail-summary-card::before,
body.home-v2-storefront-page .product-detail-buybox::before,
body.home-v2-storefront-page .product-detail-highlights-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(rgba(190, 156, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.5;
}

body.home-v2-storefront-page .topbar {
  background: rgba(5, 7, 13, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
}

body.home-v2-storefront-page .nav a {
  border-color: rgba(223, 205, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.home-v2-storefront-page .nav a:hover,
body.home-v2-storefront-page .nav a.is-active {
  border-color: rgba(223, 205, 255, 0.18);
  background-color: transparent;
}

body.home-v2-storefront-page .product-gallery-nav,
body.home-v2-storefront-page .product-gallery-dot,
body.home-v2-storefront-page .product-gallery-thumb,
body.home-v2-storefront-page .product-color-button,
body.home-v2-storefront-page .mount-preview-link {
  backdrop-filter: blur(20px) saturate(135%);
}

body.home-v2-storefront-page .home-v2-footer-card {
  margin-top: 1rem;
  padding: 1.75rem;
}

body.home-v2-storefront-page .home-v2-footer-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 0.7fr 0.8fr;
}

body.home-v2-storefront-page .home-v2-footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d111b;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.home-v2-storefront-page .home-v2-footer-copy h2 {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  line-height: 0.95;
  color: #fff;
}

body.home-v2-storefront-page .home-v2-footer-copy p {
  margin-top: 0.85rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

body.home-v2-storefront-page .home-v2-footer-meta {
  position: relative;
  display: inline-flex;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.95rem;
}

body.home-v2-storefront-page .home-v2-footer-secret {
  position: absolute;
  inset: 0;
}

body.home-v2-storefront-page .home-v2-footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.home-v2-storefront-page .home-v2-footer-heading {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.home-v2-storefront-page .home-v2-footer-links,
body.home-v2-storefront-page .home-v2-footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.home-v2-storefront-page .home-v2-footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

body.home-v2-storefront-page .home-v2-footer-links a:hover {
  color: #fff;
}

body.home-v2-storefront-page .home-v2-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

body.home-v2-storefront-page .home-v2-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

body.home-v2-storefront-page .home-v2-social-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

body.home-v2-storefront-page .home-v2-social-icon img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero {
  padding-top: 2.1rem;
  padding-bottom: 0.75rem;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero::before,
body[data-site-page="shop"].home-v2-storefront-page .section::before {
  background-image: none;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-hero-grid {
  display: block;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero-copy {
  max-width: none;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero .eyebrow {
  display: none;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero-copy::before,
body[data-site-page="shop"].home-v2-storefront-page .page-hero-copy::after {
  display: none;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero h1 {
  max-width: none;
  margin-top: 0;
  font-size: clamp(3rem, 5.5vw, 4.9rem);
  white-space: nowrap;
}

body[data-site-page="shop"].home-v2-storefront-page .page-hero p {
  max-width: 38rem;
  margin-top: 1rem;
  font-size: 1rem;
}

body[data-site-page="shop"].home-v2-storefront-page .section {
  padding-top: 0.4rem;
}

body[data-site-page="shop"].home-v2-storefront-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card {
  padding: 0.85rem;
  border-radius: 2rem;
}

body[data-site-page="shop"].home-v2-storefront-page .product-listing-link {
  gap: 0.85rem;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 0.7rem;
  border-radius: 1.95rem;
  border: 1px solid rgba(236, 226, 255, 0.12);
  background:
    radial-gradient(circle at 16% 14%, rgba(245, 240, 255, 0.16), transparent 20%),
    radial-gradient(circle at 88% 86%, rgba(110, 78, 212, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(55, 44, 92, 0.96) 0%, rgba(20, 19, 33, 0.98) 100%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(118, 93, 205, 0.24),
    0 0 0 1px rgba(118, 93, 205, 0.2),
    0 24px 72px rgba(35, 22, 79, 0.34);
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(145deg, rgba(247, 240, 255, 0.88) 0%, rgba(198, 176, 245, 0.44) 16%, rgba(86, 76, 126, 0.14) 52%, rgba(112, 81, 213, 0.48) 82%, rgba(151, 113, 255, 0.82) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 48%, rgba(150, 98, 255, 0.24), transparent 66%);
  filter: blur(22px);
  opacity: 0.7;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / 0.84;
  border-radius: 1.48rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(18, 14, 30, 0.16) 0%, rgba(9, 10, 16, 0.04) 32%, rgba(8, 9, 15, 0.28) 100%),
    rgba(8, 9, 15, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -28px 44px rgba(5, 6, 12, 0.32);
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(rgba(190, 156, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  opacity: 0.3;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 10, 17, 0) 56%, rgba(11, 10, 17, 0.58) 100%);
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-strip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-inline: 0;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-thumb,
body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-more {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(223, 205, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  backdrop-filter: blur(18px);
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-body {
  gap: 0.8rem;
  padding-inline: 0;
  padding-bottom: 0.35rem;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-topline .pill {
  width: fit-content;
  max-width: 100%;
  padding: 0.46rem 0.82rem;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

body[data-site-page="shop"].home-v2-storefront-page .product-title {
  margin: 0;
  font-size: clamp(1.18rem, 1.4vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-spacing: 0.08em;
  text-wrap: balance;
}

body[data-site-page="shop"].home-v2-storefront-page .product-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-highlights {
  display: none;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-link-inline {
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  color: #f5f0ff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-link-inline::after {
  display: none;
}

body[data-site-page="shop"].home-v2-storefront-page .product-card-link-inline span:last-child {
  font-size: 1.05rem;
  line-height: 1;
}

body[data-site-page="shop"].home-v2-storefront-page .price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

body[data-site-page="shop"].home-v2-storefront-page .price-prefix {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--home-v2-font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-site-page="shop"].home-v2-storefront-page .price-amount {
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  letter-spacing: -0.05em;
  line-height: 1;
}


body[data-site-page="shop"].home-v2-storefront-page .footer {
  padding: 2.75rem 0 2rem;
  background: transparent;
}

body[data-site-page="shop"].home-v2-storefront-page .footer::before,
body[data-site-page="shop"].home-v2-storefront-page .footer::after,
body[data-site-page="product"].home-v2-storefront-page .footer::before,
body[data-site-page="product"].home-v2-storefront-page .footer::after,
body[data-site-page="cart"].home-v2-storefront-page .footer::before,
body[data-site-page="cart"].home-v2-storefront-page .footer::after {
  display: none;
}

body[data-site-page="shop"].home-v2-storefront-page .home-v2-footer-card {
  margin-top: 0;
  border-radius: 2.8rem;
  padding: 2rem 1.9rem;
}

body[data-site-page="shop"].home-v2-storefront-page .home-v2-footer-card::before {
  opacity: 0.62;
  background-size: auto, 52px 52px, 52px 52px;
}

@media (max-width: 1180px) {
  body[data-site-page="shop"].home-v2-storefront-page .product-grid,
  body.home-v2-storefront-page .home-v2-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.home-v2-storefront-page .home-v2-footer-grid,
  body[data-site-page="shop"].home-v2-storefront-page .product-grid {
    grid-template-columns: 1fr;
  }

  body[data-site-page="shop"].home-v2-storefront-page .page-hero h1 {
    white-space: normal;
  }
}


/* =========================================================
   GALLERY SECTION — DARK THEME
   Overrides the gallery section from cream to hero-dark.
   ========================================================= */

body[data-site-page="home"] .home-v2-gallery-section {
  background:
    radial-gradient(circle at 22% 28%, rgba(123, 95, 220, 0.13), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(62, 83, 167, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(9, 10, 18, 0.98) 0%, rgba(5, 6, 12, 1) 100%);
  color: #fff;
}

body[data-site-page="home"] .home-v2-gallery-topfade {
  display: none;
}

body[data-site-page="home"] .home-v2-gallery-section .home-v2-section-heading p {
  color: rgba(255, 255, 255, 0.58);
}

body[data-site-page="home"] .home-v2-gallery-surface {
  background: linear-gradient(180deg, rgba(16, 18, 28, 0.92) 0%, rgba(9, 10, 17, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 38px 120px rgba(0, 0, 0, 0.46);
}

body[data-site-page="home"] .home-v2-gallery-surface-glow {
  background:
    radial-gradient(circle at 50% 10%, rgba(196, 148, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 74%, rgba(128, 90, 255, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(196, 148, 255, 0.06) 0%, transparent 30%);
}

body[data-site-page="home"] .home-v2-gallery-edge-left {
  background: linear-gradient(90deg, rgba(8, 9, 16, 0.96) 18%, transparent);
}

body[data-site-page="home"] .home-v2-gallery-edge-right {
  background: linear-gradient(270deg, rgba(8, 9, 16, 0.96) 18%, transparent);
}

body[data-site-page="home"] .home-v2-gallery-controls button,
body[data-site-page="home"] .home-v2-gallery-count {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

body[data-site-page="home"] .home-v2-gallery-controls button:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-site-page="home"] .home-v2-gallery-hint {
  color: rgba(255, 255, 255, 0.38);
}

/* =========================================================
   ALIVE ANIMATIONS
   Breathing glows, floating elements, shimmer effects,
   and scroll-reveal. Homepage only.
   ========================================================= */

/* -- Keyframes ------------------------------------------- */

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.09); }
}

@keyframes breatheSubtle {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0,    0);     opacity: 0.72; }
  30%       { transform: translate(6px, -14px); opacity: 1;    }
  70%       { transform: translate(-4px, 8px);  opacity: 0.62; }
}

@property --luma-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 38deg;
}

@keyframes lumaLiquidAura {
  0%, 100% {
    opacity: 0.5;
    transform: translate3d(-1.5%, 1%, 0) scale(0.98);
  }
  34% {
    opacity: 0.82;
    transform: translate3d(2%, -1.5%, 0) scale(1.05);
  }
  68% {
    opacity: 0.64;
    transform: translate3d(-2.5%, -0.5%, 0) scale(1.02);
  }
}

@keyframes lumaLiquidBorder {
  0%, 100% {
    --luma-border-angle: 38deg;
    opacity: 0.76;
  }
  28% {
    --luma-border-angle: 138deg;
    opacity: 0.98;
  }
  55% {
    --luma-border-angle: 238deg;
    opacity: 0.82;
  }
  78% {
    --luma-border-angle: 318deg;
    opacity: 1;
  }
}

@keyframes lumaLiquidPulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      inset 0 -26px 48px rgba(57, 22, 112, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 22px rgba(216, 180, 254, 0.16),
      0 0 54px rgba(147, 51, 234, 0.17),
      0 24px 70px rgba(0, 0, 0, 0.32);
  }
  42% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 -24px 54px rgba(83, 29, 154, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.09),
      0 0 30px rgba(255, 255, 255, 0.16),
      0 0 78px rgba(216, 180, 254, 0.34),
      0 0 122px rgba(147, 51, 234, 0.22),
      0 24px 70px rgba(0, 0, 0, 0.32);
  }
  72% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 -26px 50px rgba(72, 25, 135, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 26px rgba(216, 180, 254, 0.24),
      0 0 68px rgba(168, 85, 247, 0.26),
      0 24px 70px rgba(0, 0, 0, 0.32);
  }
}

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

@keyframes rotSlow {
  to { transform: rotate(360deg); }
}

@keyframes gradientPan {
  0%   { background-position: 0%   0%;   }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0%   0%;   }
}

@keyframes gridDrift {
  0%, 100% { background-position: 0px 0px; }
  50%       { background-position: 5px 5px; }
}

@keyframes ctaBreath {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 34px rgba(194, 107, 255, 0.34);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.14),
      0 0 55px rgba(194, 107, 255, 0.64),
      0 0 90px rgba(168, 85,  247, 0.24);
  }
}

@keyframes starGlow {
  0%, 55%, 100% { color: oklch(82.8% 0.189 84.429); text-shadow: none; }
  27% {
    color:       oklch(94% 0.09 84.429);
    text-shadow: 0 0 10px rgba(255, 200, 80, 0.72);
  }
}

/* -- Scroll reveal ---------------------------------------- */

body[data-site-page="home"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

body[data-site-page="home"] .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Hero glow drifts ------------------------------------ */

body[data-site-page="home"] .home-v2-hero-glow {
  animation: glowDrift 8.5s ease-in-out infinite;
}

/* -- Background grid drifts slowly ----------------------- */

body[data-site-page="home"] .home-v2-hero-grid-violet {
  animation: gridDrift 14s ease-in-out infinite;
}

/* -- Eyebrow icon spins slowly --------------------------- */

body[data-site-page="home"] .home-v2-eyebrow-icon svg {
  animation: rotSlow 20s linear infinite;
}

/* -- Gradient heading text shimmers ---------------------- */

body[data-site-page="home"] .home-v2-gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff  0%,
    #f0d8ff  15%,
    #c084fc  35%,
    #e9d5ff  50%,
    #c084fc  65%,
    #f0d8ff  85%,
    #ffffff  100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientPan 6s ease-in-out infinite;
}

/* -- Hero frame floats ----------------------------------- */

body[data-site-page="home"] .home-v2-hero-frame {
  animation: floatY 7.5s ease-in-out infinite;
}

/* -- Gallery surface glow breathes ----------------------- */

body[data-site-page="home"] .home-v2-gallery-surface-glow {
  animation: breathe 7.8s ease-in-out infinite 1.6s;
}

/* -- LumaGlow card & visual glows breathe ---------------- */

body[data-site-page="home"] .home-v2-luma-card-glow {
  animation: breathe 6s ease-in-out infinite 2.2s;
}

body[data-site-page="home"] .home-v2-luma-visual::after {
  animation: lumaLiquidAura 9.6s ease-in-out infinite;
}

body[data-site-page="home"] .home-v2-hero-image-shell,
body[data-site-page="home"] .home-v2-luma-display {
  animation: lumaLiquidPulse 7.4s ease-in-out infinite;
}

body[data-site-page="home"] .home-v2-hero-image-shell::after,
body[data-site-page="home"] .home-v2-luma-display::after {
  animation: lumaLiquidBorder 8.8s cubic-bezier(0.45, 0, 0.18, 1) infinite;
}

body[data-site-page="home"] .home-v2-luma-visual-glow-bottom {
  animation: breathe 5.4s ease-in-out infinite 0.4s;
}

body[data-site-page="home"] .home-v2-luma-visual-glow-top {
  animation: breathe 6.6s ease-in-out infinite 1.8s;
}

/* -- Review panel glows breathe -------------------------- */

body[data-site-page="home"] .home-v2-review-panel-glow {
  animation: breatheSubtle 7.4s ease-in-out infinite 0.9s;
}

/* -- LumaGlow mode pills are synced to the 15s video loop -- */

/* -- Primary CTA ambient glow pulses --------------------- */

body[data-site-page="home"] .home-v2-cta-primary,
body[data-site-page="home"] .home-v2-review-button,
body[data-site-page="home"] .home-v2-form-button {
  animation: ctaBreath 4s ease-in-out infinite;
}

/* -- Review stars shimmer wave --------------------------- */

body[data-site-page="home"] .home-v2-review-stars span {
  animation: starGlow 4.5s ease-in-out infinite;
}
body[data-site-page="home"] .home-v2-review-stars span:nth-child(1) { animation-delay: 0s; }
body[data-site-page="home"] .home-v2-review-stars span:nth-child(2) { animation-delay: 0.35s; }
body[data-site-page="home"] .home-v2-review-stars span:nth-child(3) { animation-delay: 0.70s; }
body[data-site-page="home"] .home-v2-review-stars span:nth-child(4) { animation-delay: 1.05s; }
body[data-site-page="home"] .home-v2-review-stars span:nth-child(5) { animation-delay: 1.40s; }

/* -- Reduced motion: all alive animations off ------------ */

@media (prefers-reduced-motion: reduce) {
  body[data-site-page="home"] .home-v2-hero-glow,
  body[data-site-page="home"] .home-v2-hero-grid-violet,
  body[data-site-page="home"] .home-v2-eyebrow-icon svg,
  body[data-site-page="home"] .home-v2-gradient-text,
  body[data-site-page="home"] .showroom-hero-title-gradient,
  body[data-site-page="home"] .home-v2-hero-frame,
  body[data-site-page="home"] .home-v2-hero-image-shell,
  body[data-site-page="home"] .home-v2-hero-image-shell::after,
  body[data-site-page="home"] .home-v2-gallery-surface-glow,
  body[data-site-page="home"] .home-v2-luma-card-glow,
  body[data-site-page="home"] .home-v2-luma-visual::after,
  body[data-site-page="home"] .home-v2-luma-display,
  body[data-site-page="home"] .home-v2-luma-display::after,
  body[data-site-page="home"] .home-v2-luma-visual-glow-bottom,
  body[data-site-page="home"] .home-v2-luma-visual-glow-top,
  body[data-site-page="home"] .home-v2-review-panel-glow,
  body[data-site-page="home"] .home-v2-luma-mode-pills span,
  body[data-site-page="home"] .home-v2-cta-primary,
  body[data-site-page="home"] .home-v2-review-button,
  body[data-site-page="home"] .home-v2-form-button,
  body[data-site-page="home"] .home-v2-review-stars span {
    animation: none;
  }

  body[data-site-page="home"] .reveal {
    opacity:    1;
    transform:  none;
    transition: none;
  }
}

/* ── Nav Gallery Dropdown ─────────────────────────────────────────────
   Works for both body[data-site-page="home"] and body.home-v2-storefront-page
   ─────────────────────────────────────────────────────────────────── */

.home-v2-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.home-v2-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.home-v2-nav-dropdown-trigger:hover,
.home-v2-nav-dropdown-trigger.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(6, 7, 12, 0.18);
}

.home-v2-nav-dropdown-chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.home-v2-nav-dropdown:hover .home-v2-nav-dropdown-chevron,
.home-v2-nav-dropdown:focus-within .home-v2-nav-dropdown-chevron,
.home-v2-nav-dropdown.is-open .home-v2-nav-dropdown-chevron {
  transform: rotate(180deg);
}

.home-v2-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  padding: 0.375rem;
  min-width: 10rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(4, 5, 10, 0.5);
}

.home-v2-nav-dropdown:hover .home-v2-nav-dropdown-panel,
.home-v2-nav-dropdown:focus-within .home-v2-nav-dropdown-panel,
.home-v2-nav-dropdown.is-open .home-v2-nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.home-v2-nav-dropdown-panel a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 140ms ease, background 140ms ease;
  white-space: nowrap;
}

.home-v2-nav-dropdown-panel a:hover,
.home-v2-nav-dropdown-panel a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* ═══════════════════════════════════════════════════════════
   Touch-device hover suppression
   On touch devices CSS :hover can "stick" after a tap.
   Reset every hover-dependent visual change back to its
   resting state so mobile users never see fake-hover glows,
   lifts, or colour shifts.
═══════════════════════════════════════════════════════════ */
@media (hover: none) {
  /* Nav & header controls */
  body[data-site-page="home"] .home-v2-nav a:hover,
  body.home-v2-storefront-page .home-v2-nav a:hover {
    color: rgba(255, 255, 255, 0.64);
    background: transparent;
    box-shadow: none;
  }

  body.home-v2-storefront-page .nav a:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.68);
  }

  body[data-site-page="home"] .home-v2-cart:hover,
  body[data-site-page="home"] .home-v2-menu-toggle:hover,
  body.home-v2-storefront-page .home-v2-cart:hover,
  body.home-v2-storefront-page .home-v2-menu-toggle:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  /* CTA buttons */
  body[data-site-page="home"] .home-v2-cta:hover,
  body[data-site-page="home"] .home-v2-review-button:hover,
  body[data-site-page="home"] .home-v2-form-button:hover,
  body[data-site-page="home"] .home-v2-gallery-section-link:hover {
    transform: none;
  }

  /* Spotlight radial glow on tap */
  body[data-site-page="home"] .home-v2-spotlight:hover::after {
    opacity: 0;
  }

  /* Style cards */
  body[data-site-page="home"] .home-v2-style-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 70px rgba(4, 5, 10, 0.32);
  }

  /* Gallery card CTA button */
  body[data-site-page="home"] .home-v2-gallery-card-action a:hover {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 34px rgba(194, 107, 255, 0.34);
  }

  /* Footer & social links */
  body[data-site-page="home"] .home-v2-footer-links a:hover,
  body.home-v2-storefront-page .home-v2-footer-links a:hover {
    color: rgba(255, 255, 255, 0.64);
  }

  body[data-site-page="home"] .home-v2-social-link:hover,
  body.home-v2-storefront-page .home-v2-social-link:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
  }

  /* Nav dropdown — keep :focus-within open but suppress :hover-only open */
  .home-v2-nav-dropdown:hover .home-v2-nav-dropdown-panel {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
  }

  .home-v2-nav-dropdown:focus-within .home-v2-nav-dropdown-panel,
  .home-v2-nav-dropdown.is-open .home-v2-nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .home-v2-nav-dropdown:focus-within .home-v2-nav-dropdown-chevron,
  .home-v2-nav-dropdown.is-open .home-v2-nav-dropdown-chevron {
    transform: rotate(180deg);
  }

  .home-v2-nav-dropdown-panel a:hover {
    color: rgba(255, 255, 255, 0.64);
    background: transparent;
  }
}

/* Logo refresh: restrained brand moments for the public storefront. */
body[data-site-page="home"] .home-v2-brand-mark,
body.home-v2-storefront-page .home-v2-brand-mark {
  width: clamp(8.25rem, 14vw, 11rem);
  height: 2.55rem;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-site-page="home"] .home-v2-brand-mark img.home-v2-brand-logo,
body.home-v2-storefront-page .home-v2-brand-mark img.home-v2-brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  transform: none;
  filter: drop-shadow(0 10px 22px rgba(2, 3, 8, 0.36));
}

body[data-site-page="home"] .home-v2-brand-copy,
body.home-v2-storefront-page .home-v2-brand-copy {
  display: none;
}

body[data-site-page="home"] .home-v2-footer-brand-mark,
body.home-v2-storefront-page .home-v2-footer-brand-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: 3.35rem;
  height: 2.9rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-site-page="home"] .home-v2-footer-brand-mark img,
body.home-v2-storefront-page .home-v2-footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(111, 74, 215, 0.28));
}

@media (max-width: 640px) {
  body[data-site-page="home"] .home-v2-brand-mark,
  body.home-v2-storefront-page .home-v2-brand-mark {
    width: 7.75rem;
    height: 2rem;
  }

  body[data-site-page="home"] .home-v2-footer-brand-mark,
  body.home-v2-storefront-page .home-v2-footer-brand-mark {
    width: 3rem;
    height: 2.55rem;
  }
}

/* Mobile-first storefront polish: containment, rhythm, and readable commerce controls. */
@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body[data-site-page="home"],
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page {
    width: 100%;
  }

  body[data-site-page="home"] *,
  body[data-site-page="home"] *::before,
  body[data-site-page="home"] *::after,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page *,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page *::before,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page *::after {
    box-sizing: border-box;
    min-width: 0;
  }

  body[data-site-page="home"] img,
  body[data-site-page="home"] video,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page img,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page video {
    max-width: 100%;
  }

  body[data-site-page="home"] .home-v2-main,
  body[data-site-page="home"] .home-v2-hero,
  body[data-site-page="home"] .home-v2-gallery-section,
  body[data-site-page="home"] .home-v2-luma-section,
  body[data-site-page="home"] .home-v2-reviews-section,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page main,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .footer {
    overflow-x: hidden;
  }

  body[data-site-page="home"] .home-v2-container,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-container,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .container {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    margin-inline: auto;
  }

  body[data-site-page="home"] .home-v2-header-inner,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-header-inner {
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 3.65rem;
  }

  body[data-site-page="home"] .home-v2-brand,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-brand {
    width: auto;
    max-width: calc(100% - 6.25rem);
    justify-content: flex-start;
    padding-inline: 0;
  }

  body[data-site-page="home"] .home-v2-brand-mark,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-brand-mark {
    position: static;
    transform: none;
    width: min(7.4rem, 42vw);
    height: 2rem;
  }

  body[data-site-page="home"] .home-v2-header-actions,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-header-actions {
    position: static;
    transform: none;
    margin-left: auto;
    gap: 0.4rem;
  }

  body[data-site-page="home"] .home-v2-cart,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-cart {
    width: 2.55rem;
    height: 2.55rem;
    padding: 0;
    justify-content: center;
  }

  body[data-site-page="home"] .home-v2-cart > span:not(.home-v2-cart-icon):not(.home-v2-cart-badge),
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-cart > span:not(.home-v2-cart-icon):not(.home-v2-cart-badge) {
    display: none;
  }

  body[data-site-page="home"] .home-v2-mobile-menu-inner,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-mobile-menu-inner {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
  }

  body[data-site-page="home"] .home-v2-hero {
    padding: 0.75rem 0 2.25rem;
  }

  body[data-site-page="home"] .home-v2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  body[data-site-page="home"] .home-v2-hero-copy {
    padding-top: 0.25rem;
  }

  body[data-site-page="home"] .home-v2-hero-copy-scale,
  body[data-site-page="home"] .home-v2-hero-copy-stack,
  body[data-site-page="home"] .home-v2-hero-copy,
  body[data-site-page="home"] .home-v2-hero-media {
    width: 100%;
    max-width: calc(100vw - 1rem);
    transform: none !important;
  }

  body[data-site-page="home"] .home-v2-eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  body[data-site-page="home"] .home-v2-pill-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    overflow: visible;
  }

  body[data-site-page="home"]:not(.site-editor-mode) .home-v2-eyebrow,
  body[data-site-page="home"]:not(.site-editor-mode) .home-v2-pill-row {
    display: none;
  }

  body[data-site-page="home"]:not(.site-editor-mode) .home-v2-hero-copy-stack {
    margin-top: 0;
  }

  body[data-site-page="home"] .home-v2-pill {
    justify-content: center;
    padding: 0.55rem 0.65rem;
    text-align: center;
    white-space: normal;
  }

  body[data-site-page="home"] .home-v2-hero-heading {
    max-width: 100%;
    font-size: clamp(2.08rem, 11.25vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  body[data-site-page="home"] .home-v2-hero-heading-line,
  body[data-site-page="home"] .home-v2-hero-heading-line-primary,
  body[data-site-page="home"] .home-v2-hero-heading-line-tail {
    white-space: normal;
  }

  body[data-site-page="home"] .home-v2-hero-cycle {
    display: inline;
    min-height: 0;
  }

  body[data-site-page="home"] .home-v2-hero-cycle-word {
    display: none;
    grid-area: auto;
    opacity: 1;
    transform: none;
    transition: none;
  }

  body[data-site-page="home"] .home-v2-hero-cycle-word:first-child {
    display: inline;
  }

  body[data-site-page="home"] .home-v2-hero-lead {
    width: auto !important;
    max-width: calc(100vw - 1rem);
    margin-top: 1rem;
    transform: none !important;
    font-size: 0.96rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  body[data-site-page="home"] .home-v2-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  body[data-site-page="home"] .home-v2-cta,
  body[data-site-page="home"] .home-v2-gallery-section-link,
  body[data-site-page="home"] .home-v2-review-button,
  body[data-site-page="home"] .home-v2-form-button {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  body[data-site-page="home"] .home-v2-hero-frame,
  body[data-site-page="home"] .home-v2-hero-image-shell,
  body[data-site-page="home"] .home-v2-hero-image-window {
    width: 100%;
    max-width: calc(100vw - 1rem);
  }

  body[data-site-page="home"] .home-v2-hero-frame {
    border-radius: 1.35rem;
    padding: 0.5rem;
  }

  body[data-site-page="home"] .home-v2-hero-image-topline {
    gap: 0.45rem;
  }

  body[data-site-page="home"] .home-v2-hero-image-topline span {
    max-width: 100%;
    white-space: normal;
  }

  body[data-site-page="home"] .home-v2-hero-image-window {
    min-height: 0;
    aspect-ratio: 1 / 0.86;
  }

  body[data-site-page="home"] .home-v2-hero-price-card {
    inset-inline: 0.65rem;
    bottom: 0.65rem;
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 1.1rem;
  }

  body[data-site-page="home"] .home-v2-card-label,
  body[data-site-page="home"] .home-v2-card-meta {
    letter-spacing: 0.14em;
  }

  body[data-site-page="home"] .home-v2-card-price {
    text-align: right;
  }

  body[data-site-page="home"] .home-v2-style-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
  }

  body[data-site-page="home"] .home-v2-style-card {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    min-height: 0;
    padding: 0.8rem;
    border-radius: 1.15rem;
  }

  body[data-site-page="home"] .home-v2-style-card-thumb {
    width: 4rem;
    height: 4rem;
    border-radius: 0.85rem;
  }

  body[data-site-page="home"] .home-v2-style-card-title,
  body[data-site-page="home"] .home-v2-style-card-text,
  body[data-site-page="home"] .home-v2-section-heading p,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .page-hero p,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-intro,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-copy,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-section-copy,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .muted {
    overflow-wrap: anywhere;
  }

  body[data-site-page="home"] .home-v2-gallery-section,
  body[data-site-page="home"] .home-v2-luma-section,
  body[data-site-page="home"] .home-v2-reviews-section {
    padding: 2.65rem 0 3rem;
  }

  body[data-site-page="home"] .home-v2-section-heading h2,
  body[data-site-page="home"] .home-v2-luma-heading,
  body[data-site-page="home"] .home-v2-footer-copy h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  body[data-site-page="home"] .home-v2-gallery-surface {
    padding: 0.5rem;
    border-radius: 1.25rem;
  }

  body[data-site-page="home"] .home-v2-gallery-stage {
    min-height: clamp(17rem, 82vw, 24rem);
  }

  body[data-site-page="home"] .home-v2-gallery-card {
    max-width: calc(100vw - 2rem);
  }

  body[data-site-page="home"] .home-v2-gallery-card-copy {
    inset-inline: 0.75rem;
    bottom: 0.75rem;
  }

  body[data-site-page="home"] .home-v2-gallery-card-action {
    margin-top: 0.75rem;
  }

  body[data-site-page="home"] .home-v2-luma-card {
    margin-top: 1.1rem;
    padding: 0.65rem;
    border-radius: 1.25rem;
  }

  body[data-site-page="home"] .home-v2-luma-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  body[data-site-page="home"] .home-v2-luma-visual {
    padding: 0.5rem;
    border-radius: 1.05rem;
  }

  body[data-site-page="home"] .home-v2-luma-display {
    min-height: 0;
    aspect-ratio: 1 / 0.86;
    border-radius: 1rem;
  }

  body[data-site-page="home"] .home-v2-luma-copy {
    padding: 0.25rem 0.2rem 0.4rem;
  }

  body[data-site-page="home"] .home-v2-luma-title {
    margin-top: 0.35rem;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  body[data-site-page="home"] .home-v2-luma-feature-grid,
  body[data-site-page="home"] .home-v2-luma-actions,
  body[data-site-page="home"] .home-v2-reviews-grid,
  body[data-site-page="home"] .home-v2-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="home"] .home-v2-luma-mode-pills {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  body[data-site-page="home"] .home-v2-luma-mode-pills span,
  body[data-site-page="home"] .home-v2-luma-display-topline span {
    white-space: normal;
  }

  body[data-site-page="home"] .home-v2-inquiry-panel-inner,
  body[data-site-page="home"] .home-v2-review-panel-inner {
    padding: 1rem;
  }

  body[data-site-page="home"] .home-v2-inquiry-title {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.2vw, 2.25rem);
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  body[data-site-page="home"] .home-v2-field input,
  body[data-site-page="home"] .home-v2-field textarea {
    width: 100%;
    max-width: 100%;
  }

  body[data-site-page="home"] .home-v2-review-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  body[data-site-page="home"] .home-v2-review-rating-row {
    flex-wrap: wrap;
  }

  body[data-site-page="home"] .home-v2-footer-card,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-footer-card {
    margin-top: 0;
    padding: 1rem;
    border-radius: 1.2rem;
  }

  body[data-site-page="home"] .home-v2-footer-grid,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
  }

  body[data-site-page="home"] .home-v2-social-link,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .home-v2-social-link {
    width: 100%;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .page-hero,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .section,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .section.product-page-section {
    padding-top: 1.35rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .page-hero-copy,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .catalog-path-card,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .section-header > div,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .empty-state {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .page-hero h1,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-title,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .card-title,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .footer-card h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .hero-proof-row,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .button,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .button-secondary,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .button-ghost,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page [data-buy-button],
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page [data-add-button],
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-link-inline {
    width: 100%;
    min-height: 3rem;
    padding: 0.82rem 1rem;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-grid,
  body[data-site-page="shop"].home-v2-storefront-page .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  body[data-site-page="shop"].home-v2-storefront-page .page-hero {
    padding-top: 1.35rem;
  }

  body[data-site-page="shop"].home-v2-storefront-page .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.8vw, 2.45rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  body[data-site-page="shop"].home-v2-storefront-page .page-hero p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card,
  body[data-site-page="shop"].home-v2-storefront-page .product-card {
    padding: 0.65rem;
    border-radius: 1.25rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-media,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-media {
    margin: 0;
    padding: 0.55rem;
    border-radius: 1.15rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-media .media-frame-window,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window {
    border-radius: 0.95rem;
    aspect-ratio: 1 / 0.82;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-preview-strip,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-body,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-strip,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-body {
    padding-inline: 0;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-preview-strip,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-strip {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-topline,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-topline {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.55rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-topline .pill,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-topline .pill {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .price,
  body[data-site-page="shop"].home-v2-storefront-page .price {
    align-items: flex-start;
    text-align: left;
    white-space: normal;
  }

  body[data-site-page="shop"].home-v2-storefront-page .price-amount {
    font-size: clamp(1.15rem, 7vw, 1.55rem);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-hero-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.65rem;
    border-radius: 1.25rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-shell,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-layout,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-panel,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-panel,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-summary-card,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-buybox,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-highlights-block {
    padding: 0.85rem;
    border-radius: 1.15rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-buybox {
    overflow: visible;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-header {
    display: grid;
    gap: 0.55rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-price {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    white-space: normal;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-stage,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-shell,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-track,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-slide,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-image-window {
    width: 100%;
    max-width: 100%;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-image-window {
    aspect-ratio: 1 / 1;
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-panel {
    padding: 0.65rem;
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-layout {
    gap: 0.55rem;
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-image-window {
    aspect-ratio: 1 / 0.76;
    max-height: min(62vh, 20rem);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-gallery-thumbs {
    max-width: 100%;
    overflow-x: auto;
    grid-auto-columns: minmax(4rem, 1fr);
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-thumbs {
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  body[data-site-page="product"].home-v2-storefront-page .product-gallery-thumb {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.7rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-color-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-color-button,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-size-button {
    width: 100%;
    min-height: 2.9rem;
    white-space: normal;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-size-row,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-config-grid,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-form,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .field input,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .field select,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .field textarea,
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .qty-control input {
    width: 100%;
    max-width: 100%;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-style-reference {
    grid-template-columns: minmax(0, 1fr);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .qty-control {
    width: 100%;
    justify-content: space-between;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-actions {
    position: sticky;
    bottom: 0.65rem;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    align-items: stretch;
    width: 100%;
    margin-top: 1rem;
    padding: 0.65rem;
    border: 1px solid rgba(233, 223, 255, 0.12);
    border-radius: 1.1rem;
    background: rgba(8, 9, 16, 0.88);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(22px) saturate(150%);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-detail-actions-bundle {
    grid-template-columns: minmax(0, 1fr);
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .mount-matrix {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .mount-matrix-grid {
    min-width: 24rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .mount-option-tile {
    padding: 0.75rem;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .mount-qty-control {
    width: 100%;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .footer {
    padding: 1.5rem 0 1rem;
  }
}

@media (max-width: 720px) {
  body[data-site-page="home"] .home-v2-hero-image-topline,
  body[data-site-page="home"] .home-v2-luma-display-topline {
    display: none;
  }

  body[data-site-page="home"] .home-v2-hero-price-card {
    inset-inline: 0.55rem;
    bottom: 0.55rem;
    gap: 0.45rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.85rem;
    backdrop-filter: blur(18px);
  }

  body[data-site-page="home"] .home-v2-card-label,
  body[data-site-page="home"] .home-v2-card-meta {
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  body[data-site-page="home"] .home-v2-card-meta {
    display: none;
  }

  body[data-site-page="home"] .home-v2-card-price div:last-child {
    margin-top: 0;
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    line-height: 1;
  }

  body[data-site-page="home"] .home-v2-luma-mode-pills {
    inset-inline: 0.48rem;
    bottom: 0.5rem;
    display: grid;
    grid-template-columns: 0.7fr 0.95fr 0.9fr 1.55fr;
    gap: 0.22rem;
    flex-wrap: nowrap;
  }

  body[data-site-page="home"] .home-v2-luma-mode-pills span {
    min-width: 0;
    justify-content: center;
    padding: 0.32rem 0.12rem;
    font-size: clamp(0.42rem, 1.55vw, 0.52rem);
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    backdrop-filter: blur(14px);
  }

  body[data-site-page="home"] .home-v2-luma-mode-pills span.is-active-mode {
    transform: none;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-media .media-frame-window,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window {
    aspect-ratio: 1 / 0.72;
    max-height: none;
  }

  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-card-media .media-frame-window > img,
  body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window > img {
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (max-width: 380px) {
  body:is([data-site-page="shop"], [data-site-page="product"]).home-v2-storefront-page .product-color-row {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="home"] .home-v2-pill {
    flex-basis: 100%;
  }

  body[data-site-page="home"] .home-v2-hero-price-card {
    flex-direction: row;
    align-items: center;
  }

  body[data-site-page="home"] .home-v2-card-price {
    text-align: right;
  }
}

html.home-v2-gallery-scroll-locked,
body.home-v2-gallery-scroll-locked {
  overflow-y: hidden;
  overscroll-behavior-y: none;
}

body[data-site-page="home"] .home-v2-gallery-card {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: translate(-50%, -50%) translate3d(56vw, 42px, 0) rotateY(-24deg) scale(0.68);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="0"] {
  opacity: 1;
  visibility: visible;
  z-index: 30;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) rotateY(0) scale(1);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="-1"] {
  opacity: 0.42;
  visibility: visible;
  z-index: 18;
  transform: translate(-50%, -50%) translate3d(-31vw, 30px, 0) rotateY(18deg) scale(0.76);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="1"] {
  opacity: 0.42;
  visibility: visible;
  z-index: 18;
  transform: translate(-50%, -50%) translate3d(31vw, 30px, 0) rotateY(-18deg) scale(0.76);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="-2"] {
  opacity: 0.08;
  visibility: visible;
  z-index: 8;
  transform: translate(-50%, -50%) translate3d(-49vw, 36px, 0) rotateY(24deg) scale(0.68);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="2"] {
  opacity: 0.08;
  visibility: visible;
  z-index: 8;
  transform: translate(-50%, -50%) translate3d(49vw, 36px, 0) rotateY(-24deg) scale(0.68);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="hidden-left"] {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: translate(-50%, -50%) translate3d(-56vw, 42px, 0) rotateY(24deg) scale(0.68);
}

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="hidden-right"] {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: translate(-50%, -50%) translate3d(56vw, 42px, 0) rotateY(-24deg) scale(0.68);
}

body[data-site-page="home"] .home-v2-gallery-card.is-action-visible .home-v2-gallery-card-action {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body[data-site-page="home"] .home-v2-gallery-stage.is-editor-grid .home-v2-gallery-card {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: none;
}

@media (max-width: 720px) {
  body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="-1"] {
    transform: translate(-50%, -50%) translate3d(-42vw, 22px, 0) rotateY(14deg) scale(0.72);
  }

  body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="1"] {
    transform: translate(-50%, -50%) translate3d(42vw, 22px, 0) rotateY(-14deg) scale(0.72);
  }

  body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="-2"],
  body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="hidden-left"] {
    transform: translate(-50%, -50%) translate3d(-58vw, 30px, 0) rotateY(18deg) scale(0.66);
  }

body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="2"],
body[data-site-page="home"] .home-v2-gallery-card[data-gallery-position="hidden-right"] {
    transform: translate(-50%, -50%) translate3d(58vw, 30px, 0) rotateY(-18deg) scale(0.66);
  }
}

@keyframes luma-bubble-rise-keyframes {
  0% {
    opacity: 0;
    transform: translate3d(0, 110%, 0) scale(0.72);
  }

  18% {
    opacity: 0.74;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--bubble-drift, 0), -118vh, 0) scale(1.08);
  }
}

body.luma-product-detail-page.home-v2-storefront-page {
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body.luma-product-detail-page.home-v2-storefront-page::after {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.2), transparent 34%);
}

body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section,
body.luma-product-detail-page .product-page-section {
  padding: 0;
}

body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section::before,
body.luma-product-detail-page .product-page-section::before {
  display: none;
}

body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section > .container,
body.luma-product-detail-page .product-page-section > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.luma-product-detail-page .luma-detail-page {
  --luma-bg: #07070b;
  --luma-ink: #111319;
  --luma-paper: #f6f3ec;
  --luma-paper-deep: #f4f1eb;
  --luma-violet: #cab9ff;
  --luma-soft: rgba(255, 255, 255, 0.64);
  position: relative;
  overflow: clip;
  padding-bottom: 10rem;
  font-family: var(--home-v2-font-body);
  background:
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.2), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(242, 239, 250, 0.12), transparent 22%),
    radial-gradient(circle at 80% 72%, rgba(157, 136, 218, 0.14), transparent 18%),
    linear-gradient(180deg, #040408 0%, #0b0a12 42%, #07070b 100%);
  color: rgba(248, 247, 252, 0.98);
}

body.luma-finish-open {
  overflow: hidden;
}

body.luma-product-detail-page .luma-detail-container {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

body.luma-product-detail-page .luma-detail-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.2), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(242, 239, 250, 0.12), transparent 22%),
    radial-gradient(circle at 80% 72%, rgba(157, 136, 218, 0.14), transparent 18%),
    linear-gradient(180deg, #040408 0%, #0b0a12 42%, #07070b 100%);
}

body.luma-product-detail-page .luma-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 78%);
}

body.luma-product-detail-page .luma-detail-section::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -22rem;
  z-index: 0;
  height: 34rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(202, 185, 255, 0.16), transparent 58%),
    radial-gradient(ellipse at 62% 42%, rgba(233, 229, 244, 0.1), transparent 52%);
  filter: blur(16px);
}

body.luma-product-detail-page .luma-detail-section > .luma-detail-container,
body.luma-product-detail-page .luma-mode-stage > .luma-detail-container {
  position: relative;
  z-index: 1;
}

body.luma-product-detail-page .luma-detail-hero {
  padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

body.luma-product-detail-page .luma-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

body.luma-product-detail-page .luma-back-link:hover {
  color: #fff;
}

body.luma-product-detail-page .luma-detail-hero-grid {
  display: grid;
  width: min(100%, 1268px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.92fr);
  gap: clamp(2.25rem, 4vw, 3.25rem);
  align-items: center;
  transform: translateX(clamp(-1rem, -0.8vw, -0.45rem));
}

body.luma-product-detail-page .luma-hero-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.42fr);
  gap: 1rem;
}

body.luma-product-detail-page .luma-image-window {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background: #121118;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 70px rgba(2, 3, 7, 0.52);
}

body.luma-product-detail-page .luma-image-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at top, rgba(170, 147, 255, 0.14), transparent 40%);
}

body.luma-product-detail-page .luma-image-window img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 320ms ease, filter 320ms ease;
}

body.luma-product-detail-page .luma-hero-primary {
  min-height: 34rem;
  border-radius: 2.1rem;
}

body.luma-product-detail-page .luma-hero-side-images {
  display: grid;
  gap: 1rem;
}

body.luma-product-detail-page .luma-hero-copy {
  display: grid;
  max-width: 40rem;
  gap: 1.55rem;
  justify-self: start;
}

body.luma-product-detail-page .luma-eyebrow,
body.luma-product-detail-page .luma-light-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 17, 24, 0.72);
  padding: 0.42rem 0.72rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.luma-product-detail-page .luma-light-eyebrow {
  border-color: rgba(17, 19, 25, 0.12);
  background: transparent;
  color: #6d6378;
}

body.luma-product-detail-page .luma-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(4.8rem, 8.3vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

body.luma-product-detail-page .luma-hero-lede {
  max-width: 15ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

body.luma-product-detail-page .luma-hero-copy-text {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.luma-product-detail-page .luma-mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

body.luma-product-detail-page .luma-mini-feature-grid article,
body.luma-product-detail-page .luma-sport-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.luma-product-detail-page .luma-mini-feature-grid strong,
body.luma-product-detail-page .luma-mini-feature-grid span {
  display: block;
}

body.luma-product-detail-page .luma-mini-feature-grid strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

body.luma-product-detail-page .luma-mini-feature-grid span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
  line-height: 1.45;
}

body.luma-product-detail-page .luma-button-row,
body.luma-product-detail-page .luma-finish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

body.luma-product-detail-page .luma-primary-button,
body.luma-product-detail-page .luma-secondary-button,
body.luma-product-detail-page .luma-sticky-buy,
body.luma-product-detail-page .luma-finish-actions .button,
body.luma-product-detail-page .luma-finish-actions .button-secondary {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

body.luma-product-detail-page .luma-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

body.luma-product-detail-page .luma-light-section {
  background: var(--luma-paper);
  color: var(--luma-ink);
}

body.luma-product-detail-page .luma-capabilities-section,
body.luma-product-detail-page .luma-control-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
}

body.luma-product-detail-page .luma-capabilities-grid,
body.luma-product-detail-page .luma-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

body.luma-product-detail-page .luma-section-heading h2,
body.luma-product-detail-page .luma-mode-stage-heading h2,
body.luma-product-detail-page .luma-sports-heading h2,
body.luma-product-detail-page .luma-finish-content h2 {
  margin: 1rem 0 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(3rem, 5.7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

body.luma-product-detail-page .luma-section-heading p,
body.luma-product-detail-page .luma-control-grid p {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: rgba(17, 19, 25, 0.64);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.luma-product-detail-page .luma-capability-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.luma-product-detail-page .luma-light-card {
  border: 1px solid rgba(17, 19, 25, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.25rem;
  box-shadow: 0 24px 70px rgba(17, 19, 25, 0.09);
}

body.luma-product-detail-page .luma-light-icon,
body.luma-product-detail-page .luma-step-number {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111319;
  color: #f4f1eb;
  font-weight: 700;
}

body.luma-product-detail-page .luma-light-card h3 {
  margin: 1.25rem 0 0;
  color: #111319;
  font-size: 1.25rem;
  letter-spacing: 0;
}

body.luma-product-detail-page .luma-light-card p {
  margin: 0.75rem 0 0;
  color: rgba(17, 19, 25, 0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}

body.luma-product-detail-page .luma-rising-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body.luma-product-detail-page .luma-rising-bubbles span {
  position: absolute;
  bottom: -7rem;
  left: var(--bubble-left, 50%);
  width: var(--bubble-size, 0.8rem);
  height: var(--bubble-size, 0.8rem);
  border-radius: 999px;
  background: rgba(198, 181, 255, 0.52);
  box-shadow:
    0 0 20px rgba(198, 181, 255, 0.5),
    0 0 44px rgba(124, 96, 255, 0.28);
  animation: luma-bubble-rise-keyframes var(--bubble-duration, 14s) linear infinite;
  animation-delay: var(--bubble-delay, 0s);
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(1) {
  --bubble-left: 8%;
  --bubble-size: 0.42rem;
  --bubble-duration: 15s;
  --bubble-delay: -4s;
  --bubble-drift: 1.5rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(2) {
  --bubble-left: 22%;
  --bubble-size: 0.72rem;
  --bubble-duration: 18s;
  --bubble-delay: -9s;
  --bubble-drift: -1.2rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(3) {
  --bubble-left: 67%;
  --bubble-size: 0.5rem;
  --bubble-duration: 16s;
  --bubble-delay: -6s;
  --bubble-drift: 1.8rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(4) {
  --bubble-left: 86%;
  --bubble-size: 0.9rem;
  --bubble-duration: 21s;
  --bubble-delay: -13s;
  --bubble-drift: -1.6rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(5) {
  --bubble-left: 48%;
  --bubble-size: 0.36rem;
  --bubble-duration: 13s;
  --bubble-delay: -7s;
  --bubble-drift: 1rem;
}

body.luma-product-detail-page .luma-mode-runway {
  overflow: visible;
}

body.luma-product-detail-page .luma-mode-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 4.5rem;
}

body.luma-product-detail-page .luma-mode-stage > .luma-detail-container {
  min-height: calc(100svh - 4.5rem);
}

body.luma-product-detail-page .luma-mode-stage-heading {
  padding-top: clamp(0.5rem, 1.8svh, 1.4rem);
}

body.luma-product-detail-page .luma-mode-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
}

body.luma-product-detail-page .luma-mode-heading-row h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.7vw, 6.7rem);
}

body.luma-product-detail-page .luma-mode-heading-row p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
  line-height: 1.7;
}

body.luma-product-detail-page .luma-mode-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(1rem, 3.2vw, 3.5rem);
  min-height: calc(100svh - 11rem);
  padding-block: clamp(0.45rem, 1.5svh, 1.2rem);
  transform: translateY(clamp(-4.5rem, -6.5svh, -2.75rem));
}

body.luma-product-detail-page .luma-sticky-device-shell {
  position: relative;
  align-self: center;
  transform-style: preserve-3d;
  transform-origin: 50% 20%;
}

body.luma-product-detail-page .luma-sticky-device-glow {
  position: absolute;
  inset: -1.75rem;
  z-index: -1;
  border-radius: 2.8rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 18%, rgba(193, 179, 255, 0.42), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(106, 83, 255, 0.32), transparent 34%);
  filter: blur(26px);
}

body.luma-product-detail-page .luma-sticky-device-window {
  height: min(44rem, calc(100svh - 10.75rem));
  min-height: 34rem;
  max-height: 46rem;
  border-radius: 2rem;
}

body.luma-product-detail-page .luma-sticky-device-window img[data-luma-mode-image] {
  opacity: 1;
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transition:
    opacity 340ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.luma-product-detail-page .luma-sticky-device-window img[data-luma-mode-image].is-switching {
  opacity: 0.08;
  transform: translate3d(0, -0.22rem, 0) scale(0.996);
}

body.luma-product-detail-page .luma-mode-card-viewport {
  position: relative;
  align-self: center;
  height: min(44rem, calc(100svh - 10.75rem));
  min-height: 34rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, black 11%, black 89%, transparent 100%);
}

body.luma-product-detail-page .luma-mode-card-rail {
  display: grid;
  gap: 1.15rem;
  transform: translate3d(0, 0, 0);
  transition: none;
}

body.luma-product-detail-page .luma-mode-card {
  position: relative;
  width: 100%;
  min-height: 18.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.038);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(18px);
  transform-origin: center;
  opacity: 0.52;
  transform: scale(0.955);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 360ms ease;
}

body.luma-product-detail-page .luma-mode-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(224, 214, 255, 0.46);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 34px 92px rgba(124, 91, 255, 0.24);
}

body.luma-product-detail-page .luma-mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(219, 204, 255, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
  opacity: 0.76;
}

body.luma-product-detail-page .luma-mode-card-number {
  position: absolute;
  right: 1.25rem;
  top: 0.85rem;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--home-v2-font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
}

body.luma-product-detail-page .luma-mode-card.is-active .luma-mode-card-number {
  color: rgba(255, 255, 255, 0.105);
}

body.luma-product-detail-page .luma-mode-card-image {
  display: none;
}

body.luma-product-detail-page .luma-mode-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 420ms ease, filter 320ms ease;
}

body.luma-product-detail-page .luma-mode-card-inner {
  position: relative;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

body.luma-product-detail-page .luma-mode-icon {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eee5ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.luma-product-detail-page .luma-mode-card-copy {
  display: grid;
  min-width: 0;
}

body.luma-product-detail-page .luma-mode-eyebrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.luma-product-detail-page .luma-mode-card-copy strong {
  margin-top: 0.75rem;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

body.luma-product-detail-page .luma-mode-card-copy > span:not(.luma-mode-eyebrow):not(.luma-mode-point-row) {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.luma-product-detail-page .luma-mode-point-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1.45rem;
}

body.luma-product-detail-page .luma-mode-point-row span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

body.luma-product-detail-page .luma-mode-stop-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

body.luma-product-detail-page .luma-mode-stop-row span {
  display: block;
  width: 100%;
  height: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body.luma-product-detail-page .luma-mode-stop-row span.is-active {
  border-color: rgba(224, 214, 255, 0.38);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 20px rgba(198, 181, 255, 0.38);
}

body.luma-product-detail-page .luma-control-section {
  background: #f6f3ec;
}

body.luma-product-detail-page .luma-video-placeholder {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background: #121118;
  color: #fff;
  text-align: center;
  box-shadow: 0 34px 90px rgba(17, 19, 25, 0.24);
}

body.luma-product-detail-page .luma-section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

body.luma-product-detail-page .luma-video-placeholder > div:not(.luma-section-grid) {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

body.luma-product-detail-page .luma-video-play {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

body.luma-product-detail-page .luma-video-placeholder strong {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.5rem;
}

body.luma-product-detail-page .luma-video-placeholder p {
  max-width: 28rem;
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
  line-height: 1.6;
}

body.luma-product-detail-page .luma-sports-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
}

body.luma-product-detail-page .luma-sports-heading {
  max-width: none;
}

body.luma-product-detail-page .luma-sports-heading h2 {
  max-width: 16ch;
  color: #fff;
}

body.luma-product-detail-page .luma-sports-heading p {
  max-width: 58rem;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.luma-product-detail-page .luma-sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

body.luma-product-detail-page .luma-sport-card {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}

body.luma-product-detail-page .luma-sport-card span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #eee5ff;
}

body.luma-product-detail-page .luma-sport-card h3 {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0;
}

body.luma-product-detail-page .luma-sport-card p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.luma-product-detail-page .luma-steps-section {
  padding: 0 0 6rem;
}

body.luma-product-detail-page .luma-steps-panel {
  border-top: 1px solid rgba(17, 19, 25, 0.1);
  padding-top: 4rem;
}

body.luma-product-detail-page .luma-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

body.luma-product-detail-page .luma-sticky-cart {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 90;
  max-width: 48rem;
  margin-inline: auto;
  pointer-events: none;
}

body.luma-product-detail-page .luma-sticky-cart-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 17, 25, 0.95);
  padding: 0.5rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(28px);
  pointer-events: auto;
}

body.luma-product-detail-page .luma-sticky-cart-grid {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto auto;
  gap: 0.5rem;
  align-items: center;
}

body.luma-product-detail-page .luma-finish-trigger,
body.luma-product-detail-page .luma-sticky-qty {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body.luma-product-detail-page .luma-finish-trigger {
  padding: 0 1rem;
  text-align: left;
}

body.luma-product-detail-page .luma-finish-trigger > span:first-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

body.luma-product-detail-page .luma-finish-trigger-swatches {
  display: flex;
  align-items: center;
  margin-left: auto;
}

body.luma-product-detail-page .luma-finish-trigger-swatches span {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(7, 16, 29, 0.95);
}

body.luma-product-detail-page .luma-finish-trigger-swatches span + span {
  margin-left: -0.38rem;
}

body.luma-product-detail-page .luma-sticky-qty {
  padding: 0 0.5rem 0 0.85rem;
}

body.luma-product-detail-page .luma-sticky-qty span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

body.luma-product-detail-page .luma-sticky-qty button,
body.luma-product-detail-page .luma-finish-quantity .qty-control button {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
}

body.luma-product-detail-page .luma-sticky-qty input,
body.luma-product-detail-page .luma-finish-quantity .qty-control input {
  width: 2.4rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  outline: none;
}

body.luma-product-detail-page .luma-sticky-buy {
  height: 2.75rem;
  padding-inline: 1.5rem;
}

body.luma-product-detail-page .luma-finish-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
}

body.luma-product-detail-page .luma-finish-overlay[hidden] {
  display: none;
}

body.luma-product-detail-page .luma-finish-funnel {
  width: min(72rem, 100%);
  max-height: calc(100svh - 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: #121118;
  color: #fff;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.62);
}

body.luma-product-detail-page .luma-finish-preview {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background: #07070b;
}

body.luma-product-detail-page .luma-finish-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  padding: 2rem;
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 420ms ease, filter 320ms ease;
}

body.luma-product-detail-page .luma-finish-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, #121118 0%, transparent 42%, rgba(0, 0, 0, 0.18) 100%);
}

body.luma-product-detail-page .luma-finish-preview-label {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(20px);
}

body.luma-product-detail-page .luma-finish-preview-label span:first-child {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

body.luma-product-detail-page .luma-finish-content {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

body.luma-product-detail-page .luma-funnel-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

body.luma-product-detail-page .luma-finish-content h2 {
  max-width: 11ch;
  color: #fff;
}

body.luma-product-detail-page .luma-finish-content > p {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.75;
}

body.luma-product-detail-page .luma-finish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

body.luma-product-detail-page .luma-finish-option {
  display: flex;
  min-height: 7.5rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.75rem;
  color: #fff;
  text-align: left;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

body.luma-product-detail-page .luma-finish-option:hover,
body.luma-product-detail-page .luma-finish-option.is-active {
  border-color: rgba(224, 214, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(134, 103, 255, 0.18);
}

body.luma-product-detail-page .luma-finish-option-image {
  width: 6rem;
  height: 6rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
}

body.luma-product-detail-page .luma-finish-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 420ms ease, filter 320ms ease;
}

body.luma-product-detail-page .luma-finish-option:hover .luma-finish-option-image img {
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(calc(var(--image-scale, 1) * 1.04));
}

body.luma-product-detail-page .luma-finish-option strong,
body.luma-product-detail-page .luma-finish-option small {
  display: block;
}

body.luma-product-detail-page .luma-finish-option strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

body.luma-product-detail-page .luma-finish-option small {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.45;
}

body.luma-product-detail-page .luma-finish-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(0, 0, 0, 0.24);
  padding: 1rem;
}

body.luma-product-detail-page .luma-finish-quantity strong,
body.luma-product-detail-page .luma-finish-quantity span {
  display: block;
}

body.luma-product-detail-page .luma-finish-quantity > div:first-child > span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

body.luma-product-detail-page .luma-finish-quantity .qty-control {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
}

body.luma-product-detail-page .luma-detail-status {
  margin-top: 1rem;
}

body.luma-product-detail-page .luma-finish-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

@media (min-width: 821px) {
  body.luma-product-detail-page .luma-finish-overlay {
    align-items: center;
    overflow: hidden;
  }

  body.luma-product-detail-page .luma-finish-funnel {
    width: min(72rem, calc(100vw - 6rem));
    height: min(49rem, calc(100svh - 4.25rem));
    max-height: calc(100svh - 4.25rem);
    grid-template-columns: minmax(0, 0.94fr) minmax(28rem, 0.9fr);
  }

  body.luma-product-detail-page .luma-finish-preview {
    display: grid;
    min-height: 0;
    place-items: center;
    padding: clamp(0.55rem, 1.45vw, 1.15rem);
  }

  body.luma-product-detail-page .luma-finish-preview img {
    width: min(99%, 42rem);
    height: auto;
    max-height: calc(100svh - 8rem);
    min-height: 0;
    padding: 0;
    border-radius: 1.15rem;
    object-fit: contain;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  }

  body.luma-product-detail-page .luma-finish-content {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.85rem);
  }

  body.luma-product-detail-page .luma-finish-content h2 {
    max-width: 13ch;
    font-size: clamp(2.9rem, 4.65vw, 4.55rem);
    line-height: 0.98;
  }

  body.luma-product-detail-page .luma-finish-content > p {
    margin-top: 0.95rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  body.luma-product-detail-page .luma-finish-grid {
    gap: 0.65rem;
    margin-top: 1.05rem;
  }

  body.luma-product-detail-page .luma-finish-option {
    min-height: 6.4rem;
    gap: 0.7rem;
    border-radius: 1.05rem;
    padding: 0.62rem;
  }

  body.luma-product-detail-page .luma-finish-option-image {
    width: 5rem;
    height: 5rem;
    border-radius: 0.85rem;
  }

  body.luma-product-detail-page .luma-finish-option strong {
    font-size: 0.98rem;
  }

  body.luma-product-detail-page .luma-finish-option small {
    margin-top: 0.32rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body.luma-product-detail-page .luma-finish-quantity {
    margin-top: 1rem;
    border-radius: 1.1rem;
    padding: 0.75rem;
  }

  body.luma-product-detail-page .luma-finish-actions {
    margin-top: 1rem;
    flex: 0 0 auto;
  }
}

@media (min-width: 821px) and (max-height: 900px) {
  body.luma-product-detail-page .luma-finish-funnel {
    height: calc(100svh - 4rem);
    max-height: calc(100svh - 4rem);
  }

  body.luma-product-detail-page .luma-finish-content {
    padding: 0.8rem 1.25rem 0.95rem;
  }

  body.luma-product-detail-page .luma-finish-content h2 {
    margin-top: 0.55rem;
    font-size: clamp(2.35rem, 7.1vh, 3.7rem);
  }

  body.luma-product-detail-page .luma-finish-content > p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  body.luma-product-detail-page .luma-finish-grid {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }

  body.luma-product-detail-page .luma-finish-option {
    min-height: 5.05rem;
    padding: 0.5rem;
  }

  body.luma-product-detail-page .luma-finish-option-image {
    width: 4rem;
    height: 4rem;
  }

  body.luma-product-detail-page .luma-finish-option small {
    margin-top: 0.22rem;
    font-size: 0.72rem;
    line-height: 1.24;
  }

  body.luma-product-detail-page .luma-finish-quantity {
    padding: 0.58rem 0.7rem;
  }

  body.luma-product-detail-page .luma-finish-quantity .qty-control {
    min-height: 2.55rem;
  }

  body.luma-product-detail-page .luma-finish-quantity,
  body.luma-product-detail-page .luma-finish-actions {
    margin-top: 0.62rem;
  }

  body.luma-product-detail-page .luma-finish-actions .button,
  body.luma-product-detail-page .luma-finish-actions .button-secondary {
    min-height: 3rem;
  }
}

@media (max-width: 1060px) {
  body.luma-product-detail-page .luma-detail-hero-grid,
  body.luma-product-detail-page .luma-capabilities-grid,
  body.luma-product-detail-page .luma-control-grid {
    grid-template-columns: minmax(0, 1fr);
    transform: none;
  }

  body.luma-product-detail-page .luma-hero-copy {
    max-width: none;
  }

  body.luma-product-detail-page .luma-mode-stage-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 0.9rem;
    min-height: calc(100svh - 8.8rem);
    transform: translateY(clamp(-3rem, -4.8svh, -1.6rem));
  }

  body.luma-product-detail-page .luma-sticky-device-window,
  body.luma-product-detail-page .luma-mode-card-viewport {
    height: 50svh;
    min-height: 16rem;
    max-height: 50svh;
  }

  body.luma-product-detail-page .luma-mode-card {
    min-height: 14.25rem;
    border-radius: 1.25rem;
    padding: 1rem;
  }

  body.luma-product-detail-page .luma-mode-card-copy strong {
    font-size: clamp(1.4rem, 4vw, 2.25rem);
  }

  body.luma-product-detail-page .luma-mode-card-copy > span:not(.luma-mode-eyebrow):not(.luma-mode-point-row) {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  body.luma-product-detail-page .luma-mode-point-row span {
    padding: 0.35rem 0.55rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 820px) {
  body.luma-product-detail-page .luma-detail-page {
    padding-bottom: 8rem;
  }

  body.luma-product-detail-page .luma-detail-container {
    width: min(100% - 1.25rem, 1320px);
  }

  body.luma-product-detail-page .luma-detail-hero {
    padding: 1.25rem 0 3rem;
  }

  body.luma-product-detail-page .luma-mode-runway {
    min-height: auto !important;
  }

  body.luma-product-detail-page .luma-capabilities-section,
  body.luma-product-detail-page .luma-control-section,
  body.luma-product-detail-page .luma-steps-section {
    padding: 3rem 0;
  }

  body.luma-product-detail-page .luma-sports-section {
    padding: 3.25rem 0;
  }

  body.luma-product-detail-page .luma-hero-media-grid,
  body.luma-product-detail-page .luma-mini-feature-grid,
  body.luma-product-detail-page .luma-capability-card-grid,
  body.luma-product-detail-page .luma-sports-grid,
  body.luma-product-detail-page .luma-step-grid,
  body.luma-product-detail-page .luma-finish-funnel,
  body.luma-product-detail-page .luma-finish-grid,
  body.luma-product-detail-page .luma-finish-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  body.luma-product-detail-page .luma-hero-side-images {
    display: none;
  }

  body.luma-product-detail-page .luma-hero-primary {
    min-height: 18rem;
    border-radius: 1.45rem;
  }

  body.luma-product-detail-page .luma-hero-copy {
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
  }

  body.luma-product-detail-page .luma-hero-copy h1,
  body.luma-product-detail-page .luma-hero-lede,
  body.luma-product-detail-page .luma-hero-copy-text {
    overflow-wrap: anywhere;
    white-space: normal;
    text-wrap: balance;
  }

  body.luma-product-detail-page .luma-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.85rem, 12vw, 4.1rem);
    line-height: 0.96;
  }

  body.luma-product-detail-page .luma-hero-lede {
    max-width: min(100%, 16ch);
    font-size: clamp(1.45rem, 6.8vw, 2.1rem);
    line-height: 1.08;
  }

  body.luma-product-detail-page .luma-hero-copy-text,
  body.luma-product-detail-page .luma-section-heading p,
  body.luma-product-detail-page .luma-control-grid p,
  body.luma-product-detail-page .luma-sports-heading p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  body.luma-product-detail-page .luma-mini-feature-grid {
    gap: 0.55rem;
  }

  body.luma-product-detail-page .luma-mini-feature-grid article,
  body.luma-product-detail-page .luma-light-card,
  body.luma-product-detail-page .luma-sport-card {
    border-radius: 1rem;
    padding: 0.85rem;
  }

  body.luma-product-detail-page .luma-mini-feature-grid span,
  body.luma-product-detail-page .luma-light-card p,
  body.luma-product-detail-page .luma-sport-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  body.luma-product-detail-page .luma-button-row {
    gap: 0.65rem;
  }

  body.luma-product-detail-page .luma-primary-button,
  body.luma-product-detail-page .luma-secondary-button {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }

  body.luma-product-detail-page .luma-mode-stage {
    position: relative;
    min-height: auto;
    padding: 2.5rem 0;
  }

  body.luma-product-detail-page .luma-mode-heading-row {
    gap: 0.85rem;
  }

  body.luma-product-detail-page .luma-mode-heading-row h2,
  body.luma-product-detail-page .luma-section-heading h2,
  body.luma-product-detail-page .luma-sports-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  body.luma-product-detail-page .luma-mode-stage-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    transform: none;
  }

  body.luma-product-detail-page .luma-mode-heading-row {
    display: grid;
  }

  body.luma-product-detail-page .luma-sticky-device-shell {
    display: none;
  }

  body.luma-product-detail-page .luma-mode-card-viewport {
    height: auto;
    min-height: 0;
    overflow: visible;
    mask-image: none;
  }

  body.luma-product-detail-page .luma-mode-card-rail {
    gap: 1rem;
    transform: none !important;
  }

  body.luma-product-detail-page .luma-mode-card {
    min-height: auto;
    border-radius: 1.15rem;
    padding: 0.7rem;
    opacity: 1;
    transform: none;
  }

  body.luma-product-detail-page .luma-mode-card.is-active,
  body.luma-product-detail-page .luma-mode-card.is-muted {
    opacity: 1;
    transform: none;
  }

  body.luma-product-detail-page .luma-mode-card-image {
    position: relative;
    display: block;
    height: min(55vw, 17rem);
    min-height: 13rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.92rem;
    background: #121118;
    margin-bottom: 0.9rem;
  }

  body.luma-product-detail-page .luma-mode-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  }

  body.luma-product-detail-page .luma-mode-card-number {
    top: calc(min(55vw, 17rem) + 0.95rem);
    font-size: 3.1rem;
  }

  body.luma-product-detail-page .luma-mode-icon,
  body.luma-product-detail-page .luma-light-icon,
  body.luma-product-detail-page .luma-step-number {
    width: 2.4rem;
    height: 2.4rem;
  }

  body.luma-product-detail-page .luma-mode-card-copy strong {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  body.luma-product-detail-page .luma-mode-point-row {
    gap: 0.45rem;
  }

  body.luma-product-detail-page .luma-mode-point-row span {
    padding: 0.34rem 0.52rem;
    font-size: 0.72rem;
  }

  body.luma-product-detail-page .luma-sticky-cart {
    inset-inline: 0.6rem;
  }

  body.luma-product-detail-page .luma-sticky-cart-panel {
    border-radius: 1.15rem;
    padding: 0.55rem;
  }

  body.luma-product-detail-page .luma-sticky-cart-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  body.luma-product-detail-page .luma-finish-trigger {
    min-height: 2.65rem;
    padding: 0.55rem 0.75rem;
  }

  body.luma-product-detail-page .luma-sticky-qty {
    grid-column: 1 / -1;
    justify-content: space-between;
    min-height: 2.45rem;
    order: 3;
  }

  body.luma-product-detail-page .luma-sticky-buy {
    min-height: 2.65rem;
    padding-inline: 0.9rem;
  }

  body.luma-product-detail-page .luma-finish-overlay {
    align-items: flex-end;
    padding: 0.75rem;
  }

  body.luma-product-detail-page .luma-finish-funnel {
    max-height: calc(100svh - 1.5rem);
    overflow: hidden auto;
    border-radius: 1.35rem;
  }

  body.luma-product-detail-page .luma-finish-preview {
    min-height: 15rem;
  }

  body.luma-product-detail-page .luma-finish-quantity {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body.luma-product-detail-page .luma-detail-container {
    width: min(100% - 1rem, 1320px);
  }

  body.luma-product-detail-page .luma-detail-hero {
    padding-top: 1rem;
  }

  body.luma-product-detail-page .luma-hero-copy h1 {
    font-size: clamp(2.6rem, 13.5vw, 3.55rem);
  }

  body.luma-product-detail-page .luma-hero-lede,
  body.luma-product-detail-page .luma-section-heading h2,
  body.luma-product-detail-page .luma-sports-heading h2,
  body.luma-product-detail-page .luma-finish-content h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.35rem);
  }

  body.luma-product-detail-page .luma-mode-heading-row h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  body.luma-product-detail-page .luma-mode-card-inner {
    display: grid;
    gap: 0.85rem;
  }

  body.luma-product-detail-page .luma-mode-card-image {
    height: 13.5rem;
    min-height: 0;
    margin-bottom: 0.75rem;
  }

  body.luma-product-detail-page .luma-mode-card-number {
    top: 14rem;
  }

  body.luma-product-detail-page .luma-hero-primary {
    min-height: 15.25rem;
  }

  body.luma-product-detail-page .luma-detail-hero-grid,
  body.luma-product-detail-page .luma-hero-copy,
  body.luma-product-detail-page .luma-hero-copy > * {
    min-width: 0;
    max-width: 100%;
  }

  body.luma-product-detail-page .luma-hero-copy {
    width: min(100%, 22.5rem);
    justify-self: stretch;
  }

  body.luma-product-detail-page .luma-hero-copy-text {
    max-width: min(100%, 34ch);
  }

  body.luma-product-detail-page .luma-mini-feature-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.luma-product-detail-page .luma-mini-feature-grid article {
    min-width: 0;
    padding: 0.68rem 0.42rem;
    text-align: center;
  }

  body.luma-product-detail-page .luma-mini-feature-grid strong {
    font-size: clamp(0.78rem, 3.25vw, 0.92rem);
  }

  body.luma-product-detail-page .luma-mini-feature-grid span {
    display: none;
  }

  body.luma-product-detail-page .luma-sports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.luma-product-detail-page .luma-sport-card h3 {
    font-size: 1rem;
  }

  body.luma-product-detail-page .luma-finish-content {
    padding: 0.9rem;
  }

  body.luma-product-detail-page .luma-finish-option {
    min-height: 5.6rem;
    padding: 0.65rem;
  }

  body.luma-product-detail-page .luma-finish-option-image {
    width: 4.25rem;
    height: 4.25rem;
  }

  body.luma-product-detail-page .luma-sticky-cart-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.luma-product-detail-page .luma-finish-trigger-swatches {
    display: none;
  }

  body.luma-product-detail-page .luma-sticky-buy {
    min-width: 5.75rem;
  }
}


@media (max-width: 820px) {
  @supports (animation-timeline: view()) {
    body.luma-product-detail-page .luma-mode-card {
      animation: luma-mobile-mode-card-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
    }
  }
}

@keyframes luma-mobile-mode-card-focus {
  from {
    opacity: 0.72;
    transform: translateY(0.75rem) scale(0.985);
  }

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

@media (prefers-reduced-motion: reduce) {
  body.luma-product-detail-page .luma-rising-bubbles span {
    animation: none;
  }

  body.luma-product-detail-page .luma-mode-card,
  body.luma-product-detail-page .luma-mode-card-rail,
  body.luma-product-detail-page .luma-finish-option-image img {
    transition: none;
  }

  body.luma-product-detail-page .luma-mode-card {
    animation: none;
  }
}


/* LumaGlow product detail visual corrections */
body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section {
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-page {
  padding-bottom: 0;
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section {
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section::before {
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
  mask-image: none;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section::after {
  bottom: -12rem;
  height: 30rem;
  background: radial-gradient(circle at center, rgba(161, 110, 255, 0.24), transparent 56%);
  filter: blur(64px);
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-hero {
  padding: 1.5rem 0 clamp(4rem, 7vw, 6.5rem);
}

body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage {
  align-items: flex-start;
  padding-top: 5.2rem;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage > .luma-detail-container {
  min-height: calc(100svh - 5.2rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage-heading {
  padding-top: 0;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage-grid {
  align-items: start;
  min-height: auto;
  padding-block: clamp(1.4rem, 3svh, 2.35rem) clamp(2rem, 4svh, 3rem);
  transform: none;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-shell {
  align-self: start;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window,
body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card-viewport {
  align-self: start;
  height: clamp(25rem, 54svh, 34rem);
  min-height: 0;
  max-height: 34rem;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-steps-section {
  padding: 0 0 clamp(5.5rem, 8vw, 7rem);
}

@media (max-width: 1060px) {
  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage-grid {
    min-height: auto;
    transform: none;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window,
  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card-viewport {
    height: clamp(22rem, 50svh, 30rem);
    min-height: 0;
    max-height: 30rem;
  }
}

@media (max-width: 820px) {
  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage {
    position: relative;
    min-height: auto;
    padding: 3rem 0;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage > .luma-detail-container {
    min-height: 0;
    display: block;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage-grid {
    padding-block: 1.25rem 0;
    transform: none;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window {
    height: auto;
    min-height: 18rem;
    max-height: none;
    aspect-ratio: 1.16 / 1;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card-viewport {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}


/* LumaGlow steady storefront background */
body.luma-product-detail-page.home-v2-storefront-page {
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body.luma-product-detail-page.home-v2-storefront-page::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 78%);
}

body.luma-product-detail-page.home-v2-storefront-page::after {
  background: none;
  opacity: 0;
}

body.luma-product-detail-page.home-v2-storefront-page .section.product-page-section,
body.luma-product-detail-page.home-v2-storefront-page .luma-detail-page,
body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section,
body.luma-product-detail-page.home-v2-storefront-page .luma-detail-hero,
body.luma-product-detail-page.home-v2-storefront-page .luma-mode-runway,
body.luma-product-detail-page.home-v2-storefront-page .luma-sports-section {
  background: transparent;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section::before {
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.085) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  mask-image: none;
}

body.luma-product-detail-page.home-v2-storefront-page .luma-detail-section::after {
  background: none;
  opacity: 0;
}

body.luma-product-detail-page .luma-rising-bubbles {
  opacity: 0.34;
}

body.luma-product-detail-page .luma-rising-bubbles span {
  background: rgba(198, 181, 255, 0.38);
  box-shadow:
    0 0 18px rgba(198, 181, 255, 0.34),
    0 0 42px rgba(124, 96, 255, 0.18);
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(6) {
  --bubble-left: 74%;
  --bubble-size: 0.78rem;
  --bubble-duration: 23s;
  --bubble-delay: -18s;
  --bubble-drift: -2rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(7) {
  --bubble-left: 34%;
  --bubble-size: 0.48rem;
  --bubble-duration: 17s;
  --bubble-delay: -11s;
  --bubble-drift: 1.4rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(8) {
  --bubble-left: 96%;
  --bubble-size: 0.34rem;
  --bubble-duration: 13s;
  --bubble-delay: -10s;
  --bubble-drift: -0.8rem;
}

body.luma-product-detail-page .luma-rising-bubbles span:nth-child(9) {
  --bubble-left: 58%;
  --bubble-size: 1rem;
  --bubble-duration: 25s;
  --bubble-delay: -20s;
  --bubble-drift: 2.2rem;
}


/* Custom Logo Light Box product detail */
body.lightbox-product-detail-page.home-v2-storefront-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(174, 100, 255, 0.22), transparent 27%),
    radial-gradient(circle at 78% 18%, rgba(108, 91, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0c0d18 0%, #070811 46%, #03040a 100%);
}

body.lightbox-product-detail-page.home-v2-storefront-page::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 78%);
}

body.lightbox-product-detail-page.home-v2-storefront-page::after {
  background:
    radial-gradient(circle at top left, rgba(169, 120, 255, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(88, 42, 186, 0.26), transparent 36%);
}

body.lightbox-product-detail-page.home-v2-storefront-page .section.product-page-section {
  padding: 0;
  background: transparent;
}

body.lightbox-product-detail-page.home-v2-storefront-page .section.product-page-section::before {
  display: none;
}

body.lightbox-product-detail-page.home-v2-storefront-page .section.product-page-section > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.lightbox-product-detail-page .lightbox-detail-page {
  --lightbox-ink: #111319;
  --lightbox-paper: #f6f3ec;
  --lightbox-violet: #d9c8ff;
  position: relative;
  overflow: clip;
  color: rgba(248, 247, 252, 0.98);
  font-family: var(--home-v2-font-body);
}

body.lightbox-product-detail-page .lightbox-container {
  width: min(1440px, calc(100% - clamp(2rem, 5vw, 5rem)));
  margin-inline: auto;
}

body.lightbox-product-detail-page .lightbox-section {
  position: relative;
  isolation: isolate;
}

body.lightbox-product-detail-page .lightbox-hero {
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(188, 132, 255, 0.25), transparent 32%),
    radial-gradient(circle at 82% 4%, rgba(112, 101, 255, 0.18), transparent 28%),
    transparent;
}

body.lightbox-product-detail-page .lightbox-hero::before,
body.lightbox-product-detail-page .lightbox-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.26;
}

body.lightbox-product-detail-page .lightbox-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

body.lightbox-product-detail-page .lightbox-back-link:hover {
  color: #fff;
}

body.lightbox-product-detail-page .lightbox-hero-grid {
  display: grid;
  width: min(100%, 1280px);
  margin-inline: auto;
  grid-template-columns: minmax(29rem, 0.94fr) minmax(0, 1fr);
  gap: clamp(2rem, 3.6vw, 3.5rem);
  align-items: center;
  transform: translateX(clamp(-0.7rem, -0.48vw, -0.25rem));
}

body.lightbox-product-detail-page .lightbox-hero-copy {
  display: grid;
  max-width: 40rem;
  gap: 1.35rem;
  justify-self: start;
}

body.lightbox-product-detail-page .lightbox-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 17, 24, 0.72);
  padding: 0.42rem 0.72rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

body.lightbox-product-detail-page .lightbox-eyebrow-light {
  border-color: rgba(17, 19, 25, 0.12);
  background: transparent;
  color: #6d6378;
}

body.lightbox-product-detail-page .lightbox-hero-copy h1 {
  max-width: min(100%, 13.5ch);
  margin: 0;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(4.15rem, 6.75vw, 7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

body.lightbox-product-detail-page .lightbox-hero-lede {
  max-width: min(100%, 18ch);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

body.lightbox-product-detail-page .lightbox-hero-text {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.lightbox-product-detail-page .lightbox-hero-actions,
body.lightbox-product-detail-page .lightbox-final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

body.lightbox-product-detail-page .lightbox-primary-action,
body.lightbox-product-detail-page .lightbox-secondary-action {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

body.lightbox-product-detail-page .lightbox-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.lightbox-product-detail-page .lightbox-trust-row,
body.lightbox-product-detail-page .lightbox-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

body.lightbox-product-detail-page .lightbox-trust-row span,
body.lightbox-product-detail-page .lightbox-spec-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  padding: 0.5rem 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

body.lightbox-product-detail-page .lightbox-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9.5rem, 0.39fr);
  gap: clamp(1.1rem, 1.5vw, 1.35rem);
  align-items: stretch;
}

body.lightbox-product-detail-page .lightbox-hero-stack {
  display: grid;
  gap: 1rem;
}

body.lightbox-product-detail-page .lightbox-image-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background: #121118;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 70px rgba(2, 3, 7, 0.52);
}

body.lightbox-product-detail-page .lightbox-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at top, rgba(170, 147, 255, 0.14), transparent 40%);
}

body.lightbox-product-detail-page .lightbox-image-frame > img,
body.lightbox-product-detail-page .lightbox-image-frame > video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: center center;
  transition: transform 420ms ease, filter 420ms ease;
}

body.lightbox-product-detail-page .lightbox-image-frame:hover > img,
body.lightbox-product-detail-page .lightbox-image-frame:hover > video,
body.lightbox-product-detail-page .lightbox-use-card:hover .lightbox-image-frame > img,
body.lightbox-product-detail-page .lightbox-use-card:hover .lightbox-image-frame > video {
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(calc(var(--image-scale, 1) * 1.035));
}

body.lightbox-product-detail-page .lightbox-hero-main {
  min-height: 34rem;
  aspect-ratio: 0.92 / 1;
  border-radius: 2.1rem;
}

body.lightbox-product-detail-page .lightbox-hero-small {
  min-height: 16.5rem;
  aspect-ratio: 1.04 / 1;
}

body.lightbox-product-detail-page .lightbox-use-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: var(--lightbox-paper);
  color: var(--lightbox-ink);
}

body.lightbox-product-detail-page .lightbox-section-heading h2,
body.lightbox-product-detail-page .lightbox-order-heading h2,
body.lightbox-product-detail-page .lightbox-final-cta h2 {
  margin: 1rem 0 0;
  font-family: var(--home-v2-font-display);
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

body.lightbox-product-detail-page .lightbox-section-heading h2 {
  max-width: min(100%, 20ch);
}

body.lightbox-product-detail-page .lightbox-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

body.lightbox-product-detail-page .lightbox-use-card {
  display: grid;
  gap: 1rem;
  color: var(--lightbox-ink);
}

body.lightbox-product-detail-page .lightbox-use-image {
  min-height: 18rem;
  aspect-ratio: 1.08 / 1;
  border-color: rgba(17, 19, 25, 0.1);
  box-shadow: 0 24px 70px rgba(17, 19, 25, 0.12);
}

body.lightbox-product-detail-page .lightbox-use-card h3,
body.lightbox-product-detail-page .lightbox-step h3 {
  margin: 0;
  color: currentColor;
  font-size: 1.25rem;
  letter-spacing: 0;
}

body.lightbox-product-detail-page .lightbox-use-card p,
body.lightbox-product-detail-page .lightbox-step p {
  margin: 0.65rem 0 0;
  color: rgba(17, 19, 25, 0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}

body.lightbox-product-detail-page .lightbox-process-section {
  overflow: hidden;
  padding: clamp(4rem, 6vw, 6rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(188, 132, 255, 0.22), transparent 32%),
    radial-gradient(circle at 92% 46%, rgba(196, 150, 255, 0.1), transparent 30%),
    transparent;
}

body.lightbox-product-detail-page .lightbox-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

body.lightbox-product-detail-page .lightbox-step-grid {
  display: grid;
  gap: 1rem;
}

body.lightbox-product-detail-page .lightbox-step {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.25rem;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.lightbox-product-detail-page .lightbox-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
}

body.lightbox-product-detail-page .lightbox-step > * {
  position: relative;
  z-index: 1;
}

body.lightbox-product-detail-page .lightbox-step-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eee5ff;
}

body.lightbox-product-detail-page .lightbox-step-number {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--home-v2-font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

body.lightbox-product-detail-page .lightbox-step h3 {
  margin-top: 1.15rem;
}

body.lightbox-product-detail-page .lightbox-step p {
  color: rgba(255, 255, 255, 0.58);
}

body.lightbox-order-open {
  overflow: hidden;
}

body.home-v2-storefront-page.lightbox-order-open main {
  z-index: 400;
}

body.home-v2-storefront-page.lightbox-order-open .footer {
  z-index: 0;
}

body.lightbox-product-detail-page.lightbox-order-open .lightbox-detail-page {
  overflow: visible;
}

body.lightbox-product-detail-page .lightbox-order-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(0.75rem, 1.6vw, 1.25rem);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(24px) saturate(130%);
}

body.lightbox-product-detail-page .lightbox-order-overlay[hidden] {
  display: none;
}

body.lightbox-product-detail-page .lightbox-order-modal {
  position: relative;
  width: min(88rem, calc(100vw - clamp(1rem, 3.2vw, 2.5rem)));
  max-height: calc(100dvh - clamp(1rem, 3.2vw, 2.5rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 8%, rgba(174, 100, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(9, 11, 18, 0.98), rgba(4, 5, 10, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.62);
}

body.lightbox-product-detail-page .lightbox-order-modal .lightbox-container {
  width: 100%;
}

body.lightbox-product-detail-page .lightbox-order-modal .lightbox-order-grid {
  max-height: inherit;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(0.85rem, 1.8vw, 1.4rem);
}

body.lightbox-product-detail-page .lightbox-funnel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  margin: 0;
  backdrop-filter: blur(18px);
}

body.lightbox-product-detail-page .lightbox-funnel-close:hover,
body.lightbox-product-detail-page .lightbox-funnel-close:focus-visible {
  color: #fff;
  border-color: rgba(224, 214, 255, 0.42);
}

body.lightbox-product-detail-page .lightbox-order-modal .lightbox-order-gallery {
  position: relative;
  top: auto;
  min-height: 0;
}

body.lightbox-product-detail-page .lightbox-order-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: #07070b;
}

body.lightbox-product-detail-page .lightbox-order-grid {
  display: grid;
  grid-template-columns: minmax(24rem, 0.92fr) minmax(30rem, 1.08fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

body.lightbox-product-detail-page .lightbox-order-gallery {
  position: sticky;
  top: 5.5rem;
}

body.lightbox-product-detail-page .lightbox-order-panel {
  position: relative;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(19, 21, 32, 0.78) 0%, rgba(9, 11, 18, 0.88) 100%);
  padding: clamp(0.95rem, 1.6vw, 1.35rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(30px) saturate(150%);
}

body.lightbox-product-detail-page .lightbox-order-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(rgba(190, 156, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.5;
}

body.lightbox-product-detail-page .lightbox-order-panel > * {
  position: relative;
  z-index: 1;
}

body.lightbox-product-detail-page .lightbox-order-heading h2 {
  max-width: min(100%, 16ch);
  color: #fff;
  font-size: clamp(2.15rem, 3.25vw, 3.45rem);
}

body.lightbox-product-detail-page .lightbox-order-price {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

body.lightbox-product-detail-page .lightbox-order-panel .lightbox-highlight-list,
body.lightbox-product-detail-page .lightbox-order-panel .lightbox-spec-row {
  display: none;
}

body.lightbox-product-detail-page .lightbox-highlight-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

body.lightbox-product-detail-page .lightbox-highlight-list li {
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.42;
}

body.lightbox-product-detail-page .lightbox-highlight-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--lightbox-violet);
  box-shadow: 0 0 20px rgba(217, 200, 255, 0.55);
}

body.lightbox-product-detail-page .lightbox-spec-row {
  margin-top: 0.85rem;
}

body.lightbox-product-detail-page .lightbox-order-panel .product-detail-buybox {
  margin-top: 0.9rem;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.lightbox-product-detail-page .lightbox-order-panel .product-detail-buybox::before {
  display: none;
}

body.lightbox-product-detail-page .lightbox-order-panel .product-detail-form {
  gap: 0.7rem;
}

body.lightbox-product-detail-page .lightbox-order-panel .product-size-button,
body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone,
body.lightbox-product-detail-page .lightbox-order-panel .artwork-selection,
body.lightbox-product-detail-page .lightbox-order-panel .field textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

body.lightbox-product-detail-page .lightbox-order-panel .product-size-button {
  padding: 0.7rem 0.85rem;
}

body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone {
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
}

body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone-copy,
body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone-meta,
body.lightbox-product-detail-page .lightbox-order-panel .field-helper {
  line-height: 1.35;
}

body.lightbox-product-detail-page .lightbox-order-panel .field textarea {
  min-height: 5rem;
  resize: vertical;
}

body.lightbox-product-detail-page .lightbox-order-panel .product-size-button:hover,
body.lightbox-product-detail-page .lightbox-order-panel .product-size-button.is-active,
body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone:hover,
body.lightbox-product-detail-page .lightbox-order-panel .artwork-dropzone.is-dragover {
  border-color: rgba(224, 214, 255, 0.5);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 20px 55px rgba(134, 103, 255, 0.16);
}

body.lightbox-product-detail-page .lightbox-order-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 0.9rem;
}

body.lightbox-product-detail-page.home-v2-storefront-page .lightbox-order-panel .lightbox-order-actions {
  position: static;
  bottom: auto;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.lightbox-product-detail-page .lightbox-order-actions .qty-control,
body.lightbox-product-detail-page .lightbox-order-actions .button,
body.lightbox-product-detail-page .lightbox-order-actions .button-secondary {
  min-height: 3.1rem;
}

body.lightbox-product-detail-page .lightbox-order-actions .qty-control {
  border-radius: 999px;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-panel {
  height: 100%;
  padding: clamp(0.65rem, 1vw, 0.95rem);
  border-radius: 1.45rem;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-layout {
  grid-template-columns: minmax(3.25rem, 4rem) minmax(0, 1fr);
  gap: 0.7rem;
  height: 100%;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-stage,
body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-shell,
body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-track,
body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-slide,
body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-image-window {
  min-height: 0;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-image-window {
  height: min(54svh, 31rem);
  max-height: calc(100dvh - 8rem);
}

body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-slide img {
  height: 100%;
  aspect-ratio: auto;
}

body.lightbox-product-detail-page .lightbox-final-section {
  overflow: hidden;
  padding: clamp(4rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 7rem);
  background: var(--lightbox-paper);
  color: var(--lightbox-ink);
}

body.lightbox-product-detail-page .lightbox-final-section::before {
  display: none;
  background-image: none;
  opacity: 0;
}

body.lightbox-product-detail-page .lightbox-final-section .lightbox-eyebrow {
  border-color: rgba(17, 19, 25, 0.12);
  background: transparent;
  color: #6d6378;
}

body.lightbox-product-detail-page .lightbox-final-cta {
  justify-content: space-between;
  border-top: 1px solid rgba(17, 19, 25, 0.12);
  padding-top: clamp(2rem, 4vw, 3rem);
}

body.lightbox-product-detail-page .lightbox-final-cta h2 {
  max-width: 13ch;
  color: var(--lightbox-ink);
}

@media (max-width: 1060px) {
  body.lightbox-product-detail-page .lightbox-hero-grid,
  body.lightbox-product-detail-page .lightbox-process-grid,
  body.lightbox-product-detail-page .lightbox-order-grid {
    grid-template-columns: minmax(0, 1fr);
    transform: none;
  }

  body.lightbox-product-detail-page .lightbox-hero-copy {
    max-width: none;
  }

  body.lightbox-product-detail-page .lightbox-order-gallery {
    position: relative;
    top: auto;
  }

  body.lightbox-product-detail-page .lightbox-order-overlay {
    align-items: flex-start;
  }

  body.lightbox-product-detail-page .lightbox-order-modal,
  body.lightbox-product-detail-page .lightbox-order-modal .lightbox-order-grid {
    max-height: none;
    overflow: visible;
  }

  body.lightbox-product-detail-page .lightbox-order-panel {
    overflow: visible;
  }
}

@media (max-width: 820px) {
  body.lightbox-product-detail-page.home-v2-storefront-page {
    overflow-x: hidden;
  }

  body.lightbox-product-detail-page .lightbox-container {
    width: min(100% - 1.25rem, 100%);
  }

  body.lightbox-product-detail-page .lightbox-hero {
    padding: 1.25rem 0 3rem;
  }

  body.lightbox-product-detail-page .lightbox-use-section,
  body.lightbox-product-detail-page .lightbox-process-section,
  body.lightbox-product-detail-page .lightbox-order-section,
  body.lightbox-product-detail-page .lightbox-final-section {
    padding: 3rem 0;
  }

  body.lightbox-product-detail-page .lightbox-detail-page,
  body.lightbox-product-detail-page .lightbox-section,
  body.lightbox-product-detail-page .lightbox-hero-grid,
  body.lightbox-product-detail-page .lightbox-hero-copy,
  body.lightbox-product-detail-page .lightbox-hero-media,
  body.lightbox-product-detail-page .lightbox-order-modal,
  body.lightbox-product-detail-page .lightbox-order-panel,
  body.lightbox-product-detail-page .product-gallery-panel,
  body.lightbox-product-detail-page .product-gallery-layout,
  body.lightbox-product-detail-page .product-gallery-stage,
  body.lightbox-product-detail-page .product-gallery-track {
    max-width: 100%;
    min-width: 0;
  }

  body.lightbox-product-detail-page .lightbox-hero-media,
  body.lightbox-product-detail-page .lightbox-use-grid,
  body.lightbox-product-detail-page .lightbox-order-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  body.lightbox-product-detail-page .lightbox-hero-copy {
    gap: 1rem;
  }

  body.lightbox-product-detail-page .lightbox-hero-actions {
    gap: 0.65rem;
  }

  body.lightbox-product-detail-page .lightbox-order-overlay {
    align-items: flex-start;
    padding: 0.75rem;
  }

  body.lightbox-product-detail-page .lightbox-order-modal {
    width: min(100%, calc(100vw - 1.5rem));
    max-height: none;
    border-radius: 1.45rem;
  }

  body.lightbox-product-detail-page .lightbox-order-modal .lightbox-order-grid {
    padding: 0.75rem;
  }

  body.lightbox-product-detail-page .lightbox-order-panel .field textarea {
    min-height: 8rem;
  }

  body.lightbox-product-detail-page .lightbox-funnel-close {
    top: 0.75rem;
  }

  body.lightbox-product-detail-page .lightbox-hero-stack {
    display: none;
  }

  body.lightbox-product-detail-page .lightbox-hero-main {
    min-height: 18rem;
    border-radius: 1.45rem;
  }

  body.lightbox-product-detail-page .lightbox-section-heading h2,
  body.lightbox-product-detail-page .lightbox-order-heading h2,
  body.lightbox-product-detail-page .lightbox-final-cta h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.65rem);
    line-height: 1.04;
  }

  body.lightbox-product-detail-page .lightbox-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  body.lightbox-product-detail-page .lightbox-hero-lede {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  body.lightbox-product-detail-page .lightbox-hero-text {
    width: auto;
    max-width: min(100%, 23rem);
    font-size: 0.98rem;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  body.lightbox-product-detail-page .lightbox-primary-action,
  body.lightbox-product-detail-page .lightbox-secondary-action {
    width: 100%;
    max-width: 100%;
    min-height: 2.75rem;
    padding-inline: 1rem;
    white-space: normal;
    text-align: center;
  }

  body.lightbox-product-detail-page .lightbox-trust-row,
  body.lightbox-product-detail-page .lightbox-spec-row {
    display: flex;
    gap: 0.45rem;
  }

  body.lightbox-product-detail-page .lightbox-trust-row span,
  body.lightbox-product-detail-page .lightbox-spec-row span {
    width: auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 0.42rem 0.62rem;
    font-size: 0.78rem;
  }

  body.lightbox-product-detail-page .lightbox-use-grid {
    gap: 1.35rem;
  }

  body.lightbox-product-detail-page .lightbox-use-image {
    min-height: 15rem;
    border-radius: 1.2rem;
  }

  body.lightbox-product-detail-page .lightbox-step {
    border-radius: 1rem;
    padding: 1rem;
  }

  body.lightbox-product-detail-page .lightbox-step-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  body.lightbox-product-detail-page .lightbox-step-number {
    font-size: 3rem;
  }

  body.lightbox-product-detail-page .lightbox-order-modal .product-gallery-image-window {
    aspect-ratio: 1 / 0.82;
    max-height: min(52svh, 22rem);
  }

  body.lightbox-product-detail-page .lightbox-final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    padding-top: 1.5rem;
  }

  body.lightbox-product-detail-page .lightbox-final-cta h2 {
    max-width: min(100%, 14ch);
  }
}

@media (max-width: 520px) {
  body.lightbox-product-detail-page .lightbox-container {
    width: min(100% - 1rem, 100%);
  }

  body.lightbox-product-detail-page .lightbox-hero {
    padding-top: 1rem;
  }

  body.lightbox-product-detail-page .lightbox-hero-copy h1 {
    font-size: clamp(2.2rem, 11.2vw, 2.95rem);
  }

  body.lightbox-product-detail-page .lightbox-hero-actions {
    align-items: flex-start;
  }

  body.lightbox-product-detail-page .lightbox-primary-action,
  body.lightbox-product-detail-page .lightbox-secondary-action {
    width: auto;
    max-width: 100%;
  }

  body.lightbox-product-detail-page .lightbox-section-heading h2,
  body.lightbox-product-detail-page .lightbox-order-heading h2,
  body.lightbox-product-detail-page .lightbox-final-cta h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  body.lightbox-product-detail-page .lightbox-hero-main {
    min-height: 14.75rem;
  }

  body.lightbox-product-detail-page .lightbox-trust-row {
    display: none;
  }

  body.lightbox-product-detail-page .lightbox-use-image {
    min-height: 12.75rem;
  }

  body.lightbox-product-detail-page .lightbox-order-modal,
  body.lightbox-product-detail-page .lightbox-order-panel {
    border-radius: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.lightbox-product-detail-page .lightbox-image-frame > img,
  body.lightbox-product-detail-page .lightbox-image-frame > video {
    transition: none;
  }
}




/* Mobile product listing/detail cleanup: desktop rules stay unchanged. */
@media (max-width: 820px) {
  body[data-site-page="shop"].home-v2-storefront-page .product-card-preview-strip {
    display: none !important;
  }

  body[data-site-page="shop"].home-v2-storefront-page .product-listing-link {
    gap: 0.72rem;
  }

  body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window {
    min-height: clamp(13.5rem, 58vw, 15.25rem);
    aspect-ratio: 1 / 0.78;
  }

  body[data-site-page="shop"].home-v2-storefront-page .product-card-media .media-frame-window > img {
    height: 100%;
    object-fit: cover;
  }

  body.luma-product-detail-page .luma-detail-hero-grid {
    gap: 1rem;
  }

  body.luma-product-detail-page .luma-hero-copy {
    order: -1;
  }

  body.luma-product-detail-page .luma-hero-media {
    order: 0;
  }

  body.luma-product-detail-page .luma-hero-primary {
    aspect-ratio: 1 / 0.82;
    min-height: 0;
    max-height: 21rem;
  }

  body.luma-product-detail-page .luma-hero-primary img {
    height: 100%;
    object-fit: cover;
  }

  body.luma-product-detail-page .luma-sticky-cart-grid {
    grid-template-columns: minmax(0, 1fr) minmax(6.2rem, auto);
  }

  body.luma-product-detail-page .luma-finish-trigger,
  body.luma-product-detail-page .luma-sticky-buy {
    min-width: 0;
  }

  body.luma-product-detail-page .luma-sticky-buy {
    padding-inline: 0.85rem;
  }

  body.lightbox-product-detail-page .lightbox-hero-copy h1 {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
}

@media (max-width: 520px) {
  body.luma-product-detail-page .luma-hero-primary {
    aspect-ratio: 1 / 0.82;
    min-height: 0;
    max-height: 18.5rem;
  }
}

/* Simple product photo grids for LumaGlow and Light Box listings */
body.luma-product-detail-page .luma-photo-gallery-section,
body.lightbox-product-detail-page .lightbox-photo-gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 5.6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(174, 100, 255, 0.2), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(108, 91, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #040408 0%, #0b0a12 42%, #07070b 100%);
}

body.lightbox-product-detail-page .lightbox-photo-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 72%, rgba(217, 200, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(124, 96, 255, 0.16), transparent 26%);
}

body.luma-product-detail-page .luma-photo-gallery-shell,
body.lightbox-product-detail-page .lightbox-photo-gallery-shell,
body.luma-product-detail-page .product-photo-gallery,
body.lightbox-product-detail-page .product-photo-gallery {
  position: relative;
  z-index: 1;
}

body.luma-product-detail-page .product-photo-gallery-grid,
body.lightbox-product-detail-page .product-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.72rem, 1.35vw, 1.15rem);
}

body.luma-product-detail-page .product-photo-gallery-item,
body.lightbox-product-detail-page .product-photo-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.05rem;
  background: rgba(18, 17, 24, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(2, 3, 7, 0.38);
}

body.luma-product-detail-page .product-photo-gallery-item img,
body.luma-product-detail-page .product-photo-gallery-item video,
body.lightbox-product-detail-page .product-photo-gallery-item img,
body.lightbox-product-detail-page .product-photo-gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: none !important;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-photo-gallery {
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding-right: 0.1rem;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-photo-gallery-grid {
  gap: 0.65rem;
}

body.lightbox-product-detail-page .lightbox-order-modal .product-photo-gallery-item {
  border-radius: 0.85rem;
}

@media (max-width: 820px) {
  body.luma-product-detail-page .luma-photo-gallery-section,
  body.lightbox-product-detail-page .lightbox-photo-gallery-section {
    padding: 2.75rem 0;
  }

  body.luma-product-detail-page .product-photo-gallery-grid,
  body.lightbox-product-detail-page .product-photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.68rem;
  }
}

/* LumaGlow product fit pass: keep the first viewport and mode runway clear of the sticky buy bar. */
@media (min-width: 1061px) {
  body.luma-product-detail-page.home-v2-storefront-page .luma-detail-hero {
    min-height: auto;
    padding: clamp(1.15rem, 1.85svh, 1.65rem) 0;
  }

  body.luma-product-detail-page .luma-back-link {
    margin-bottom: clamp(0.65rem, 1.2svh, 1rem);
  }

  body.luma-product-detail-page .luma-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(31rem, 0.92fr);
    gap: clamp(1.5rem, 2.8vw, 2.6rem);
  }

  body.luma-product-detail-page .luma-hero-copy {
    max-width: 46rem;
    gap: clamp(0.92rem, 1.45vw, 1.28rem);
  }

  body.luma-product-detail-page .luma-hero-copy h1 {
    max-width: none;
    font-size: clamp(3.88rem, 5.28vw, 6.08rem);
    line-height: 0.94;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  body.luma-product-detail-page .luma-hero-lede {
    max-width: 21ch;
    font-size: clamp(1.65rem, 2.4vw, 2.5rem);
    line-height: 1.08;
  }

  body.luma-product-detail-page .luma-hero-copy-text {
    max-width: 36rem;
    font-size: 1.04rem;
    line-height: 1.6;
  }

  body.luma-product-detail-page .luma-hero-primary {
    min-height: clamp(27rem, 54svh, 34rem);
  }

  body.luma-product-detail-page .luma-hero-primary img {
    object-position: var(--image-object-x, 50%) var(--image-object-y, 58%);
    transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(calc(var(--image-scale, 1) * 1.08));
    transform-origin: var(--image-object-x, 50%) var(--image-object-y, 58%);
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage {
    padding-top: 2.85rem;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage > .luma-detail-container {
    min-height: calc(100svh - 4.25rem);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  body.luma-product-detail-page .luma-mode-stage-heading {
    margin-bottom: clamp(1.15rem, 2.35svh, 1.9rem);
  }

  body.luma-product-detail-page .luma-mode-heading-row {
    display: block;
    margin-top: 0.72rem;
  }

  body.luma-product-detail-page .luma-mode-heading-row h2 {
    font-size: clamp(2.65rem, 4.6vw, 5rem);
    line-height: 0.96;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  body.luma-product-detail-page .luma-mode-heading-row p {
    max-width: 31rem;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-stage-grid {
    width: min(100%, 1260px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.94fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.7rem);
    padding-block: clamp(1rem, 2svh, 1.65rem) clamp(4.35rem, 6svh, 5.25rem);
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window,
  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card-viewport {
    height: clamp(25rem, 52svh, 33rem);
    max-height: 33rem;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window img[data-luma-mode-image] {
    object-position: var(--image-object-x, 50%) var(--image-object-y, 58%);
    filter: brightness(1.04) contrast(0.96) saturate(0.96);
    transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(calc(var(--image-scale, 1) * 1.14));
    transform-origin: var(--image-object-x, 50%) var(--image-object-y, 58%);
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-sticky-device-window img[data-luma-mode-image].is-switching {
    transform: translate(var(--image-pan-x, 0%), calc(var(--image-pan-y, 0%) - 0.22rem)) scale(calc(var(--image-scale, 1) * 1.13));
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card-viewport {
    mask-image: linear-gradient(180deg, black 0%, black 76%, rgba(0, 0, 0, 0.68) 91%, transparent 100%);
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card {
    transition:
      border-color 260ms ease,
      background-color 260ms ease,
      box-shadow 360ms ease,
      filter 260ms ease;
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card.is-muted {
    filter: blur(2.6px);
  }

  body.luma-product-detail-page.home-v2-storefront-page .luma-mode-card.is-active {
    filter: none;
  }

  body.luma-product-detail-page .luma-mode-card {
    min-height: clamp(14.5rem, 24svh, 16.6rem);
    padding: clamp(1rem, 1.6vw, 1.35rem);
  }

  body.luma-product-detail-page .luma-mode-card-copy strong {
    font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  }

  body.luma-product-detail-page .luma-mode-card-copy > span:not(.luma-mode-eyebrow):not(.luma-mode-point-row) {
    margin-top: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body.luma-product-detail-page .luma-mode-point-row {
    margin-top: 1rem;
  }
}

@media (min-width: 1061px) and (max-width: 1320px) {
  body.luma-product-detail-page .luma-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.86fr);
  }

  body.luma-product-detail-page .luma-hero-copy h1 {
    font-size: clamp(3.48rem, 4.66vw, 4.88rem);
  }
}


/* Contact page polish */
body[data-site-page="contact"] {
  --contact-text: rgba(249, 247, 255, 0.98);
  --contact-muted: rgba(228, 222, 244, 0.68);
  --contact-soft: rgba(228, 222, 244, 0.48);
  --contact-line: rgba(233, 223, 255, 0.13);
  --contact-line-strong: rgba(233, 223, 255, 0.22);
  --contact-panel: linear-gradient(180deg, rgba(18, 19, 30, 0.82), rgba(7, 8, 14, 0.9));
  --contact-panel-strong: linear-gradient(180deg, rgba(22, 22, 34, 0.94), rgba(8, 8, 14, 0.97));
  --contact-accent: #d7c2ff;
  --contact-accent-strong: #a678ff;
  font-family: var(--font-body);
  color: var(--contact-text);
  background:
    radial-gradient(circle at top, rgba(123, 95, 220, 0.16), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(62, 83, 167, 0.12), transparent 22%),
    linear-gradient(180deg, #090a12 0%, #05060c 42%, #020308 100%);
}

body[data-site-page="contact"]::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 78%);
}

body[data-site-page="contact"] .contact-page-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body[data-site-page="contact"] .contact-page-main::before,
body[data-site-page="contact"] .contact-page-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body[data-site-page="contact"] .contact-page-main::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(190, 156, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58) 58%, transparent 100%);
}

body[data-site-page="contact"] .contact-page-main::after {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(73, 38, 152, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.18), transparent 36%);
}

body[data-site-page="contact"] .contact-page-hero,
body[data-site-page="contact"] .contact-notes-section,
body[data-site-page="contact"] .contact-path-section {
  position: relative;
  z-index: 1;
}

body[data-site-page="contact"] .seo-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

body[data-site-page="contact"] .seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  color: rgba(232, 227, 247, 0.56);
  font-size: 0.86rem;
  line-height: 1.4;
}

body[data-site-page="contact"] .seo-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

body[data-site-page="contact"] .seo-breadcrumbs a:hover {
  color: #fff;
}

body[data-site-page="contact"] .seo-kicker,
body[data-site-page="contact"] .contact-inquiry-pill,
body[data-site-page="contact"] .contact-page-proof-row dt,
body[data-site-page="contact"] .contact-notes-grid article > span {
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-site-page="contact"] .seo-kicker {
  margin: 0 0 1rem;
  color: var(--contact-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

body[data-site-page="contact"] h1,
body[data-site-page="contact"] h2,
body[data-site-page="contact"] h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

body[data-site-page="contact"] .contact-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 4.5rem 0 4.25rem;
}

body[data-site-page="contact"] .contact-page-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: transparent;
}

body[data-site-page="contact"] .contact-page-backdrop::before,
body[data-site-page="contact"] .contact-page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-site-page="contact"] .contact-page-backdrop::before {
  display: none;
}

body[data-site-page="contact"] .contact-page-backdrop::after {
  display: none;
}

body[data-site-page="contact"] .contact-page-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.82fr);
  gap: 3rem;
  align-items: center;
}

body[data-site-page="contact"] .contact-page-copy {
  max-width: 49rem;
}

body[data-site-page="contact"] .contact-page-copy h1 {
  max-width: 11ch;
  color: #fff;
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 0.96;
}

body[data-site-page="contact"] .contact-page-lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--contact-muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

body[data-site-page="contact"] .contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

body[data-site-page="contact"] .home-v2-cta,
body[data-site-page="contact"] .home-v2-form-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 224, 255, 0.2);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

body[data-site-page="contact"] .home-v2-cta {
  padding: 0.95rem 1.35rem;
  font-size: 0.96rem;
}

body[data-site-page="contact"] .home-v2-cta-primary,
body[data-site-page="contact"] .home-v2-form-button {
  background: linear-gradient(135deg, rgba(232, 101, 255, 0.98), rgba(153, 112, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 0 34px rgba(194, 107, 255, 0.28);
}

body[data-site-page="contact"] .home-v2-cta-secondary {
  border-color: rgba(223, 205, 255, 0.2);
  background: linear-gradient(180deg, rgba(66, 43, 110, 0.52), rgba(29, 20, 50, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 28px rgba(133, 97, 228, 0.14);
  backdrop-filter: blur(18px);
}

body[data-site-page="contact"] .home-v2-cta:hover,
body[data-site-page="contact"] .home-v2-form-button:hover,
body[data-site-page="contact"] .contact-link-list a:hover {
  transform: translateY(-2px);
}

body[data-site-page="contact"] .home-v2-cta:focus-visible,
body[data-site-page="contact"] .home-v2-form-button:focus-visible,
body[data-site-page="contact"] .contact-link-list a:focus-visible {
  outline: 2px solid rgba(215, 194, 255, 0.74);
  outline-offset: 4px;
}

body[data-site-page="contact"] .contact-page-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 57rem;
  margin: 2.2rem 0 0;
}

body[data-site-page="contact"] .contact-page-proof-row div {
  min-width: 0;
  padding: 1rem 1rem 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

body[data-site-page="contact"] .contact-page-proof-row dt {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

body[data-site-page="contact"] .contact-page-proof-row dd {
  margin: 0;
  color: rgba(232, 227, 247, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}

body[data-site-page="contact"] .contact-page-visual-strip {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

body[data-site-page="contact"] .contact-page-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  background: #080911;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

body[data-site-page="contact"] .contact-page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%, rgba(5, 5, 9, 0.32));
}

body[data-site-page="contact"] .contact-page-visual-large,
body[data-site-page="contact"] .contact-page-visual-small {
  width: min(20rem, calc(50% - 0.5rem));
  aspect-ratio: 1.1 / 1;
  transform: none;
}

body[data-site-page="contact"] .contact-page-visual :is(img, video) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-object-x, 50%) var(--image-object-y, 50%);
  transform: translate(var(--image-pan-x, 0%), var(--image-pan-y, 0%)) scale(var(--image-scale, 1));
  transform-origin: var(--image-object-x, 50%) var(--image-object-y, 50%);
}

body[data-site-page="contact"] .contact-inquiry-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--contact-line-strong);
  border-radius: 2rem;
  background: var(--contact-panel-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 36px 95px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(28px) saturate(145%);
}

body[data-site-page="contact"] .contact-inquiry-panel-glow,
body[data-site-page="contact"] .contact-inquiry-panel-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-site-page="contact"] .contact-inquiry-panel-glow {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(202, 128, 255, 0.24), transparent 30rem),
    radial-gradient(ellipse at 90% 80%, rgba(93, 77, 195, 0.2), transparent 24rem);
}

body[data-site-page="contact"] .contact-inquiry-panel-grid {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

body[data-site-page="contact"] .contact-inquiry-panel-inner {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}

body[data-site-page="contact"] .contact-inquiry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-site-page="contact"] .contact-inquiry-pill span:first-child {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 24px rgba(213, 182, 255, 0.78);
}

body[data-site-page="contact"] .contact-inquiry-panel h2 {
  max-width: 13ch;
  margin-top: 1.1rem;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.02;
}

body[data-site-page="contact"] .contact-inquiry-copy {
  max-width: 37ch;
  margin: 0.95rem 0 0;
  color: var(--contact-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

body[data-site-page="contact"] .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.55rem;
}

body[data-site-page="contact"] .home-v2-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.48rem;
}

body[data-site-page="contact"] .home-v2-field-full {
  grid-column: 1 / -1;
}

body[data-site-page="contact"] .home-v2-field label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

body[data-site-page="contact"] .home-v2-field input,
body[data-site-page="contact"] .home-v2-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  outline: none;
  padding: 0.92rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

body[data-site-page="contact"] .home-v2-field textarea {
  min-height: 11rem;
  resize: vertical;
  line-height: 1.55;
}

body[data-site-page="contact"] .home-v2-field input::placeholder,
body[data-site-page="contact"] .home-v2-field textarea::placeholder {
  color: rgba(232, 227, 247, 0.42);
}

body[data-site-page="contact"] .home-v2-field input:focus,
body[data-site-page="contact"] .home-v2-field textarea:focus {
  border-color: rgba(225, 202, 255, 0.36);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 3px rgba(188, 160, 255, 0.16);
}

body[data-site-page="contact"] .contact-field-helper {
  color: var(--contact-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-site-page="contact"] .home-v2-form-actions {
  margin: 0.15rem 0 0;
}

body[data-site-page="contact"] .home-v2-form-button {
  width: 100%;
  padding: 1rem 1.4rem;
  cursor: pointer;
  font-size: 0.98rem;
}

body[data-site-page="contact"] .home-v2-form-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

body[data-site-page="contact"] .status-box {
  margin-top: 1rem;
}

body[data-site-page="contact"] .contact-notes-section,
body[data-site-page="contact"] .contact-path-section {
  position: relative;
  padding: 4.2rem 0;
}

body[data-site-page="contact"] .contact-notes-section {
  border-top: 0;
  background: transparent;
}

body[data-site-page="contact"] .contact-section-heading,
body[data-site-page="contact"] .contact-path-copy {
  max-width: 48rem;
}

body[data-site-page="contact"] .contact-section-heading h2,
body[data-site-page="contact"] .contact-path-copy h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

body[data-site-page="contact"] .contact-section-heading p:not(.seo-kicker),
body[data-site-page="contact"] .contact-path-copy p:not(.seo-kicker) {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: var(--contact-muted);
  font-size: 1rem;
  line-height: 1.65;
}

body[data-site-page="contact"] .contact-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

body[data-site-page="contact"] .contact-notes-grid article {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: 1.25rem;
  border: 1px solid var(--contact-line);
  border-radius: 1.35rem;
  background: var(--contact-panel);
}

body[data-site-page="contact"] .contact-notes-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 44%);
}

body[data-site-page="contact"] .contact-notes-grid article > * {
  position: relative;
  z-index: 1;
}

body[data-site-page="contact"] .contact-notes-grid article > span {
  color: rgba(215, 194, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 900;
}

body[data-site-page="contact"] .contact-notes-grid h3 {
  margin-top: 3.2rem;
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.12;
}

body[data-site-page="contact"] .contact-notes-grid p {
  margin: 0.8rem 0 0;
  color: rgba(232, 227, 247, 0.64);
  font-size: 0.94rem;
  line-height: 1.62;
}

body[data-site-page="contact"] .contact-path-section {
  background: transparent;
}

body[data-site-page="contact"] .contact-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2.5rem;
  align-items: start;
}

body[data-site-page="contact"] .contact-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body[data-site-page="contact"] .contact-link-list a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--contact-line);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(18, 19, 30, 0.74), rgba(8, 8, 14, 0.86));
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

body[data-site-page="contact"] .contact-link-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(240, 190, 255, 0.18), transparent 52%);
  transition: opacity 180ms ease;
}

body[data-site-page="contact"] .contact-link-list a:hover,
body[data-site-page="contact"] .contact-link-list a:focus-visible {
  border-color: rgba(233, 223, 255, 0.22);
}

body[data-site-page="contact"] .contact-link-list a:hover::after,
body[data-site-page="contact"] .contact-link-list a:focus-visible::after {
  opacity: 1;
}

body[data-site-page="contact"] .contact-link-list span,
body[data-site-page="contact"] .contact-link-list small {
  position: relative;
  z-index: 1;
}

body[data-site-page="contact"] .contact-link-list span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
}

body[data-site-page="contact"] .contact-link-list small {
  color: var(--contact-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

body[data-site-page="contact"] .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

body[data-site-page="contact"] .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  body[data-site-page="contact"] .contact-page-hero {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
  }

  body[data-site-page="contact"] .contact-page-grid,
  body[data-site-page="contact"] .contact-path-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="contact"] .contact-page-copy {
    max-width: 100%;
  }

  body[data-site-page="contact"] .contact-page-copy h1 {
    max-width: 13ch;
    font-size: 3.8rem;
  }

  body[data-site-page="contact"] .contact-inquiry-panel {
    max-width: 46rem;
  }

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

@media (max-width: 720px) {
  body[data-site-page="contact"] .seo-container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.625rem;
  }

  body[data-site-page="contact"] .contact-page-hero {
    padding: 2.25rem 0 3.5rem;
  }

  body[data-site-page="contact"] .contact-page-grid {
    gap: 2rem;
  }

  body[data-site-page="contact"] .contact-page-copy h1 {
    font-size: 2.85rem;
    line-height: 1;
  }

  body[data-site-page="contact"] .contact-page-lead {
    font-size: 1rem;
  }

  body[data-site-page="contact"] .contact-page-actions,
  body[data-site-page="contact"] .contact-page-proof-row,
  body[data-site-page="contact"] .contact-form-grid,
  body[data-site-page="contact"] .contact-link-list {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="contact"] .contact-page-actions {
    display: grid;
  }

  body[data-site-page="contact"] .home-v2-cta {
    width: 100%;
  }

  body[data-site-page="contact"] .contact-page-visual-strip {
    gap: 0.65rem;
  }

  body[data-site-page="contact"] .contact-page-visual-large,
  body[data-site-page="contact"] .contact-page-visual-small {
    width: calc(50% - 0.325rem);
  }

  body[data-site-page="contact"] .contact-inquiry-panel {
    border-radius: 1.35rem;
  }

  body[data-site-page="contact"] .contact-inquiry-panel-inner {
    padding: 1rem;
  }

  body[data-site-page="contact"] .contact-inquiry-panel h2,
  body[data-site-page="contact"] .contact-section-heading h2,
  body[data-site-page="contact"] .contact-path-copy h2 {
    max-width: none;
    font-size: 2.2rem;
  }

  body[data-site-page="contact"] .contact-notes-section,
  body[data-site-page="contact"] .contact-path-section {
    padding: 3.5rem 0;
  }

  body[data-site-page="contact"] .contact-notes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="contact"] .contact-notes-grid article {
    min-height: 0;
  }

  body[data-site-page="contact"] .contact-notes-grid h3 {
    margin-top: 2rem;
  }
}

@media (max-width: 420px) {
  body[data-site-page="contact"] .contact-page-copy h1 {
    font-size: 2.45rem;
  }

  body[data-site-page="contact"] .contact-page-proof-row div,
  body[data-site-page="contact"] .contact-notes-grid article,
  body[data-site-page="contact"] .contact-link-list a {
    padding: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-site-page="contact"] .reveal,
  body[data-site-page="contact"] .reveal.is-visible,
  body[data-site-page="contact"] .home-v2-cta,
  body[data-site-page="contact"] .home-v2-form-button,
  body[data-site-page="contact"] .contact-link-list a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Contact page overflow refinements */
body[data-site-page="contact"] .contact-page-grid,
body[data-site-page="contact"] .contact-page-copy,
body[data-site-page="contact"] .contact-inquiry-panel,
body[data-site-page="contact"] .contact-section-heading,
body[data-site-page="contact"] .contact-path-copy,
body[data-site-page="contact"] .contact-link-list,
body[data-site-page="contact"] .contact-notes-grid {
  min-width: 0;
}

body[data-site-page="contact"] .contact-page-copy h1,
body[data-site-page="contact"] .contact-page-lead,
body[data-site-page="contact"] .contact-page-proof-row dd,
body[data-site-page="contact"] .contact-inquiry-copy,
body[data-site-page="contact"] .contact-field-helper,
body[data-site-page="contact"] .contact-notes-grid p,
body[data-site-page="contact"] .contact-link-list small {
  overflow-wrap: break-word;
}

@media (max-width: 720px) {
  body[data-site-page="contact"] .contact-page-visual-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    width: 100%;
  }

  body[data-site-page="contact"] .contact-page-visual-large,
  body[data-site-page="contact"] .contact-page-visual-small {
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}


/* Contact mobile viewport guard */
body[data-site-page="contact"] {
  overflow-x: hidden;
}

@media (max-width: 720px) {
  body[data-site-page="contact"] .contact-page-copy,
  body[data-site-page="contact"] .contact-page-actions,
  body[data-site-page="contact"] .contact-page-proof-row,
  body[data-site-page="contact"] .contact-page-visual-strip,
  body[data-site-page="contact"] .contact-inquiry-panel,
  body[data-site-page="contact"] .contact-section-heading,
  body[data-site-page="contact"] .contact-notes-grid,
  body[data-site-page="contact"] .contact-path-grid,
  body[data-site-page="contact"] .contact-link-list {
    width: calc(100vw - 1.25rem);
    max-width: calc(100vw - 1.25rem);
  }
}


/* Contact narrow-phone guard */
@media (max-width: 420px) {
  body[data-site-page="contact"] .seo-container {
    padding-inline: 0.625rem;
  }

  body[data-site-page="contact"] .contact-page-copy,
  body[data-site-page="contact"] .contact-page-actions,
  body[data-site-page="contact"] .contact-page-proof-row,
  body[data-site-page="contact"] .contact-page-visual-strip,
  body[data-site-page="contact"] .contact-inquiry-panel,
  body[data-site-page="contact"] .contact-section-heading,
  body[data-site-page="contact"] .contact-notes-grid,
  body[data-site-page="contact"] .contact-path-grid,
  body[data-site-page="contact"] .contact-link-list {
    width: 100%;
    max-width: 370px;
  }

  body[data-site-page="contact"] .contact-page-lead,
  body[data-site-page="contact"] .contact-section-heading p:not(.seo-kicker),
  body[data-site-page="contact"] .contact-path-copy p:not(.seo-kicker) {
    max-width: 36ch;
  }

  body[data-site-page="contact"] .contact-page-visual-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="contact"] .contact-page-visual-small {
    display: none;
  }

  body[data-site-page="contact"] .contact-inquiry-panel h2,
  body[data-site-page="contact"] .contact-section-heading h2,
  body[data-site-page="contact"] .contact-path-copy h2 {
    font-size: 1.95rem;
  }
}

/* Showroom homepage refresh */

body[data-site-page="home"] .showroom-main {
  background: #07070b;
  color: #ffffff;
}

body[data-site-page="home"] .showroom-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

body[data-site-page="home"] .showroom-section > .home-v2-container {
  position: relative;
  z-index: 1;
}

body[data-site-page="home"] .showroom-dark {
  isolation: isolate;
  color: #ffffff;
  background:
    radial-gradient(42rem circle at 14% 18%, rgba(202, 185, 255, 0.16), transparent 62%),
    radial-gradient(36rem circle at 86% 16%, rgba(124, 96, 255, 0.18), transparent 64%),
    radial-gradient(48rem circle at 72% 92%, rgba(83, 48, 143, 0.22), transparent 66%),
    linear-gradient(180deg, #040408 0%, #0b0a12 42%, #07070b 100%);
}

body[data-site-page="home"] .showroom-dark::before,
body[data-site-page="home"] .showroom-dark::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

body[data-site-page="home"] .showroom-dark::before {
  inset: 0;
  background:
    radial-gradient(34rem circle at var(--showroom-orb-a-x, 16%) var(--showroom-orb-a-y, 22%), rgba(242, 239, 250, 0.2), transparent 68%),
    radial-gradient(38rem circle at var(--showroom-orb-b-x, 84%) var(--showroom-orb-b-y, 22%), rgba(196, 148, 255, 0.28), transparent 66%),
    radial-gradient(30rem circle at var(--showroom-orb-c-x, 74%) var(--showroom-orb-c-y, 78%), rgba(95, 72, 210, 0.26), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.95;
}

body[data-site-page="home"] .showroom-dark::after {
  inset-inline: 0;
  bottom: -20rem;
  height: 34rem;
  background:
    radial-gradient(ellipse at center, rgba(202, 185, 255, 0.18), transparent 58%),
    radial-gradient(ellipse at 62% 42%, rgba(233, 229, 244, 0.1), transparent 52%);
  filter: blur(18px);
  opacity: 0.92;
}

body[data-site-page="home"] .showroom-dark > .home-v2-hero-grid-violet,
body[data-site-page="home"] .showroom-dark > .home-v2-dark-grid,
body[data-site-page="home"] .showroom-dark > .home-v2-hero-backdrop,
body[data-site-page="home"] .showroom-dark > .home-v2-hero-glow {
  z-index: 0;
}

body[data-site-page="home"] .showroom-dark > .home-v2-hero-backdrop {
  background:
    radial-gradient(circle at top left, rgba(148, 120, 255, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(73, 38, 152, 0.22), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(202, 185, 255, 0.13), transparent 26%);
}

body[data-site-page="home"] .showroom-dark > .home-v2-hero-glow {
  background: radial-gradient(ellipse at center, rgba(161, 110, 255, 0.3), transparent 60%);
  opacity: 0.95;
}

body[data-site-page="home"] .showroom-dark > .home-v2-container {
  position: relative;
  z-index: 2;
}

body[data-site-page="home"] .showroom-hero {
  --showroom-orb-a-x: 10%;
  --showroom-orb-a-y: 18%;
  --showroom-orb-b-x: 84%;
  --showroom-orb-b-y: 14%;
  --showroom-orb-c-x: 78%;
  --showroom-orb-c-y: 82%;
}

body[data-site-page="home"] .showroom-feature {
  --showroom-orb-a-x: 8%;
  --showroom-orb-a-y: 70%;
  --showroom-orb-b-x: 88%;
  --showroom-orb-b-y: 18%;
  --showroom-orb-c-x: 58%;
  --showroom-orb-c-y: 92%;
}

body[data-site-page="home"] .showroom-lightbox-feature,
body[data-site-page="home"] .showroom-nameplate-feature,
body[data-site-page="home"] .showroom-how,
body[data-site-page="home"] .showroom-final-cta {
  --showroom-orb-a-x: 16%;
  --showroom-orb-a-y: 20%;
  --showroom-orb-b-x: 82%;
  --showroom-orb-b-y: 28%;
  --showroom-orb-c-x: 74%;
  --showroom-orb-c-y: 76%;
}

body[data-site-page="home"] .showroom-cream {
  color: #151219;
  background: #f6f3ec;
}

body[data-site-page="home"] .showroom-hero {
  min-height: clamp(38rem, calc(100svh - 86px), 46rem);
  display: flex;
  align-items: center;
  padding-top: clamp(1.6rem, 3vw, 2.8rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}

body[data-site-page="home"] .showroom-hero-inner {
  width: min(1500px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1.4rem, 2.8vw, 3rem);
  align-items: start;
}

body[data-site-page="home"] .showroom-hero-copy {
  max-width: 760px;
}

body[data-site-page="home"] .showroom-hero-title {
  margin: clamp(0.9rem, 1.6vw, 1.3rem) 0 0;
  max-width: 760px;
  color: #ffffff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(4rem, 5.1vw, 5.2rem);
  line-height: 0.9;
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

body[data-site-page="home"] .showroom-hero-title-main,
body[data-site-page="home"] .showroom-hero-title-gradient {
  display: block;
}

body[data-site-page="home"] .showroom-hero-title-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f0d8ff 15%,
    #c084fc 35%,
    #e9d5ff 50%,
    #c084fc 65%,
    #f0d8ff 85%,
    #ffffff 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(196, 148, 255, 0.24);
  animation: gradientPan 6s ease-in-out infinite;
}

body[data-site-page="home"] .showroom-hero-lede {
  margin: 1.05rem 0 0;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.56;
}

body[data-site-page="home"] .showroom-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

body[data-site-page="home"] .showroom-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  color: #f0ddff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

body[data-site-page="home"] .showroom-text-link:hover {
  color: #ffffff;
}

body[data-site-page="home"] .showroom-text-link:focus-visible,
body[data-site-page="home"] .showroom-hero-card:focus-visible,
body[data-site-page="home"] .showroom-selector-card:focus-visible,
body[data-site-page="home"] .showroom-product-showcase-card:focus-visible,
body[data-site-page="home"] .showroom-carousel-card:focus-visible,
body[data-site-page="home"] .showroom-carousel-controls button:focus-visible {
  outline: 3px solid #d8bdff;
  outline-offset: 4px;
}

body[data-site-page="home"] .showroom-hero-collage {
  --showroom-side-card-size: clamp(14.5rem, 17.8vw, 19rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--showroom-side-card-size);
  grid-template-rows: repeat(2, var(--showroom-side-card-size));
  gap: clamp(0.65rem, 1.1vw, 0.95rem);
  align-items: stretch;
  height: auto;
  margin-top: clamp(3rem, 4.1vw, 3.35rem);
}

body[data-site-page="home"] .showroom-hero-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 214, 255, 0.18);
  border-radius: 1.6rem;
  background: rgba(8, 7, 13, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-site-page="home"] .showroom-hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 5, 11, 0.68) 48%, rgba(6, 5, 11, 0.95) 100%);
}

body[data-site-page="home"] .showroom-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 190, 255, 0.42);
  box-shadow: 0 38px 110px rgba(77, 39, 146, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body[data-site-page="home"] .showroom-hero-card-edge {
  grid-row: 1 / span 2;
}

body[data-site-page="home"] .showroom-product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 8, 16, 0.68);
  color: #f2e8ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

body[data-site-page="home"] .showroom-hero-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

body[data-site-page="home"] .showroom-hero-card-edge .showroom-hero-image {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
}

body[data-site-page="home"] .showroom-hero-card-aura,
body[data-site-page="home"] .showroom-hero-card-lightbox {
  width: var(--showroom-side-card-size);
  aspect-ratio: 1 / 1;
  border-radius: 1.1rem;
}

body[data-site-page="home"] .showroom-hero-card-aura .showroom-hero-image,
body[data-site-page="home"] .showroom-hero-card-lightbox .showroom-hero-image {
  aspect-ratio: auto;
}

body[data-site-page="home"] .showroom-hero-card-edge .showroom-card-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

body[data-site-page="home"] .showroom-hero-card-edge .showroom-card-text {
  font-size: 0.92rem;
  line-height: 1.42;
}

body[data-site-page="home"] .showroom-hero-card-aura .showroom-hero-card-copy,
body[data-site-page="home"] .showroom-hero-card-lightbox .showroom-hero-card-copy {
  inset-inline: 0.78rem;
  bottom: 2.35rem;
  gap: 0.18rem;
  padding: 0;
}

body[data-site-page="home"] .showroom-hero-card-aura .showroom-card-title,
body[data-site-page="home"] .showroom-hero-card-lightbox .showroom-card-title {
  font-size: 0.92rem;
}

body[data-site-page="home"] .showroom-hero-card-aura .showroom-card-text,
body[data-site-page="home"] .showroom-hero-card-lightbox .showroom-card-text {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.68rem;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-site-page="home"] .showroom-hero-card-aura .showroom-card-footer,
body[data-site-page="home"] .showroom-hero-card-lightbox .showroom-card-footer {
  inset-inline: 0.78rem;
  bottom: 0.7rem;
  padding: 0;
  font-size: 0.66rem;
}

body[data-site-page="home"] .showroom-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

body[data-site-page="home"] .showroom-hero-card-copy {
  display: grid;
  position: absolute;
  inset-inline: 1rem;
  bottom: 3.05rem;
  z-index: 2;
  gap: 0.3rem;
  padding: 0;
}

body[data-site-page="home"] .showroom-card-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

body[data-site-page="home"] .showroom-card-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

body[data-site-page="home"] .showroom-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  position: absolute;
  inset-inline: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  margin-top: 0;
  padding: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-site-page="home"] .showroom-card-footer span:last-child {
  color: #eadbff;
}

body[data-site-page="home"] .showroom-section-heading {
  max-width: 820px;
}

body[data-site-page="home"] .showroom-section-heading h2,
body[data-site-page="home"] .showroom-feature-copy h2,
body[data-site-page="home"] .showroom-final-inner h2 {
  margin: 0;
  font-family: var(--home-v2-font-display);
  font-size: 4.2rem;
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

body[data-site-page="home"] .showroom-section-heading p,
body[data-site-page="home"] .showroom-feature-copy p,
body[data-site-page="home"] .showroom-final-inner p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: rgba(21, 18, 25, 0.66);
  font-size: 1.08rem;
  line-height: 1.7;
}

body[data-site-page="home"] .showroom-section-heading-light p,
body[data-site-page="home"] .showroom-dark .showroom-feature-copy p,
body[data-site-page="home"] .showroom-dark .showroom-section-heading p,
body[data-site-page="home"] .showroom-dark .showroom-final-inner p {
  color: rgba(255, 255, 255, 0.68);
}

body[data-site-page="home"] .showroom-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

body[data-site-page="home"] .showroom-selector-card {
  display: grid;
  align-content: space-between;
  min-height: 22rem;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(27, 22, 32, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.58);
  color: #17131d;
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(27, 22, 32, 0.09);
}

body[data-site-page="home"] .showroom-selector-card:hover {
  border-color: rgba(105, 66, 175, 0.32);
  box-shadow: 0 26px 80px rgba(80, 51, 132, 0.16);
}

body[data-site-page="home"] .showroom-selector-kicker {
  color: rgba(85, 55, 140, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
}

body[data-site-page="home"] .showroom-selector-card h3 {
  margin: 0.95rem 0 0;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-site-page="home"] .showroom-selector-card p {
  margin: 1rem 0 1.7rem;
  color: rgba(21, 18, 25, 0.68);
  line-height: 1.62;
}

body[data-site-page="home"] .showroom-selector-card > span:last-child,
body[data-site-page="home"] .showroom-product-showcase-card strong {
  color: #53308f;
  font-size: 0.88rem;
  font-weight: 900;
}

body[data-site-page="home"] .showroom-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

body[data-site-page="home"] .showroom-feature-grid-media {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
}

body[data-site-page="home"] .showroom-lumaglow-feature {
  --showroom-lumaglow-video-width: clamp(19rem, 26vw, 24rem);
  --showroom-lumaglow-video-height: clamp(33.8rem, 46.2vw, 42.7rem);
}

body[data-site-page="home"] .showroom-lumaglow-feature .showroom-feature-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.58fr);
  align-items: stretch;
}

body[data-site-page="home"] .showroom-lumaglow-feature .showroom-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--showroom-lumaglow-video-height);
}

body[data-site-page="home"] .showroom-eyebrow {
  margin-bottom: 0.9rem;
  color: #d8bdff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-site-page="home"] .showroom-product-duo {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
  min-height: 0;
}

body[data-site-page="home"] .showroom-lumaglow-media-stack {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: stretch;
  min-height: var(--showroom-lumaglow-video-height);
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  width: var(--showroom-lumaglow-video-width);
  max-width: 100%;
  min-height: 0;
  height: var(--showroom-lumaglow-video-height);
  justify-self: center;
  border: 1px solid rgba(229, 214, 255, 0.16);
  border-radius: 1.35rem;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 18% 14%, rgba(216, 189, 255, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 12, 24, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 4, 8, 0.72));
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot figcaption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.35rem;
  color: #ffffff;
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

body[data-site-page="home"] .showroom-lumaglow-photo-slot figcaption strong {
  color: #f1e4ff;
  font-size: 0.96rem;
  font-weight: 900;
}

body[data-site-page="home"] .showroom-product-showcase-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 0;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(229, 214, 255, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

body[data-site-page="home"] .showroom-product-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.06) 0%, rgba(5, 4, 10, 0.48) 45%, rgba(5, 4, 10, 0.92) 100%);
}

body[data-site-page="home"] .showroom-product-showcase-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

body[data-site-page="home"] .showroom-product-showcase-card span,
body[data-site-page="home"] .showroom-product-showcase-card h3,
body[data-site-page="home"] .showroom-product-showcase-card p,
body[data-site-page="home"] .showroom-product-showcase-card strong {
  position: relative;
  z-index: 2;
}

body[data-site-page="home"] .showroom-product-showcase-card span {
  margin: 0;
  color: #d8bdff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-site-page="home"] .showroom-product-showcase-card h3 {
  margin: 0.42rem 0 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-site-page="home"] .showroom-product-showcase-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.48rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-site-page="home"] .showroom-product-showcase-card strong {
  margin: 0;
  color: #f1e4ff;
}

body[data-site-page="home"] .showroom-carousel-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

body[data-site-page="home"] .showroom-carousel-controls {
  display: flex;
  gap: 0.55rem;
  flex: 0 0 auto;
}

body[data-site-page="home"] .showroom-carousel-controls button {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(24, 19, 32, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #20172d;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

body[data-site-page="home"] .showroom-carousel {
  margin-top: 2.1rem;
  overflow: hidden;
}

body[data-site-page="home"] .showroom-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.2rem 0 1rem;
}

body[data-site-page="home"] .showroom-carousel-track::-webkit-scrollbar {
  display: none;
}

body[data-site-page="home"] .showroom-carousel-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(27, 22, 32, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.64);
  color: #17131d;
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(27, 22, 32, 0.08);
}

body[data-site-page="home"] .showroom-carousel-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

body[data-site-page="home"] .showroom-carousel-card span {
  display: block;
  margin: 1rem 1rem 0;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 850;
}

body[data-site-page="home"] .showroom-carousel-card p {
  margin: 0.72rem 1rem 1.1rem;
  color: rgba(21, 18, 25, 0.66);
  line-height: 1.55;
}

body[data-site-page="home"] .showroom-feature-media {
  display: grid;
  gap: 1rem;
}

body[data-site-page="home"] .showroom-feature-media img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

body[data-site-page="home"] .showroom-feature-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-site-page="home"] .showroom-feature-bullets li {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-grid-media {
  align-items: stretch;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-media {
  display: block;
  align-self: stretch;
  height: 100%;
  min-height: 0;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-media img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1.2rem;
}

body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-bullets li {
  display: flex;
  align-items: center;
  min-height: 4.8rem;
}

body[data-site-page="home"] .showroom-nameplate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

body[data-site-page="home"] .showroom-nameplate-preview {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(229, 214, 255, 0.16);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(12, 10, 22, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 32px 90px rgba(0, 0, 0, 0.3);
  text-align: center;
}

body[data-site-page="home"] .showroom-nameplate-preview span {
  color: #d8bdff;
  font-size: 0.76rem;
  font-weight: 900;
}

body[data-site-page="home"] .showroom-nameplate-preview strong {
  color: #ffffff;
  font-family: var(--home-v2-font-display);
  font-size: 4.2rem;
  line-height: 0.95;
  letter-spacing: 0;
}

body[data-site-page="home"] .showroom-nameplate-preview em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

body[data-site-page="home"] .showroom-placeholder-card {
  justify-content: end;
  min-height: 19rem;
  background:
    linear-gradient(135deg, rgba(83, 48, 143, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
}

body[data-site-page="home"] .showroom-placeholder-card::before {
  content: "Coming soon";
  margin: 1rem 1rem auto;
  align-self: start;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(83, 48, 143, 0.1);
  color: #53308f;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-site-page="home"] .showroom-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

body[data-site-page="home"] .showroom-steps article {
  padding: 1.25rem;
  border: 1px solid rgba(229, 214, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
}

body[data-site-page="home"] .showroom-steps span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(216, 189, 255, 0.13);
  color: #f1e4ff;
  font-weight: 900;
}

body[data-site-page="home"] .showroom-steps h3 {
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

body[data-site-page="home"] .showroom-steps p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

body[data-site-page="home"] .showroom-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

body[data-site-page="home"] .showroom-reviews .home-v2-reviews-grid {
  margin-top: 2.2rem;
}

body[data-site-page="home"] .showroom-reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

body[data-site-page="home"] .showroom-reviews-heading {
  max-width: 680px;
}

body[data-site-page="home"] .showroom-eyebrow-dark {
  color: rgba(83, 48, 143, 0.72);
}

body[data-site-page="home"] .showroom-review-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

body[data-site-page="home"] .showroom-review-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(83, 48, 143, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(33, 24, 47, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

body[data-site-page="home"] .showroom-review-dashboard {
  border-radius: 1.25rem;
}

body[data-site-page="home"] .showroom-review-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

body[data-site-page="home"] .showroom-review-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

body[data-site-page="home"] .showroom-review-stats div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.055);
}

body[data-site-page="home"] .showroom-review-stats span {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.1;
}

body[data-site-page="home"] .showroom-review-stats small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

body[data-site-page="home"] .showroom-featured-review {
  margin: 1rem 0 0;
  padding: 1.15rem;
  border: 1px solid rgba(216, 189, 255, 0.18);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(216, 189, 255, 0.12), rgba(255, 255, 255, 0.04));
}

body[data-site-page="home"] .showroom-featured-review-kicker {
  color: #d8bdff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-site-page="home"] .showroom-featured-review blockquote {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.55;
}

body[data-site-page="home"] .showroom-featured-review figcaption {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

body[data-site-page="home"] .showroom-reviews .home-v2-review-panel-inner {
  padding: 1.6rem;
}

body[data-site-page="home"] .showroom-reviews .home-v2-review-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-site-page="home"] .showroom-reviews .home-v2-review-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.052);
}

body[data-site-page="home"] .showroom-review-empty {
  grid-column: 1 / -1;
}

body[data-site-page="home"] .showroom-final-inner {
  max-width: 860px;
}

@media (prefers-reduced-motion: reduce) {
  body[data-site-page="home"] .showroom-carousel-track {
    scroll-behavior: auto;
  }

  body[data-site-page="home"] .showroom-hero-card,
  body[data-site-page="home"] .showroom-product-showcase-card {
    transition: none;
  }
}

@media (max-width: 1040px) {
  body[data-site-page="home"] .showroom-hero-inner,
  body[data-site-page="home"] .showroom-feature-grid,
  body[data-site-page="home"] .showroom-feature-grid-media,
  body[data-site-page="home"] .showroom-nameplate-grid,
  body[data-site-page="home"] .showroom-reviews-layout {
    grid-template-columns: 1fr;
  }

  body[data-site-page="home"] .showroom-hero {
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-hero-collage {
    --showroom-side-card-size: clamp(12.5rem, 27vw, 15.5rem);
    width: min(880px, 100%);
    height: auto;
    margin-top: 0;
  }

  body[data-site-page="home"] .showroom-lumaglow-feature .showroom-feature-copy {
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-lumaglow-media-stack {
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-lumaglow-video-slot {
    width: min(23rem, 100%);
    height: auto;
  }

  body[data-site-page="home"] .showroom-selector-grid,
  body[data-site-page="home"] .showroom-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site-page="home"] .showroom-hero-title {
    font-size: 4.5rem;
  }

  body[data-site-page="home"] .showroom-section-heading h2,
  body[data-site-page="home"] .showroom-feature-copy h2,
  body[data-site-page="home"] .showroom-final-inner h2 {
    font-size: 3.4rem;
  }
}

@media (max-width: 760px) {
  body[data-site-page="home"] .showroom-section {
    padding: 3.6rem 0;
  }

  body[data-site-page="home"] .showroom-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  body[data-site-page="home"] .showroom-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  body[data-site-page="home"] .showroom-hero-copy {
    display: contents;
    max-width: none;
  }

  body[data-site-page="home"] .showroom-hero-copy .home-v2-eyebrow {
    order: 1;
  }

  body[data-site-page="home"] .showroom-hero-title {
    order: 2;
    max-width: none;
    font-size: 3rem;
  }

  body[data-site-page="home"] .showroom-hero-collage {
    order: 3;
    width: 100%;
    max-width: none;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  body[data-site-page="home"] .showroom-hero-card {
    aspect-ratio: 1 / 0.72;
    min-height: clamp(10.5rem, 42vw, 16rem);
  }

  body[data-site-page="home"] .showroom-hero-card-aura,
  body[data-site-page="home"] .showroom-hero-card-lightbox {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  body[data-site-page="home"] .showroom-hero-card-edge {
    grid-column: 1 / -1;
    aspect-ratio: 1 / 0.58;
    min-height: clamp(16rem, 62vw, 23rem);
  }

  body[data-site-page="home"] .showroom-hero-card-lightbox {
    grid-column: auto;
  }

  body[data-site-page="home"] .showroom-hero-lede {
    order: 4;
    max-width: none;
    margin-top: 0;
    font-size: 1.03rem;
  }

  body[data-site-page="home"] .showroom-hero-copy .showroom-action-row {
    order: 5;
  }

  body[data-site-page="home"] .showroom-section-heading h2,
  body[data-site-page="home"] .showroom-feature-copy h2,
  body[data-site-page="home"] .showroom-final-inner h2 {
    font-size: 2.45rem;
  }

  body[data-site-page="home"] .showroom-card-title {
    font-size: 1.1rem;
  }

  body[data-site-page="home"] .showroom-card-text {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  body[data-site-page="home"] .showroom-card-footer {
    font-size: 0.78rem;
  }

  body[data-site-page="home"] .showroom-product-badge {
    padding: 0.36rem 0.52rem;
    font-size: 0.62rem;
  }

  body[data-site-page="home"] .showroom-selector-card h3 {
    font-size: 1.45rem;
  }

  body[data-site-page="home"] .showroom-nameplate-preview strong {
    font-size: 3rem;
  }

  body[data-site-page="home"] .showroom-action-row,
  body[data-site-page="home"] .showroom-hero-copy {
    align-items: stretch;
  }

  body[data-site-page="home"] .showroom-action-row,
  body[data-site-page="home"] .showroom-carousel-top {
    flex-direction: column;
  }

  body[data-site-page="home"] .showroom-action-row .home-v2-cta,
  body[data-site-page="home"] .showroom-text-link {
    width: 100%;
    justify-content: center;
  }

  body[data-site-page="home"] .showroom-review-summary,
  body[data-site-page="home"] .showroom-review-stats,
  body[data-site-page="home"] .showroom-reviews .home-v2-review-cards {
    grid-template-columns: 1fr;
  }

  body[data-site-page="home"] .showroom-review-summary .home-v2-review-button {
    width: 100%;
    justify-content: center;
  }

  body[data-site-page="home"] .showroom-reviews .home-v2-review-panel-inner {
    padding: 1.1rem;
  }

  body[data-site-page="home"] .showroom-selector-grid,
  body[data-site-page="home"] .showroom-steps,
  body[data-site-page="home"] .showroom-feature-bullets {
    grid-template-columns: 1fr;
  }

  body[data-site-page="home"] .showroom-lumaglow-media-stack {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-product-duo {
    grid-template-columns: 1fr;
  }

  body[data-site-page="home"] .showroom-product-showcase-card {
    padding: 0.85rem;
  }

  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-copy {
    justify-content: start;
  }

  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-media {
    height: auto;
  }

  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-media img {
    height: auto;
    min-height: 22rem;
    aspect-ratio: 1 / 0.72;
  }

  body[data-site-page="home"] .showroom-hero-card-edge {
    grid-row: auto;
  }

  body[data-site-page="home"] .showroom-hero-card {
    border-radius: 1.1rem;
  }

  body[data-site-page="home"] .showroom-hero-image,
  body[data-site-page="home"] .showroom-hero-card-edge .showroom-hero-image {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  body[data-site-page="home"] .showroom-carousel-track {
    grid-auto-columns: minmax(82%, 82%);
  }

  body[data-site-page="home"] .showroom-carousel-card {
    min-height: 22rem;
  }
}

@media (max-width: 560px) {
  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-bullets {
    grid-template-columns: 1fr;
  }

  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-bullets li {
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-lightbox-feature .showroom-feature-media img {
    min-height: 16rem;
  }

  body[data-site-page="home"] .showroom-lumaglow-media-stack {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-site-page="home"] .showroom-lumaglow-video-slot {
    width: min(19rem, 100%);
    height: auto;
    justify-self: center;
  }

  body[data-site-page="home"] .showroom-product-duo {
    grid-template-rows: auto;
  }

  body[data-site-page="home"] .showroom-product-showcase-card {
    min-height: 14rem;
    aspect-ratio: 1 / 0.62;
  }

  body[data-site-page="home"] .showroom-hero-collage {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  body[data-site-page="home"] .showroom-hero-card {
    aspect-ratio: 1 / 0.68;
    min-height: 13.5rem;
  }

  body[data-site-page="home"] .showroom-hero-card-edge {
    grid-column: auto;
    aspect-ratio: 1 / 0.72;
    min-height: clamp(17rem, 74vw, 24rem);
  }

  body[data-site-page="home"] .showroom-hero-card-lightbox {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  body[data-site-page="home"] .showroom-hero-title {
    font-size: 2.55rem;
  }

  body[data-site-page="home"] .showroom-carousel-track {
    grid-auto-columns: minmax(92%, 92%);
  }

  body[data-site-page="home"] .showroom-hero-card-copy {
    inset-inline: 0.85rem;
    bottom: 2.75rem;
  }

  body[data-site-page="home"] .showroom-card-footer {
    inset-inline: 0.85rem;
    bottom: 0.8rem;
  }
}


/* Storefront footer transition polish */
body.home-v2-page .footer,
body.home-v2-storefront-page .footer,
body[data-site-page].home-v2-page .footer,
body[data-site-page].home-v2-storefront-page .footer {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-top: -1px;
  padding-top: clamp(2.35rem, 4vw, 3.35rem);
  background: #f6f3ec;
}

body.home-v2-page .footer::before,
body.home-v2-storefront-page .footer::before,
body[data-site-page].home-v2-page .footer::before,
body[data-site-page].home-v2-storefront-page .footer::before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(-3.85rem, -5vw, -2.75rem);
  height: clamp(4.15rem, 5.8vw, 5.8rem);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 243, 236, 0) 0%, rgba(246, 243, 236, 0.72) 52%, #f6f3ec 100%);
}

body.home-v2-page .footer::after,
body.home-v2-storefront-page .footer::after,
body[data-site-page].home-v2-page .footer::after,
body[data-site-page].home-v2-storefront-page .footer::after {
  display: none !important;
}

body.home-v2-page .footer > .home-v2-container,
body.home-v2-storefront-page .footer > .home-v2-container,
body[data-site-page].home-v2-page .footer > .home-v2-container,
body[data-site-page].home-v2-storefront-page .footer > .home-v2-container {
  position: relative;
  z-index: 1;
}

body.home-v2-page .home-v2-footer-card,
body.home-v2-storefront-page .home-v2-footer-card,
body[data-site-page].home-v2-page .home-v2-footer-card,
body[data-site-page].home-v2-storefront-page .home-v2-footer-card {
  border-color: rgba(204, 184, 255, 0.2);
  background:
    radial-gradient(48rem circle at 86% 14%, rgba(111, 72, 204, 0.3), transparent 58%),
    radial-gradient(38rem circle at 8% 4%, rgba(162, 120, 255, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(33, 27, 51, 0.98) 0%, rgba(13, 11, 24, 0.99) 100%);
  box-shadow:
    0 28px 80px rgba(28, 19, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body[data-site-page="home"] .showroom-dark::before {
  will-change: background;
}

@media (max-width: 720px) {
  body.home-v2-page .footer,
  body.home-v2-storefront-page .footer,
  body[data-site-page].home-v2-page .footer,
  body[data-site-page].home-v2-storefront-page .footer {
    padding-top: 2.85rem;
  }

  body.home-v2-page .footer::before,
  body.home-v2-storefront-page .footer::before,
  body[data-site-page].home-v2-page .footer::before,
  body[data-site-page].home-v2-storefront-page .footer::before {
    top: -3.35rem;
    height: 4.6rem;
  }
}


/* Contact phone-width cap */
@media (max-width: 520px) {
  body[data-site-page="contact"] .contact-page-copy,
  body[data-site-page="contact"] .contact-page-actions,
  body[data-site-page="contact"] .contact-page-proof-row,
  body[data-site-page="contact"] .contact-page-visual-strip,
  body[data-site-page="contact"] .contact-inquiry-panel,
  body[data-site-page="contact"] .contact-section-heading,
  body[data-site-page="contact"] .contact-notes-grid,
  body[data-site-page="contact"] .contact-path-grid,
  body[data-site-page="contact"] .contact-link-list {
    width: 100%;
    max-width: 370px;
  }

  body[data-site-page="contact"] .contact-page-visual-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site-page="contact"] .contact-page-visual-small {
    display: none;
  }

  body[data-site-page="contact"] .contact-inquiry-panel h2,
  body[data-site-page="contact"] .contact-section-heading h2,
  body[data-site-page="contact"] .contact-path-copy h2 {
    font-size: 1.95rem;
  }
}


/* Storefront SEO crawlable sections */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-catalog-section {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-section {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 6vw, 6.5rem) 0;
  color: rgba(248, 247, 252, 0.92);
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(151, 113, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-container {
  max-width: 1180px;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-kicker {
  margin: 0 0 0.8rem;
  color: rgba(216, 198, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-section h2 {
  max-width: 13.5ch;
  margin: 0;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-section h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-section p {
  margin: 0.8rem 0 0;
  color: rgba(230, 226, 240, 0.66);
  font-size: 1rem;
  line-height: 1.72;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-grid,
body[data-site-page="shop"].home-v2-storefront-page .shop-seo-list-grid,
body[data-site-page="shop"].home-v2-storefront-page .shop-faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-list-grid,
body[data-site-page="shop"].home-v2-storefront-page .shop-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-grid article,
body[data-site-page="shop"].home-v2-storefront-page .shop-seo-list-grid article,
body[data-site-page="shop"].home-v2-storefront-page .shop-faq-grid article,
.legacy-product-fallback .legacy-product-grid a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 70px rgba(8, 4, 22, 0.24);
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-split,
body[data-site-page="shop"].home-v2-storefront-page .shop-seo-cta-panel,
.luma-static-related-grid,
.lightbox-static-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

body[data-site-page="shop"].home-v2-storefront-page .shop-seo-cta-panel {
  border: 1px solid rgba(216, 198, 255, 0.18);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(187, 132, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.055);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

body[data-site-page="shop"].home-v2-storefront-page main > section {
  position: relative;
  overflow: hidden;
}

body[data-site-page="shop"].home-v2-storefront-page main > section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body[data-site-page="shop"].home-v2-storefront-page main > section > .container {
  position: relative;
  z-index: 1;
}

body[data-site-page="shop"].home-v2-storefront-page main > section:first-of-type,
body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(even) {
  background:
    linear-gradient(rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(122, 88, 232, 0.24), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(85, 47, 182, 0.2), transparent 30%),
    linear-gradient(180deg, #161624 0%, #0c0d17 46%, #06070f 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(odd):not(:first-of-type) {
  background:
    radial-gradient(circle at 12% 14%, rgba(150, 120, 255, 0.13), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(92, 64, 180, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5fb 100%);
  color: #181521;
}

body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(odd):not(:first-of-type)::before {
  background-image:
    linear-gradient(rgba(55, 42, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 42, 86, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.58;
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) .shop-seo-kicker {
  color: #6d4dd1;
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) h2,
body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) h3 {
  color: #181521;
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) p {
  color: rgba(31, 27, 43, 0.68);
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) .shop-seo-grid article,
body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) .shop-seo-list-grid article,
body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) .shop-faq-grid article {
  border-color: rgba(41, 31, 68, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 22px 60px rgba(39, 28, 72, 0.1);
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type).shop-seo-band {
  border-block: 1px solid rgba(41, 31, 68, 0.1);
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type).shop-seo-cta .shop-seo-cta-panel {
  border-color: rgba(41, 31, 68, 0.12);
  background:
    radial-gradient(circle at 10% 10%, rgba(151, 113, 255, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 70px rgba(39, 28, 72, 0.12);
}

body[data-site-page="shop"].home-v2-storefront-page main > .shop-seo-section:nth-of-type(odd):not(:first-of-type) .button-secondary {
  border-color: rgba(41, 31, 68, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #211934;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 14px 34px rgba(39, 28, 72, 0.1);
}

.legacy-product-fallback {
  width: min(1120px, calc(100% - 2rem));
  margin: clamp(3rem, 6vw, 5rem) auto;
  color: rgba(248, 247, 252, 0.9);
}

.legacy-product-fallback h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 1;
}

.legacy-product-fallback p {
  max-width: 48rem;
  color: rgba(230, 226, 240, 0.68);
  line-height: 1.7;
}

.legacy-product-kicker {
  color: rgba(216, 198, 255, 0.9) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legacy-product-grid,
.luma-related-link-grid,
.lightbox-static-list-grid {
  display: grid;
  gap: 1rem;
}

.legacy-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.legacy-product-grid a,
.luma-related-link-grid a {
  display: grid;
  gap: 0.65rem;
  color: #fff;
}

.legacy-product-grid span,
.luma-related-link-grid small {
  color: rgba(230, 226, 240, 0.66);
  line-height: 1.6;
}

body.luma-product-detail-page .luma-static-modes-section,
body.luma-product-detail-page .luma-static-related-section,
body.luma-product-detail-page .luma-static-cta-section,
body.lightbox-product-detail-page .lightbox-static-info-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
}

body.luma-product-detail-page .luma-static-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.luma-product-detail-page .luma-static-related-grid,
body.luma-product-detail-page .luma-static-cta-panel {
  color: rgba(248, 247, 252, 0.9);
}

body.luma-product-detail-page .luma-static-related-grid h2,
body.luma-product-detail-page .luma-static-cta-panel h2,
body.lightbox-product-detail-page .lightbox-static-info-grid h2 {
  margin: 1rem 0 0;
  color: #fff;
  font-family: var(--home-v2-font-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

body.luma-product-detail-page .luma-static-related-grid p,
body.luma-product-detail-page .luma-static-cta-panel p,
body.lightbox-product-detail-page .lightbox-static-info-grid p {
  color: rgba(230, 226, 240, 0.66);
  line-height: 1.72;
}

body.luma-product-detail-page .luma-related-link-grid a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
}

body.luma-product-detail-page .luma-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.luma-product-detail-page .luma-static-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(216, 198, 255, 0.18);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

body.lightbox-product-detail-page .lightbox-static-info-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(188, 132, 255, 0.22), transparent 32%),
    transparent;
}

body.lightbox-product-detail-page .lightbox-static-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.lightbox-product-detail-page .lightbox-static-list-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
  color: #fff;
}

body.lightbox-product-detail-page .lightbox-use-section .lightbox-faq-grid article {
  border-color: rgba(17, 19, 25, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: var(--lightbox-ink);
}

@media (max-width: 980px) {
  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-grid-three,
  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-list-grid,
  body[data-site-page="shop"].home-v2-storefront-page .shop-faq-grid,
  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-split,
  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-cta-panel,
  .legacy-product-grid,
  .luma-static-related-grid,
  .lightbox-static-info-grid,
  body.luma-product-detail-page .luma-static-card-grid,
  body.luma-product-detail-page .luma-faq-grid,
  body.lightbox-product-detail-page .lightbox-static-list-grid {
    grid-template-columns: 1fr;
  }

  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-actions,
  body.luma-product-detail-page .luma-static-cta-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body[data-site-page="shop"].home-v2-storefront-page .page-hero h1 {
    white-space: normal;
  }

  body[data-site-page="shop"].home-v2-storefront-page .shop-seo-section,
  body.luma-product-detail-page .luma-static-modes-section,
  body.luma-product-detail-page .luma-static-related-section,
  body.luma-product-detail-page .luma-static-cta-section,
  body.lightbox-product-detail-page .lightbox-static-info-section {
    padding-block: 3rem;
  }

  body.luma-product-detail-page .luma-static-cta-panel {
    display: grid;
  }
}


/* FAQ and policy hub */
body.faq-policy-page.home-v2-storefront-page {
  --faq-ink: #ffffff;
  --faq-muted: rgba(236, 231, 247, 0.68);
  --faq-soft: rgba(236, 231, 247, 0.5);
  --faq-line: rgba(255, 255, 255, 0.11);
  --faq-line-strong: rgba(220, 202, 255, 0.2);
  --faq-panel: rgba(255, 255, 255, 0.06);
  --faq-panel-strong: rgba(26, 23, 43, 0.82);
  --faq-cream: #f5f1e9;
  --faq-cream-ink: #181620;
  overflow-x: hidden;
  color: var(--faq-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 104, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 84% 18%, rgba(72, 86, 180, 0.14), transparent 28rem),
    linear-gradient(180deg, #090912 0%, #070711 42%, #05050b 100%);
}

body.faq-policy-page .faq-policy-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body.faq-policy-page .faq-policy-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(201, 182, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 182, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 70%);
}

body.faq-policy-page .faq-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

body.faq-policy-page .faq-hero {
  position: relative;
  min-height: calc(100svh - 4.4rem);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.25rem, 6vw, 6rem);
}

body.faq-policy-page .faq-hero::after,
body.faq-policy-page .shipping-policy-hero::after {
  display: none;
}

body.faq-policy-page .faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.78fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

body.faq-policy-page .faq-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.35rem;
  color: rgba(236, 231, 247, 0.55);
  font-size: 0.88rem;
}

body.faq-policy-page .faq-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
}

body.faq-policy-page .faq-kicker {
  margin: 0 0 0.9rem;
  color: rgba(221, 204, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.faq-policy-page h1,
body.faq-policy-page h2,
body.faq-policy-page h3 {
  margin: 0;
  color: var(--faq-ink);
  font-family: var(--home-v2-font-display, var(--font-display));
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

body.faq-policy-page .faq-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.35rem, 8.8vw, 7.6rem);
  font-weight: 750;
}

body.faq-policy-page .faq-lead {
  max-width: 56ch;
  margin: 1.35rem 0 0;
  color: var(--faq-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}

body.faq-policy-page .faq-hero-actions,
body.faq-policy-page .faq-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

body.faq-policy-page .home-v2-cta {
  min-height: 3.2rem;
  border-radius: 999px;
}

body.faq-policy-page .faq-hero-media {
  position: relative;
  min-height: 34rem;
}

body.faq-policy-page .faq-hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #06060c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

body.faq-policy-page .faq-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.faq-policy-page .faq-hero-image-large {
  inset: 0 12% 5rem 0;
  border-radius: 1.45rem;
}

body.faq-policy-page .faq-hero-image-small {
  right: 0;
  bottom: 0;
  width: min(42%, 15rem);
  aspect-ratio: 1;
  border-radius: 1.25rem;
}

body.faq-policy-page .faq-hero-note {
  position: absolute;
  right: 7%;
  top: 6%;
  width: min(18rem, 72%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  background: rgba(9, 8, 18, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

body.faq-policy-page .faq-hero-note span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(221, 204, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

body.faq-policy-page .faq-hero-note strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

body.faq-policy-page .faq-hero-note p {
  margin: 0.55rem 0 0;
  color: rgba(236, 231, 247, 0.66);
  font-size: 0.9rem;
  line-height: 1.52;
}

body.faq-policy-page .faq-summary-band,
body.faq-policy-page .faq-question-section,
body.faq-policy-page .faq-final-section {
  position: relative;
  z-index: 1;
}

body.faq-policy-page .faq-summary-band {
  padding: clamp(3.25rem, 5vw, 5rem) 0;
  background: var(--faq-cream);
  color: var(--faq-cream-ink);
}

body.faq-policy-page.shipping-policy-page .faq-summary-band {
  background: transparent;
}

body.faq-policy-page .faq-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.faq-policy-page .faq-summary-grid article {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(29, 24, 42, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 60px rgba(30, 22, 50, 0.1);
}

body.faq-policy-page .shipping-policy-page .faq-summary-grid article,
body.faq-policy-page.shipping-policy-page .faq-summary-grid article {
  border-color: var(--faq-line);
  background: var(--faq-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.2);
}

body.faq-policy-page .faq-summary-grid span {
  color: rgba(101, 71, 169, 0.78);
  font-size: 0.74rem;
  font-weight: 850;
}

body.faq-policy-page.shipping-policy-page .faq-summary-grid span {
  color: rgba(221, 204, 255, 0.88);
}

body.faq-policy-page .faq-summary-grid h2 {
  max-width: 11ch;
  margin-top: 2.5rem;
  color: var(--faq-cream-ink);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

body.faq-policy-page.shipping-policy-page .faq-summary-grid h2 {
  color: #fff;
}

body.faq-policy-page .faq-summary-grid p,
body.faq-policy-page .faq-section-heading p,
body.faq-policy-page .faq-topic-card p,
body.faq-policy-page .faq-final-panel p {
  color: var(--faq-muted);
  line-height: 1.68;
}

body.faq-policy-page .faq-summary-grid p {
  margin: 0.85rem 0 0;
  color: rgba(39, 35, 51, 0.68);
}

body.faq-policy-page.shipping-policy-page .faq-summary-grid p {
  color: var(--faq-muted);
}

body.faq-policy-page .faq-policy-section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 7vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(170, 122, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #090912, #06060d);
}

body.faq-policy-page .faq-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

body.faq-policy-page .faq-section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

body.faq-policy-page .faq-section-heading p {
  max-width: 58ch;
  margin: 1rem 0 0;
}

body.faq-policy-page .faq-section-heading a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(221, 204, 255, 0.45);
  text-underline-offset: 0.18em;
}

body.faq-policy-page .faq-policy-panel {
  overflow: hidden;
  border: 1px solid var(--faq-line-strong);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 120, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

body.faq-policy-page .faq-policy-list {
  display: grid;
  margin: 0;
}

body.faq-policy-page .faq-policy-list div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 0.65fr);
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

body.faq-policy-page .faq-policy-list div:last-child {
  border-bottom: 0;
}

body.faq-policy-page .faq-policy-list dt {
  color: #fff;
  font-weight: 800;
}

body.faq-policy-page .faq-policy-list dd {
  margin: 0;
  color: rgba(236, 231, 247, 0.68);
  line-height: 1.62;
}

body.faq-policy-page .faq-question-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--faq-cream);
  color: var(--faq-cream-ink);
}

body.faq-policy-page.shipping-policy-page .faq-question-section {
  background: transparent;
}

body.faq-policy-page .faq-section-heading-wide {
  max-width: 58rem;
}

body.faq-policy-page .faq-question-section .faq-kicker {
  color: rgba(99, 69, 161, 0.86);
}

body.faq-policy-page.shipping-policy-page .faq-question-section .faq-kicker {
  color: rgba(221, 204, 255, 0.88);
}

body.faq-policy-page .faq-question-section h2 {
  color: var(--faq-cream-ink);
}

body.faq-policy-page.shipping-policy-page .faq-question-section h2 {
  color: #fff;
}

body.faq-policy-page .faq-question-section .faq-section-heading p {
  color: rgba(39, 35, 51, 0.66);
}

body.faq-policy-page.shipping-policy-page .faq-question-section .faq-section-heading p {
  color: var(--faq-muted);
}

body.faq-policy-page .faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

body.faq-policy-page .faq-topic-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.faq-policy-page .faq-topic-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 24, 42, 0.11);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 55px rgba(30, 22, 50, 0.1);
}

body.faq-policy-page.shipping-policy-page .faq-topic-card {
  border-color: var(--faq-line);
  background: var(--faq-panel);
}

body.faq-policy-page .faq-topic-card h3 {
  padding: 1.25rem 1.25rem 0.8rem;
  color: var(--faq-cream-ink);
  font-size: 1.2rem;
}

body.faq-policy-page.shipping-policy-page .faq-topic-card h3 {
  color: #fff;
}

body.faq-policy-page .faq-topic-card > p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: rgba(39, 35, 51, 0.68);
}

body.faq-policy-page.shipping-policy-page .faq-topic-card > p {
  color: var(--faq-muted);
}

body.faq-policy-page .faq-topic-card details {
  border-top: 1px solid rgba(29, 24, 42, 0.1);
}

body.faq-policy-page.shipping-policy-page .faq-topic-card details {
  border-top-color: rgba(255, 255, 255, 0.09);
}

body.faq-policy-page .faq-topic-card summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.8rem;
  padding: 1rem 3rem 1rem 1.25rem;
  color: var(--faq-cream-ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

body.faq-policy-page.shipping-policy-page .faq-topic-card summary {
  color: #fff;
}

body.faq-policy-page .faq-topic-card summary::-webkit-details-marker {
  display: none;
}

body.faq-policy-page .faq-topic-card summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(111, 75, 195, 0.11);
  color: rgba(89, 56, 159, 0.92);
  font-size: 1.1rem;
  line-height: 1;
}

body.faq-policy-page.shipping-policy-page .faq-topic-card summary::after {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(221, 204, 255, 0.92);
}

body.faq-policy-page .faq-topic-card details[open] summary::after {
  content: "-";
}

body.faq-policy-page .faq-topic-card details p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: rgba(39, 35, 51, 0.68);
  line-height: 1.68;
}

body.faq-policy-page.shipping-policy-page .faq-topic-card details p {
  color: var(--faq-muted);
}

body.faq-policy-page .faq-topic-card summary:focus-visible {
  outline: 2px solid rgba(113, 80, 190, 0.55);
  outline-offset: -4px;
}

body.faq-policy-page.shipping-policy-page .faq-topic-card summary:focus-visible {
  outline-color: rgba(221, 204, 255, 0.72);
}

body.faq-policy-page .faq-final-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(175, 124, 255, 0.18), transparent 36%),
    #070710;
}

body.faq-policy-page .faq-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--faq-line-strong);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(181, 116, 255, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

body.faq-policy-page .faq-final-panel h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

body.faq-policy-page .faq-final-panel p {
  max-width: 62ch;
  margin: 1rem 0 0;
}

body.faq-policy-page .faq-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 980px) {
  body.faq-policy-page .faq-hero {
    min-height: 0;
  }

  body.faq-policy-page .faq-hero-grid,
  body.faq-policy-page .faq-policy-layout,
  body.faq-policy-page .faq-final-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  body.faq-policy-page .faq-hero-media {
    min-height: 27rem;
  }

  body.faq-policy-page .faq-summary-grid,
  body.faq-policy-page .faq-topic-grid,
  body.faq-policy-page .faq-topic-grid-three {
    grid-template-columns: minmax(0, 1fr);
  }

  body.faq-policy-page .faq-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body.faq-policy-page .faq-shell {
    width: min(100% - 1.25rem, 38rem);
  }

  body.faq-policy-page .faq-hero {
    padding: 2.75rem 0 3.5rem;
  }

  body.faq-policy-page .faq-hero h1 {
    font-size: clamp(2.8rem, 17vw, 4.15rem);
  }

  body.faq-policy-page .faq-hero-actions,
  body.faq-policy-page .faq-final-actions {
    display: grid;
  }

  body.faq-policy-page .home-v2-cta {
    width: 100%;
  }

  body.faq-policy-page .faq-hero-media {
    min-height: 21rem;
  }

  body.faq-policy-page .faq-hero-image-large {
    inset: 0 0 4rem 0;
  }

  body.faq-policy-page .faq-hero-image-small {
    width: 38%;
  }

  body.faq-policy-page .faq-hero-note {
    left: 0.8rem;
    right: 0.8rem;
    top: auto;
    bottom: 1rem;
    width: auto;
  }

  body.faq-policy-page .faq-policy-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    padding: 1rem;
  }

  body.faq-policy-page .faq-summary-grid article,
  body.faq-policy-page .faq-topic-card h3,
  body.faq-policy-page .faq-topic-card summary,
  body.faq-policy-page .faq-topic-card details p,
  body.faq-policy-page .faq-topic-card > p,
  body.faq-policy-page .faq-final-panel {
    padding-inline: 1rem;
  }

  body.faq-policy-page .faq-section-heading h2,
  body.faq-policy-page .faq-final-panel h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.faq-policy-page .home-v2-cta,
  body.faq-policy-page .faq-topic-card summary,
  body.faq-policy-page .reveal,
  body.faq-policy-page .reveal.is-visible {
    transition: none;
    transform: none;
  }
}


/* Shared storefront light-section paper glow */
body.home-v2-page,
body.home-v2-storefront-page {
  --storefront-paper-bg:
    radial-gradient(circle at 12% 14%, rgba(150, 120, 255, 0.13), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(92, 64, 180, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5fb 100%);
  --storefront-paper-grid:
    linear-gradient(rgba(55, 42, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 42, 86, 0.055) 1px, transparent 1px);
  --storefront-paper-ink: #181521;
  --storefront-paper-muted: rgba(31, 27, 43, 0.68);
}

body[data-site-page="home"] .showroom-cream,
body[data-site-page="home"]:not(.gallery-page) .home-v2-gallery-section,
body[data-site-page="home"] .home-v2-reviews-section,
body.luma-product-detail-page .luma-light-section,
body.luma-product-detail-page .luma-control-section,
body.lightbox-product-detail-page .lightbox-use-section,
body.lightbox-product-detail-page .lightbox-final-section,
body.faq-policy-page:not(.shipping-policy-page) .faq-summary-band,
body.faq-policy-page:not(.shipping-policy-page) .faq-question-section,
body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(odd):not(:first-of-type) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--storefront-paper-bg);
  color: var(--storefront-paper-ink);
}

body[data-site-page="home"] .showroom-cream::before,
body[data-site-page="home"]:not(.gallery-page) .home-v2-gallery-section::before,
body[data-site-page="home"] .home-v2-reviews-section::before,
body.luma-product-detail-page .luma-light-section::before,
body.luma-product-detail-page .luma-control-section::before,
body.lightbox-product-detail-page .lightbox-use-section::before,
body.lightbox-product-detail-page .lightbox-final-section::before,
body.faq-policy-page:not(.shipping-policy-page) .faq-summary-band::before,
body.faq-policy-page:not(.shipping-policy-page) .faq-question-section::before,
body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(odd):not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--storefront-paper-grid);
  background-size: 64px 64px;
  opacity: 0.58;
}

body[data-site-page="home"] .showroom-cream > .home-v2-container,
body[data-site-page="home"]:not(.gallery-page) .home-v2-gallery-section > .home-v2-container,
body[data-site-page="home"] .home-v2-reviews-section > .home-v2-container,
body.luma-product-detail-page .luma-light-section > .luma-detail-container,
body.luma-product-detail-page .luma-control-section > .luma-detail-container,
body.lightbox-product-detail-page .lightbox-use-section > .lightbox-container,
body.lightbox-product-detail-page .lightbox-final-section > .lightbox-container,
body.faq-policy-page:not(.shipping-policy-page) .faq-summary-band > .faq-shell,
body.faq-policy-page:not(.shipping-policy-page) .faq-question-section > .faq-shell,
body[data-site-page="shop"].home-v2-storefront-page main > section:nth-of-type(odd):not(:first-of-type) > .container {
  position: relative;
  z-index: 1;
}

body.luma-product-detail-page .luma-light-section .luma-section-heading p,
body.luma-product-detail-page .luma-light-section .luma-control-grid p,
body.lightbox-product-detail-page .lightbox-use-card p,
body.faq-policy-page:not(.shipping-policy-page) .faq-summary-grid p,
body.faq-policy-page:not(.shipping-policy-page) .faq-question-section .faq-section-heading p,
body.faq-policy-page:not(.shipping-policy-page) .faq-topic-card > p,
body.faq-policy-page:not(.shipping-policy-page) .faq-topic-card details p {
  color: var(--storefront-paper-muted);
}

body[data-site-page="home"]:not(.gallery-page) .home-v2-gallery-topfade {
  background: linear-gradient(180deg, rgba(247, 245, 251, 0) 0%, #f7f5fb 100%);
}

body[data-site-page]:not([data-site-page="cart"]).home-v2-page .footer,
body[data-site-page]:not([data-site-page="cart"]).home-v2-storefront-page .footer {
  background: var(--storefront-paper-bg);
}

body[data-site-page]:not([data-site-page="cart"]).home-v2-page .footer::before,
body[data-site-page]:not([data-site-page="cart"]).home-v2-storefront-page .footer::before {
  background: linear-gradient(180deg, rgba(247, 245, 251, 0) 0%, rgba(247, 245, 251, 0.76) 52%, #f7f5fb 100%);
}

/* Shop hero/catalog continuous dark field */
body[data-site-page="shop"].home-v2-storefront-page main {
  background:
    linear-gradient(rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 156, 255, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(122, 88, 232, 0.24), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(85, 47, 182, 0.2), transparent 30%),
    linear-gradient(180deg, #161624 0%, #0c0d17 46%, #06070f 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

body[data-site-page="shop"].home-v2-storefront-page main > section:first-of-type,
body[data-site-page="shop"].home-v2-storefront-page main > section.shop-catalog-section:nth-of-type(2) {
  background: transparent;
}

body[data-site-page="shop"].home-v2-storefront-page main > section:first-of-type::before,
body[data-site-page="shop"].home-v2-storefront-page main > section.shop-catalog-section:nth-of-type(2)::before {
  background-image: none;
  opacity: 0;
}
