@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --bg: #07070b;
  --bg-elevated: #121118;
  --panel: rgba(18, 17, 25, 0.86);
  --panel-strong: rgba(14, 13, 19, 0.96);
  --panel-soft: rgba(16, 15, 22, 0.76);
  --line: rgba(219, 214, 236, 0.12);
  --line-strong: rgba(204, 190, 248, 0.26);
  --text: #fbfbff;
  --muted: #bab4cb;
  --accent: #cab9ff;
  --accent-soft: #eee7ff;
  --accent-cool: #d9d5e5;
  --accent-cool-soft: #f6f3ff;
  --accent-deep: #9d88da;
  --success: #8ff0c0;
  --danger: #ff9aa7;
  --glow: rgba(202, 185, 255, 0.24);
  --glow-cool: rgba(233, 229, 244, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  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%);
  min-height: 100vh;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    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%);
  z-index: -2;
}

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

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

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

.site-shell {
  position: relative;
  overflow-x: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(58px);
}

.site-shell::before {
  width: 28rem;
  height: 28rem;
  right: -7rem;
  top: 2rem;
  background: rgba(202, 185, 255, 0.22);
}

.site-shell::after {
  width: 34rem;
  height: 34rem;
  left: -10rem;
  bottom: 2rem;
  background: rgba(233, 229, 244, 0.16);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(8, 8, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(202, 185, 255, 0.26);
}

.brand-copy {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(202, 185, 255, 0.22);
  color: var(--text);
}

.hero,
.page-hero {
  position: relative;
  padding: 5.5rem 0 2.4rem;
}

.hero-grid,
.split-grid,
.checkout-layout,
.cart-layout,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-grid,
.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.split-grid-featured-products {
  grid-template-columns: 1.03fr 0.97fr;
}

.checkout-layout,
.cart-layout,
.footer-grid {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(202, 185, 255, 0.08);
  border: 1px solid rgba(202, 185, 255, 0.18);
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 20px var(--glow);
}

.headline,
.page-hero h1,
.section-header h2,
.footer-card h2,
.hero-mini-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.headline {
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.headline span,
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #eee7ff 48%, #d9d5e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero h1,
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-hero-compact {
  padding: 2.5rem 0 0.85rem;
}

.page-hero-compact-inner h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  margin-top: 0.7rem;
}

.lead,
.page-hero p,
.section-header p,
.muted,
.footer-card p,
.footer-card small,
.footer-card a,
.note,
.subtle-note {
  color: var(--muted);
}

.lead {
  max-width: 46rem;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 1.1rem;
}

.section-copy {
  font-size: 1rem;
  max-width: none;
  margin-top: 0;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-card,
.panel,
.card,
.checkout-panel,
.feature-card,
.product-card,
.footer-card,
.stat,
.note,
.status-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.checkout-panel,
.footer-card,
.feature-card,
.card,
.product-card {
  overflow: hidden;
  position: relative;
}

.panel::before,
.card::before,
.product-card::before,
.checkout-panel::before,
.hero-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 185, 255, 0.48), transparent);
  opacity: 0.7;
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7rem;
  padding: 1.2rem 1.35rem;
}

.stat span {
  display: block;
  max-width: 20ch;
}

.hero-card,
.panel,
.checkout-panel,
.footer-card {
  padding: 1.4rem;
}

.checkout-panel {
  --checkout-autofill-font-family: var(--font-sans);
  --checkout-autofill-background: rgba(14, 13, 19, 0.98);
  --checkout-autofill-border: rgba(202, 185, 255, 0.22);
  --checkout-autofill-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  --checkout-autofill-text: var(--text);
  --checkout-autofill-muted: var(--muted);
  --checkout-autofill-accent: var(--accent-cool-soft);
  --checkout-autofill-hover: rgba(202, 185, 255, 0.14);
  --checkout-autofill-active-border: rgba(202, 185, 255, 0.18);
  --checkout-autofill-radius: 1rem;
}

.checkout-panel.has-address-autofill {
  overflow: visible;
}

.hero-card {
  background:
    linear-gradient(160deg, rgba(20, 18, 29, 0.98), rgba(10, 9, 15, 0.98)),
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.15), transparent 36%);
}

.hero-image-stack,
.product-card-media,
.gallery-card-media {
  position: relative;
  background: linear-gradient(180deg, rgba(24, 22, 34, 0.96), rgba(12, 11, 18, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.4rem;
  padding: 1rem;
  overflow: hidden;
}

.media-frame-window,
.product-gallery-image-window {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.hero-image-stack img,
.product-card-media img,
.gallery-card-media img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 1.15;
  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(calc(var(--image-scale, 1) * var(--image-hover-scale, 1)));
  transform-origin: center center;
  transition: transform 320ms ease, filter 320ms ease;
}

.media-frame-window > img,
.product-gallery-image-window > img {
  display: block;
  clip-path: none;
}

.media-fit-contain img {
  object-fit: contain;
}

img[data-site-image-field] {
  transform-origin: center center;
}

.card:hover img,
.product-card:hover img,
.panel:hover img {
  --image-hover-scale: 1.03;
  filter: saturate(1.05);
}

.hero-stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-stat-list div,
.callout-box {
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-list strong,
.stat strong,
.price {
  display: block;
  font-family: var(--font-display);
}

.hero-stat-list strong,
.stat strong {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.hero-caption-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
}

.hero-caption-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.hero-caption-card span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 1.25rem 0 4rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.stat-grid,
.feature-grid,
.grid-3,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card-body,
.feature-card {
  padding: 1.15rem;
}

.card-title,
.product-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.product-title {
  margin-top: 0.85rem;
  font-size: 1.42rem;
}

.product-intro {
  margin-top: 0.75rem;
  line-height: 1.65;
}

.price-row,
.card-meta,
.summary-row,
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stacked-row {
  align-items: flex-start;
}

.price {
  font-size: 1.15rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(202, 185, 255, 0.12);
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.qty-control input {
  width: 3rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  padding: 0.55rem 0.2rem;
  -moz-appearance: textfield;
}

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

.qty-control button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
}

.qty-control button:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 2px;
  border-radius: 50%;
}

.button,
.button-secondary,
.button-ghost,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #120d18;
  box-shadow: 0 18px 38px rgba(157, 136, 218, 0.28);
}

.button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(202, 185, 255, 0.22);
  color: var(--text);
}

.button-ghost,
.inline-link {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.inline-link {
  min-height: auto;
  padding: 0;
  border: 0;
  justify-content: flex-start;
  color: var(--accent-cool-soft);
  font-weight: 700;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 3px;
}

.note,
.status-box {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.subtle-note {
  margin-top: 0.9rem;
  line-height: 1.6;
}

.status-box[data-tone="success"] {
  border-color: rgba(140, 240, 187, 0.24);
  color: var(--success);
}

.status-box[data-tone="danger"] {
  border-color: rgba(255, 156, 170, 0.24);
  color: var(--danger);
}

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

.product-config-grid {
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.92rem 1rem;
  outline: none;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field-helper {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.search-select {
  position: relative;
}

.search-select-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem;
  max-height: 16rem;
  overflow-y: auto;
  border: 1px solid rgba(202, 185, 255, 0.22);
  border-radius: 1rem;
  background: rgba(14, 13, 19, 0.98);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.search-select-option,
.search-select-empty {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 0;
  border-radius: 0.85rem;
  text-align: left;
}

.search-select-option {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.search-select-option:hover,
.search-select-option:focus-visible {
  background: rgba(202, 185, 255, 0.14);
  outline: none;
}

.search-select-option-code {
  color: var(--accent-cool-soft);
  font-weight: 800;
}

.search-select-empty {
  background: transparent;
  color: var(--muted);
}

[data-address1-field] {
  position: relative;
  z-index: 12;
}

mapbox-address-autofill {
  display: block;
}

.checkout-address-helper {
  transition: color 180ms ease, opacity 180ms ease;
}

.checkout-address-helper[data-autofill-state="active"] {
  color: var(--accent-cool-soft);
}

.checkout-locked-field {
  position: relative;
}

.checkout-locked-field input[readonly] {
  padding-right: 5.8rem;
  color: rgba(248, 247, 250, 0.94);
  background:
    linear-gradient(160deg, rgba(25, 23, 36, 0.96), rgba(16, 15, 23, 0.96)),
    radial-gradient(circle at right center, rgba(202, 185, 255, 0.08), transparent 42%);
  cursor: default;
}

.checkout-locked-field-badge {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(202, 185, 255, 0.18);
  background: rgba(202, 185, 255, 0.08);
  color: var(--accent-cool-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(202, 185, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(202, 185, 255, 0.1);
}

.artwork-upload-field {
  margin-top: 0.35rem;
}

.artwork-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.artwork-dropzone {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border: 1px dashed rgba(202, 185, 255, 0.32);
  border-radius: 1.15rem;
  background: rgba(202, 185, 255, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.artwork-dropzone:hover,
.artwork-dropzone.is-dragover {
  border-color: rgba(202, 185, 255, 0.56);
  background: rgba(202, 185, 255, 0.12);
  transform: translateY(-1px);
}

.artwork-dropzone:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 3px;
}

.artwork-dropzone-title {
  font-weight: 800;
  color: var(--text);
}

.artwork-dropzone-copy,
.artwork-dropzone-meta,
.artwork-selection-copy {
  color: var(--muted);
  line-height: 1.55;
}

.artwork-selection {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.artwork-selection-with-preview {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.artwork-selection-reference {
  border-color: rgba(202, 185, 255, 0.18);
  background: rgba(202, 185, 255, 0.06);
}

.artwork-selection-preview {
  width: 100%;
}

.artwork-selection-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.85rem;
}

.artwork-selection-title,
.artwork-selection-name {
  font-weight: 800;
}

.artwork-selection-name {
  margin-top: 0.2rem;
  color: var(--text);
}

.option-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.option-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.option-pill input {
  margin: 0;
}

.product-feature-list,
.summary-bullets {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.summary-bullets {
  margin-top: 0.6rem;
  color: var(--muted);
}

.summary-bullets.compact {
  margin-bottom: 0;
}

.color-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.color-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
}

.summary-list,
.detail-list {
  display: grid;
  gap: 0.85rem;
}

.checkout-stage-head,
.checkout-customer-grid {
  display: grid;
  gap: 1rem;
}

.checkout-payment-stage {
  display: grid;
  gap: 1rem;
}

.checkout-stage-head {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.checkout-summary-col {
  align-self: start;
  position: sticky;
  top: calc(4.5rem + 1.25rem);
  z-index: 2;
}

.checkout-summary-panel {
  position: relative;
  top: auto;
  overflow: visible;
  background:
    linear-gradient(160deg, rgba(16, 15, 24, 0.98), rgba(9, 8, 14, 0.96)),
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.08), transparent 42%);
}

.checkout-panel.checkout-summary-panel {
  overflow: visible;
}

.checkout-customer-card,
.checkout-embed-shell {
  margin-top: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.checkout-customer-card {
  padding: 1rem 1.05rem;
}

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

.checkout-trust-pill {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(202, 185, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.checkout-trust-pill strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.checkout-trust-pill span {
  color: var(--muted);
  line-height: 1.6;
}

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

.checkout-customer-address {
  grid-column: 1 / -1;
}

.checkout-summary-panel .checkout-customer-grid {
  grid-template-columns: 1fr;
}

.checkout-summary-panel .checkout-customer-address {
  grid-column: auto;
}

.checkout-summary-item-copy {
  min-width: 0;
  display: grid;
  gap: 0.32rem;
}

.checkout-summary-item-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.checkout-mini-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cool-soft);
}

.checkout-mini-copy {
  margin-top: 0.45rem;
  color: var(--text);
  line-height: 1.65;
}

.checkout-embed-shell {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 28, 0.98), rgba(10, 10, 16, 0.96)),
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.12), transparent 38%);
  border-color: rgba(202, 185, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.checkout-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.checkout-embed-title {
  display: block;
  margin-top: 0.18rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.checkout-embed-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 185, 255, 0.18);
  color: var(--accent-cool-soft);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-embed-frame {
  padding: 0.45rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 240, 249, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 42px rgba(0, 0, 0, 0.22);
}

.checkout-embed {
  min-height: 32rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
}

.checkout-embed-loading {
  margin-bottom: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  background: rgba(14, 13, 19, 0.06);
  color: #4c4560;
}

.summary-row.total {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
}

.cart-item {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.cart-item img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.footer {
  padding: 1rem 0 3rem;
}

.footer-card {
  background: linear-gradient(160deg, rgba(8, 16, 26, 0.98), rgba(5, 11, 19, 0.98));
}

.footer-grid-shared {
  grid-template-columns: 1.2fr 0.8fr 0.95fr;
}

.footer-column {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.footer-column-brand {
  gap: 1rem;
}

.footer-secret-trigger {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-secret-link {
  position: absolute;
  inset: -0.35rem;
  display: block;
  border-radius: 0.85rem;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

.footer-tag,
.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cool-soft);
}

.footer-links,
.footer-socials {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  width: fit-content;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: #fff;
  overflow: hidden;
}

.social-icon img,
.social-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon svg {
  fill: currentColor;
}

.social-icon-etsy {
  background: #f1641e;
}

.social-icon-facebook {
  background: #1877f2;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1f0d00;
  font-size: 0.74rem;
  font-weight: 800;
}

.product-stack,
.gallery-note,
.callout-stack {
  display: grid;
  gap: 1rem;
}

.product-feature-card {
  gap: 1.15rem;
}

.product-panel-head,
.product-panel-copy,
.product-panel-price-block {
  display: grid;
}

.product-panel-head {
  gap: 0.9rem;
}

.product-panel-copy {
  gap: 0.72rem;
}

.product-panel-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.2vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.product-panel-copy p {
  margin: 0;
  max-width: 40ch;
}

.logo-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.logo-callout img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
}

.hero-copy {
  align-self: center;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 185, 255, 0.14);
  color: var(--text);
  font-size: 0.9rem;
}

.proof-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--glow-cool);
}

.hero-spotlight {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-visual-frame {
  display: block;
  padding: 0;
}

.hero-visual-frame > .media-frame-window {
  border-radius: inherit;
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(24, 22, 34, 0.96), rgba(12, 11, 18, 0.94));
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-stat,
.journey-step,
.catalog-path-card,
.gallery-feature-card,
.gallery-cta-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mini-stat {
  padding: 1.2rem 1.25rem;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.journey-grid,
.catalog-paths,
.gallery-header-grid {
  display: grid;
  gap: 1rem;
}

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

.journey-step {
  padding: 1.2rem 1.25rem;
}

.journey-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(202, 185, 255, 0.18), rgba(233, 229, 244, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-weight: 700;
}

.comparison-highlights {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.comparison-highlights li + li {
  margin-top: 0.45rem;
}

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

.catalog-path-card,
.gallery-feature-card,
.gallery-cta-band {
  padding: 1.25rem;
}

.catalog-callout {
  align-self: end;
}

.product-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover,
.card:hover,
.panel:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 185, 255, 0.22);
}

.product-card-featured {
  background:
    linear-gradient(180deg, rgba(19, 17, 28, 0.92), rgba(10, 9, 15, 0.94)),
    radial-gradient(circle at top right, rgba(202, 185, 255, 0.12), transparent 42%);
}

.product-listing-card {
  min-height: 100%;
}

.product-listing-link {
  display: grid;
  gap: 0.9rem;
  height: 100%;
  padding: 1rem;
}

.product-card-body {
  display: grid;
  gap: 0.72rem;
}

.product-card-topline {
  align-items: start;
  gap: 0.85rem;
}

.product-card-link {
  display: block;
  border-radius: 1.3rem;
  overflow: hidden;
}

.product-card-media {
  border-radius: 1.3rem;
}

.product-card-media img {
  border-radius: 0;
  clip-path: none;
  background: rgba(10, 9, 15, 0.92);
}

.product-title {
  margin: 0;
}

.product-intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
}

.product-card-preview-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-preview-thumb {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.16rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.68rem;
  clip-path: inset(0 round 0.68rem);
  background: rgba(10, 9, 15, 0.92);
}

.product-card-preview-more {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-card-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-soft);
  font-weight: 700;
}

.product-card-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.product-card-editor-link {
  font-size: 0.92rem;
}

.product-card-link-inline::after {
  content: "\203A";
  font-size: 1rem;
}

.product-listing-card:hover .product-card-link-inline {
  color: var(--accent-cool-soft);
}

.product-support-note {
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(202, 185, 255, 0.12);
  color: var(--muted);
  line-height: 1.6;
}

.product-actions-row {
  padding-top: 0.35rem;
}

.gallery-card-title {
  margin-top: 0.8rem;
}

.gallery-card-copy {
  margin-top: 0.6rem;
}

.gallery-style-link {
  width: fit-content;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.gallery-style-link:hover,
.gallery-style-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(202, 185, 255, 0.2);
  color: var(--accent-cool-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  outline: none;
}

.gallery-header-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.gallery-feature-card {
  display: grid;
  gap: 1rem;
}

.gallery-highlight-copy {
  display: grid;
  gap: 0.8rem;
}

.gallery-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.product-page-section {
  padding-top: 2.35rem;
}

.product-back-link {
  margin-bottom: 1rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.35rem;
  align-items: start;
}

.product-gallery-panel,
.product-detail-panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.product-gallery-panel {
  padding: 1.15rem;
  overflow: hidden;
}

.product-detail-panel {
  display: grid;
  gap: 1.1rem;
  padding: 1.45rem;
}

.product-detail-panel::before,
.product-gallery-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 185, 255, 0.48), transparent);
  opacity: 0.7;
}

.product-detail-header {
  display: grid;
  gap: 0.72rem;
}

.product-detail-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 0.96;
}

.product-detail-copy {
  margin: 0;
  max-width: 42ch;
}

.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-detail-highlights-block,
.product-detail-buybox {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-detail-section-title {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-section-copy {
  margin: 0;
  color: var(--muted);
}

.product-style-reference {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(202, 185, 255, 0.18);
  background: rgba(202, 185, 255, 0.06);
}

.product-style-reference img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.9rem;
}

.product-style-reference strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
}

.product-detail-form {
  display: grid;
  gap: 1rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.product-color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-color-button {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-color-button:hover,
.product-color-button.is-active {
  border-color: rgba(202, 185, 255, 0.34);
  background: rgba(202, 185, 255, 0.12);
  transform: translateY(-1px);
}

.product-color-button:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 3px;
}

/* Size selection button cards */
.product-size-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.55rem;
}

.product-size-button {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-size-button:hover {
  border-color: rgba(202, 185, 255, 0.24);
  background: rgba(202, 185, 255, 0.06);
  transform: translateY(-1px);
}

.product-size-button.is-active {
  border-color: rgba(202, 185, 255, 0.44);
  background: rgba(202, 185, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(202, 185, 255, 0.18) inset;
  transform: translateY(-1px);
}

.product-size-button:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 3px;
}

.product-size-button-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.product-size-button-dims {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
}

.product-size-button-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.12rem;
}

.product-detail-actions-bundle {
  justify-content: flex-start;
}

.mount-matrix {
  display: grid;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.mount-matrix-grid {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.9fr) repeat(2, minmax(7.2rem, 1fr));
  gap: 0.55rem;
  min-width: 24rem;
}

.mount-matrix-cell {
  min-width: 0;
}

.mount-matrix-head {
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  background: rgba(202, 185, 255, 0.12);
  border: 1px solid rgba(202, 185, 255, 0.18);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: none;
}

.mount-matrix-style-head {
  text-align: left;
}

.mount-matrix-style-cell {
  display: grid;
  align-content: center;
  padding: 0.8rem 0.9rem;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mount-matrix-style-cell strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.25;
}

.mount-option-tile {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  justify-items: center;
  padding: 0.7rem 0.55rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 22, 0.78);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mount-option-tile.is-active,
.mount-option-tile.is-selected,
.mount-option-tile:hover {
  border-color: rgba(202, 185, 255, 0.34);
  background: rgba(202, 185, 255, 0.08);
  transform: translateY(-1px);
}

.mount-option-tile.is-selected {
  box-shadow: inset 0 0 0 1px rgba(202, 185, 255, 0.14);
}

.mount-option-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.mount-preview-link {
  width: 100%;
  min-height: 2.35rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
}

.mount-qty-control {
  width: 100%;
  justify-content: center;
}

.mount-selection-summary {
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-gallery-layout {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

.product-gallery-thumbs {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.product-gallery-thumb {
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.72rem;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: rgba(202, 185, 255, 0.34);
  background: rgba(202, 185, 255, 0.12);
  transform: translateY(-1px);
}

.product-gallery-thumb:focus-visible {
  outline: 2px solid rgba(202, 185, 255, 0.72);
  outline-offset: 3px;
}

.product-gallery-stage,
.product-gallery-shell {
  position: relative;
}

.product-gallery-stage {
  display: grid;
  gap: 0.9rem;
}

.product-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-y pinch-zoom;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-gallery-slide {
  min-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.product-gallery-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  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;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(24, 22, 34, 0.96), rgba(12, 11, 18, 0.94));
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 9, 15, 0.82);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
}

.product-gallery-nav-prev {
  left: 0.8rem;
}

.product-gallery-nav-next {
  right: 0.8rem;
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.product-gallery-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-gallery-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.hidden {
  display: none !important;
}

.site-editor-toolbar {
  position: fixed;
  top: 5.4rem;
  right: 1rem;
  z-index: 80;
  width: min(24rem, calc(100vw - 2rem));
  max-height: calc(100vh - 6.4rem);
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 1.25rem;
  border: 1px solid rgba(202, 185, 255, 0.22);
  background: rgba(11, 13, 20, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  scrollbar-gutter: stable;
}

.site-editor-header,
.site-editor-actions {
  display: flex;
  gap: 0.7rem;
}

.site-editor-header {
  flex-direction: column;
}

.site-editor-toolbar.is-dirty .site-editor-header strong::after {
  content: " • Unsaved";
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-editor-header span,
.site-editor-copy {
  color: var(--muted);
  line-height: 1.55;
}

.site-editor-nav-heading {
  color: var(--accent-cool-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-editor-page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-editor-listing-tabs {
  display: grid;
  gap: 0.45rem;
}

.site-editor-tab,
.site-editor-listing-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  border-radius: 999px;
}

.site-editor-listing-tab {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.site-editor-tab.is-active,
.site-editor-listing-tab.is-active {
  border-color: rgba(202, 185, 255, 0.44);
  background: rgba(202, 185, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(202, 185, 255, 0.16);
}

.site-editor-tab:disabled {
  opacity: 1;
  cursor: default;
}

.site-editor-image-controls,
.site-editor-fieldset {
  display: grid;
  gap: 0.7rem;
}

.site-editor-fieldset {
  padding: 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.site-editor-range-row {
  display: grid;
  gap: 0.35rem;
}

.site-editor-range-row label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-cool-soft);
}

.site-editor-range-row input {
  width: 100%;
}

.site-editor-image-heading {
  font-weight: 800;
}

.site-editor-image-copy,
.site-editor-image-value {
  color: var(--muted);
  line-height: 1.5;
}

.site-editor-text-heading {
  font-weight: 800;
}

.site-editor-actions {
  flex-wrap: wrap;
}

body.site-editor-mode .product-listing-card {
  scroll-margin-top: 6.8rem;
}

@keyframes site-editor-listing-focus-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(202, 185, 255, 0.34),
      0 18px 44px rgba(0, 0, 0, 0.22);
  }
  70% {
    box-shadow:
      0 0 0 0.7rem rgba(202, 185, 255, 0),
      0 22px 50px rgba(202, 185, 255, 0.18);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(202, 185, 255, 0),
      0 18px 44px rgba(0, 0, 0, 0.22);
  }
}

body.site-editor-mode .product-listing-card.site-editor-listing-focus {
  border-color: rgba(202, 185, 255, 0.5);
  box-shadow:
    0 0 0 2px rgba(202, 185, 255, 0.34),
    0 18px 44px rgba(0, 0, 0, 0.22);
  animation: site-editor-listing-focus-pulse 1.4s ease;
}

.site-managed-text {
  --site-text-offset-x: 0px;
  --site-text-offset-y: 0px;
  --site-text-scale: 1;
  transform: translate(var(--site-text-offset-x), var(--site-text-offset-y)) scale(var(--site-text-scale));
  transform-origin: center center;
}

.site-editor-text-selection {
  position: fixed;
  z-index: 120;
  pointer-events: none;
  border: 2px solid rgba(202, 185, 255, 0.88);
  border-radius: 0.9rem;
  box-shadow:
    0 0 0 1px rgba(11, 13, 20, 0.88),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

body.site-editor-mode[data-site-page="home"] .home-v2-gallery-viewport.is-editor-grid {
  padding-block: 0;
  touch-action: auto;
}

body.site-editor-mode[data-site-page="home"] .home-v2-gallery-stage.is-editor-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.2rem;
  perspective: none;
  perspective-origin: initial;
}

body.site-editor-mode[data-site-page="home"] .home-v2-gallery-stage.is-editor-grid .home-v2-gallery-card {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: auto !important;
  pointer-events: auto;
}

body.site-editor-mode[data-site-page="home"] .home-v2-gallery-stage.is-editor-grid .home-v2-gallery-card-copy {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  display: block;
  z-index: 2;
}

body.site-editor-mode[data-site-page="home"] .home-v2-gallery-stage.is-editor-grid .home-v2-gallery-card-action,
body.site-editor-mode[data-site-page="home"] .home-v2-gallery-controls.is-editor-hidden {
  display: none;
}

.site-editor-text-selection-label {
  position: absolute;
  top: -1.95rem;
  left: 0;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 13, 20, 0.96);
  border: 1px solid rgba(202, 185, 255, 0.36);
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-editor-text-handle {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid rgba(202, 185, 255, 0.96);
  border-radius: 999px;
  background: rgba(11, 13, 20, 0.98);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.site-editor-text-handle[data-site-editor-text-handle="nw"] {
  top: 0;
  left: 0;
  cursor: nwse-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="ne"] {
  top: 0;
  left: 100%;
  cursor: nesw-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="se"] {
  top: 100%;
  left: 100%;
  cursor: nwse-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="sw"] {
  top: 100%;
  left: 0;
  cursor: nesw-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="n"] {
  top: 0;
  left: 50%;
  cursor: ns-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="e"] {
  top: 50%;
  left: 100%;
  cursor: ew-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="s"] {
  top: 100%;
  left: 50%;
  cursor: ns-resize;
}

.site-editor-text-handle[data-site-editor-text-handle="w"] {
  top: 50%;
  left: 0;
  cursor: ew-resize;
}

.site-editable,
.site-editable-image {
  transition: box-shadow 180ms ease, background 180ms ease, outline-color 180ms ease;
}

.site-editable {
  outline: 2px dashed rgba(202, 185, 255, 0.42);
  outline-offset: 0.25rem;
  cursor: grab;
  user-select: none;
}

.site-editable.is-selected {
  outline-color: rgba(202, 185, 255, 0.88);
  background: rgba(202, 185, 255, 0.08);
}

.site-editable:focus {
  background: rgba(202, 185, 255, 0.08);
  outline-color: rgba(202, 185, 255, 0.8);
}

.site-editable.is-editing,
.site-editable[contenteditable="true"]:focus {
  cursor: text;
  user-select: text;
  background: rgba(202, 185, 255, 0.12);
}

.site-editable-image {
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(202, 185, 255, 0.18);
}

.site-editable-image.is-selected {
  box-shadow:
    0 0 0 4px rgba(202, 185, 255, 0.42),
    0 0 0 8px rgba(202, 185, 255, 0.12);
}

.site-editable-image:hover,
.site-editable-image:focus-visible {
  box-shadow: 0 0 0 4px rgba(202, 185, 255, 0.38);
}

body.site-editor-text-manipulating,
body.site-editor-text-manipulating * {
  user-select: none !important;
}

:root {
  --bg: #05050a;
  --bg-elevated: #11111a;
  --panel: rgba(14, 14, 22, 0.84);
  --panel-strong: rgba(11, 11, 18, 0.96);
  --panel-soft: rgba(16, 16, 26, 0.72);
  --line: rgba(219, 214, 236, 0.1);
  --line-strong: rgba(214, 196, 255, 0.28);
  --accent: #d6c4ff;
  --accent-soft: #f3eeff;
  --accent-deep: #8e74d8;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius-xxl: 40px;
}

body {
  background:
    radial-gradient(circle at 14% 16%, rgba(244, 240, 255, 0.11), transparent 24%),
    radial-gradient(circle at top right, rgba(167, 137, 247, 0.24), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(119, 96, 201, 0.18), transparent 20%),
    linear-gradient(180deg, #040408 0%, #090912 38%, #06060b 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 112px 112px;
}

.container {
  width: min(1200px, calc(100% - 2rem));
}

.topbar {
  background: rgba(7, 7, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 196, 255, 0.45), transparent);
  opacity: 0.8;
}

.topbar-inner {
  padding: 1rem 0 1.05rem;
}

.brand {
  gap: 1rem;
}

.brand-logo {
  width: 3.1rem;
  height: 3.1rem;
  box-shadow:
    0 0 0 1px rgba(214, 196, 255, 0.12),
    0 0 36px rgba(214, 196, 255, 0.22);
}

.brand-copy {
  letter-spacing: 0.12em;
}

.brand-copy small {
  letter-spacing: 0.22em;
}

.nav {
  gap: 0.45rem;
}

.nav a {
  padding: 0.66rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.02);
}

.nav a:hover,
.nav a.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(214, 196, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero,
.page-hero {
  padding: 6.6rem 0 2.9rem;
}

.hero-grid,
.split-grid,
.checkout-layout,
.cart-layout,
.footer-grid {
  gap: 1.35rem;
}

.hero-card,
.panel,
.card,
.checkout-panel,
.feature-card,
.product-card,
.footer-card,
.stat,
.note,
.status-box,
.mini-stat,
.journey-step,
.catalog-path-card,
.gallery-feature-card,
.gallery-cta-band,
.product-gallery-panel,
.product-detail-panel,
.product-detail-summary-card {
  backdrop-filter: blur(18px);
}

.hero-card,
.panel,
.card,
.checkout-panel,
.feature-card,
.product-card,
.footer-card {
  border-radius: var(--radius-xxl);
  background:
    linear-gradient(180deg, rgba(17, 17, 26, 0.92), rgba(10, 10, 16, 0.92)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.08), transparent 36%);
}

.hero-card::before,
.panel::before,
.card::before,
.product-card::before,
.checkout-panel::before,
.footer-card::before,
.product-gallery-panel::before,
.product-detail-panel::before {
  background: linear-gradient(90deg, transparent, rgba(214, 196, 255, 0.55), transparent);
}

.hero-card,
.panel,
.checkout-panel,
.footer-card {
  padding: 1.55rem;
}

.headline {
  margin-top: 1.15rem;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.lead {
  max-width: 48rem;
  font-size: 1.09rem;
}

.hero-image-stack,
.product-card-media,
.gallery-card-media {
  padding: 1.1rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(25, 24, 36, 0.98), rgba(10, 10, 16, 0.96)),
    radial-gradient(circle at top left, rgba(214, 196, 255, 0.08), transparent 30%);
}

.media-frame-window,
.product-gallery-image-window {
  border-radius: 1.2rem;
}

.hero-image-stack img,
.product-card-media img,
.gallery-card-media img,
.product-gallery-slide img {
  filter: saturate(1.03) contrast(1.01);
}

.button,
.button-secondary,
.button-ghost,
.inline-link {
  min-height: 3.15rem;
}

.button {
  box-shadow:
    0 20px 40px rgba(143, 116, 216, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-secondary,
.button-ghost {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.inline-link:hover {
  transform: translateY(-3px);
}

.section {
  padding: 1.6rem 0 4.4rem;
}

.section-tight {
  padding-top: 0.25rem;
}

.section-header {
  margin-bottom: 1.55rem;
}

.section-header-stacked {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.section-header-wide {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
}

.page-hero-copy,
.hero-spotlight-note,
.product-detail-summary-card,
.product-support-note,
.gallery-card-footer {
  display: grid;
  gap: 0.8rem;
}

.hero-spotlight-note {
  padding: 1.05rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-spotlight-note p {
  margin: 0;
  color: var(--muted);
}

.hero-stat-list {
  margin-top: 1.7rem;
  gap: 0.85rem;
}

.hero-stat-list div {
  min-height: 100%;
  padding: 1.1rem 1.05rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.08), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-band {
  margin-top: -0.6rem;
}

.mini-stat,
.journey-step,
.catalog-path-card,
.gallery-feature-card,
.gallery-cta-band,
.product-detail-summary-card {
  background:
    linear-gradient(180deg, rgba(18, 17, 28, 0.9), rgba(10, 10, 16, 0.9)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.08), transparent 42%);
}

.catalog-path-card,
.gallery-feature-card,
.gallery-cta-band,
.product-detail-summary-card {
  border-radius: 1.65rem;
}

.mini-stat span,
.journey-step p,
.catalog-path-card p,
.gallery-feature-card p,
.gallery-card-note {
  color: var(--muted);
}

.journey-step {
  min-height: 100%;
}

.journey-step-number {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shop-hero-grid {
  align-items: stretch;
}

.product-panel-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(214, 196, 255, 0.12);
}

.product-panel-price-block {
  gap: 0.3rem;
}

.product-panel-price-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-panel-topline .price {
  font-size: 1.7rem;
}

.product-panel-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-panel-visual {
  padding: 1.15rem;
}

.product-panel-visual img {
  aspect-ratio: 1.02;
}

.product-card {
  background:
    linear-gradient(180deg, rgba(18, 17, 28, 0.92), rgba(10, 10, 16, 0.94)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.08), transparent 42%);
}

.product-listing-link {
  gap: 1rem;
  padding: 1.05rem;
}

.product-card-body {
  gap: 0.82rem;
}

.product-card-highlights {
  margin: 0;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-card-highlights li + li {
  margin-top: 0.4rem;
}

.product-support-note {
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 196, 255, 0.12);
}

.gallery-card-topline {
  align-items: center;
}

.gallery-card-index {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.gallery-card-footer {
  margin-top: 1rem;
}

.product-page-section {
  padding-top: 1.6rem;
}

.product-back-link {
  margin-bottom: 0;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-detail-gallery-col {
  position: sticky;
  top: calc(4.5rem + 1.25rem);
}

.product-detail-info-col {
  display: grid;
  gap: 1.25rem;
}

.product-detail-header {
  display: grid;
  gap: 0.6rem;
}

.product-detail-price {
  font-size: 1.35rem;
}

.product-detail-highlights {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  line-height: 1.55;
}

.product-detail-buybox {
  padding: 1.08rem 1.1rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.07), transparent 42%);
}

.product-gallery-panel {
  padding: 1.2rem;
}

.product-gallery-track {
  border-radius: 1.3rem;
}

.footer-card {
  background:
    linear-gradient(180deg, rgba(16, 15, 24, 0.94), rgba(8, 8, 14, 0.96)),
    radial-gradient(circle at top right, rgba(214, 196, 255, 0.08), transparent 34%);
}

.footer-grid-shared {
  align-items: start;
}

.footer-column-brand {
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.18, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Product gallery horizontal thumbnail strip */
.product-gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-gallery-thumbs {
  order: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-gallery-thumb {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
  flex-shrink: 0;
  padding: 0;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: rgba(196, 148, 255, 0.6);
  transform: scale(1.06);
}

.product-gallery-stage {
  order: 1;
}

/* How it works mini-flow */
.product-how-it-works {
  margin: 1.4rem 0 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 148, 255, 0.12);
}

.product-how-it-works-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196, 148, 255, 0.7);
  margin-bottom: 0.75rem;
}

.product-how-it-works-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-how-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-how-step-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(196, 148, 255, 0.14);
  border: 1px solid rgba(196, 148, 255, 0.28);
  color: rgba(220, 190, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-how-step-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

.product-how-step-arrow {
  color: rgba(255, 255, 255, 0.22);
  font-size: 1.1rem;
  margin: 0 0.1rem;
}

/* Cart empty state teasers */
.cart-empty-teasers {
  margin-top: 2rem;
}

.cart-empty-teasers-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.85rem;
}

.cart-empty-teasers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}

.cart-empty-teaser {
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
  position: relative;
}

.cart-empty-teaser:hover {
  border-color: rgba(196, 148, 255, 0.28);
  transform: translateY(-2px);
}

.cart-empty-teaser-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cart-empty-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.cart-empty-teaser:hover .cart-empty-teaser-img img {
  transform: scale(1.04);
}

.cart-empty-teaser-body {
  padding: 0.75rem 0.9rem 0.85rem;
}

.cart-empty-teaser-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.2rem;
}

.cart-empty-teaser-price {
  font-size: 0.82rem;
  color: rgba(196, 148, 255, 0.8);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .checkout-layout,
  .cart-layout,
  .footer-grid,
  .product-grid,
  .gallery-header-grid,
  .product-detail-layout,
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery-col {
    position: static;
  }

  .checkout-summary-col {
    position: static;
    top: auto;
  }

  .stat-grid,
  .feature-grid,
  .grid-3,
  .gallery-grid,
  .info-band,
  .journey-grid,
  .catalog-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-gallery-layout {
    grid-template-columns: 1fr;
  }

  .site-editor-toolbar {
    position: static;
    width: auto;
    margin: 1rem;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .product-detail-hero-band {
    grid-template-columns: 1fr;
  }

  .product-gallery-thumbs {
    order: 2;
    grid-auto-flow: column;
    grid-auto-columns: minmax(4.3rem, 1fr);
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .checkout-summary-panel {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .section-header,
  .admin-topbar {
    align-items: flex-start;
  }

  .nav,
  .hero-actions,
  .button-row,
  .option-group {
    justify-content: flex-start;
  }

  .stat-grid,
  .feature-grid,
  .grid-3,
  .gallery-grid,
  .form-grid,
  .product-config-grid,
  .info-band,
  .journey-grid,
  .catalog-paths {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

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

  .product-panel-topline {
    width: 100%;
    justify-content: space-between;
  }

  .headline {
    font-size: 2.7rem;
  }

  .checkout-stage-head,
  .checkout-customer-grid,
  .gallery-cta-band {
    grid-template-columns: 1fr;
  }

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

  .product-detail-actions {
    align-items: stretch;
  }

  .artwork-selection-with-preview,
  .product-style-reference {
    grid-template-columns: 1fr;
  }

  .artwork-selection-preview img,
  .product-style-reference img {
    max-width: 7rem;
  }

  .checkout-embed-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-listing-link {
    padding: 0.85rem;
  }

  .product-card-preview-thumb {
    width: 2.3rem;
    height: 2.3rem;
  }

  .hero,
  .page-hero {
    padding-top: 4.4rem;
  }

}

/* ═══════════════════════════════════════════════════════════
   Touch-device hover suppression
   On touch devices CSS :hover fires on tap and can stick.
   Reset all hover-dependent styles so touch UIs feel stable.
═══════════════════════════════════════════════════════════ */
@media (hover: none) {
  /* Global nav */
  .nav a:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    box-shadow: none;
  }

  /* Image zoom on card hover */
  .card:hover img,
  .product-card:hover img,
  .panel:hover img {
    --image-hover-scale: 1;
    filter: none;
  }

  /* Button lifts */
  .button:hover,
  .button-secondary:hover,
  .button-ghost:hover,
  .inline-link:hover {
    transform: none;
  }

  /* Artwork dropzone */
  .artwork-dropzone:hover {
    border-color: rgba(202, 185, 255, 0.32);
    background: rgba(202, 185, 255, 0.05);
    transform: none;
  }

  /* Card / panel lifts */
  .product-card:hover,
  .card:hover,
  .panel:hover,
  .feature-card:hover {
    transform: none;
    border-color: var(--line);
  }

  .product-listing-card:hover .product-card-link-inline {
    color: var(--accent-soft);
  }

  /* Gallery style links */
  .gallery-style-link:hover {
    transform: none;
    background: transparent;
    color: inherit;
    box-shadow: none;
  }

  /* Product color buttons */
  .product-color-button:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transform: none;
  }

  /* Mount option tiles */
  .mount-option-tile:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(12, 14, 22, 0.78);
    transform: none;
  }

  /* Product gallery thumbs */
  .product-gallery-thumb:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  /* Cart teasers */
  .cart-empty-teaser:hover {
    border-color: rgba(255, 255, 255, 0.07);
    transform: none;
  }

  .cart-empty-teaser:hover .cart-empty-teaser-img img {
    transform: none;
  }

  /* Footer links */
  .footer-links a:hover {
    color: var(--muted);
  }

  /* Search select options */
  .search-select-option:hover {
    background: rgba(255, 255, 255, 0.03);
    outline: none;
  }
}

/* ══════════════════════════════════════════════════════════
   VISUAL TRANSFORMATION — premium tier upgrades
   ══════════════════════════════════════════════════════════ */

/* ── Shop hero — full visual treatment ─────────────────── */
body[data-site-page="shop"] .page-hero {
  padding: 7.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

body[data-site-page="shop"] .page-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 72vw;
  height: 72vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 136, 218, 0.22) 0%, rgba(202, 185, 255, 0.07) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body[data-site-page="shop"] .page-hero .container {
  position: relative;
  z-index: 1;
}

body[data-site-page="shop"] .page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: 52rem;
  margin: 0 auto;
}

body[data-site-page="shop"] .page-hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #eee7ff 45%, #cab9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-site-page="shop"] .page-hero p {
  font-size: 1.08rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0;
}

body[data-site-page="shop"] .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* ── Product cards — glow lift ──────────────────────────── */
.product-listing-card {
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 240ms ease,
              box-shadow 240ms ease;
}

.product-listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 185, 255, 0.28);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(202, 185, 255, 0.14),
    0 0 48px rgba(157, 136, 218, 0.14);
}

.product-listing-card:hover img {
  --image-hover-scale: 1.06;
  filter: saturate(1.08) brightness(1.03);
}

.product-listing-card:hover .product-card-link-inline {
  gap: 0.6rem;
  color: var(--accent);
}

/* ── Product card media — inner glow on hover ───────────── */
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(202, 185, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.product-listing-card:hover .product-card-media::after {
  opacity: 1;
}

/* ── Product page — buybox glassmorphism upgrade ────────── */
body[data-site-page="product"] .product-detail-buybox {
  background:
    linear-gradient(160deg, rgba(202, 185, 255, 0.07) 0%, rgba(157, 136, 218, 0.03) 100%),
    linear-gradient(180deg, rgba(18, 15, 28, 0.9) 0%, rgba(11, 9, 18, 0.94) 100%);
  border: 1px solid rgba(202, 185, 255, 0.2);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(202, 185, 255, 0.14);
  backdrop-filter: blur(16px);
}

/* ── Product page — section visual separation ───────────── */
body[data-site-page="product"] .product-detail-highlights {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 0.2rem;
}

body[data-site-page="product"] .product-detail-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* ── Product page — title + price visual impact ─────────── */
body[data-site-page="product"] .product-detail-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  background: linear-gradient(135deg, #ffffff 0%, #f0ecff 60%, #cab9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-site-page="product"] .product-detail-price {
  font-size: 1.5rem;
  color: var(--accent-soft);
}

/* ── Product page — "how it works" stronger treatment ────── */
body[data-site-page="product"] .product-how-it-works {
  border-color: rgba(196, 148, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(196, 148, 255, 0.08) 0%, rgba(157, 136, 218, 0.04) 100%);
}

/* ── Reveal animation — more expressive ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Product grid — card stagger timing ─────────────────── */
[data-product-grid] .product-card.reveal.is-visible:nth-child(1) { --reveal-delay: 0ms; }
[data-product-grid] .product-card.reveal.is-visible:nth-child(2) { --reveal-delay: 90ms; }
[data-product-grid] .product-card.reveal.is-visible:nth-child(3) { --reveal-delay: 180ms; }

/* ── Skeleton loading shimmer ───────────────────────────── */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.skeleton-block {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.product-skeleton-card {
  pointer-events: none;
}

.product-skeleton-card .product-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-skeleton-card .product-card-media .skeleton-block {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.skeleton-line {
  border-radius: 0.5rem;
  height: 1rem;
}


/* Security-friendly spacing and skeleton utilities. */
.list-spaced {
  margin-top: 1rem;
}

.checkout-entry-note {
  margin-top: 0.7rem;
}

.checkout-fulfillment-options {
  margin: 1rem 0 0.85rem;
}

.checkout-form-grid-spaced,
.checkout-block-spaced {
  margin-top: 1rem;
}

.checkout-payment-copy {
  margin-top: 0.55rem;
}

.order-result-main {
  padding: 8vh 0 4rem;
}

.order-result-panel {
  max-width: 760px;
  margin: 0 auto;
}

.order-result-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-top: 1rem;
}

.order-result-lead {
  max-width: none;
}

.order-result-note {
  margin-top: 1rem;
}

.cart-item-title {
  margin-top: 0.7rem;
}

.cart-item-qty {
  margin-top: 0.8rem;
}

.cart-item-remove {
  margin-top: 0.75rem;
}

.skeleton-fill {
  width: 100%;
  height: 100%;
}

.skeleton-shop-kicker {
  width: 48%;
  margin-bottom: 0.7rem;
}

.skeleton-shop-title {
  width: 82%;
  height: 1.5rem;
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
}

.skeleton-shop-line {
  width: 72%;
  margin-bottom: 0.3rem;
}

.skeleton-shop-line-short {
  width: 60%;
}

.skeleton-product-detail-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.2rem;
}

.skeleton-product-detail-kicker {
  width: 30%;
  margin-bottom: 1.4rem;
}

.skeleton-product-detail-title {
  width: 80%;
  height: 2.4rem;
  margin-bottom: 0.55rem;
  border-radius: 0.75rem;
}

.skeleton-product-detail-price {
  width: 28%;
  height: 1.8rem;
  margin-bottom: 1.8rem;
  border-radius: 0.75rem;
}

.skeleton-product-detail-copy {
  width: 100%;
  height: 5.5rem;
  border-radius: 0.85rem;
  margin-bottom: 0.75rem;
}

.skeleton-product-detail-panel {
  width: 100%;
  height: 8rem;
  border-radius: 0.85rem;
}

.approval-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(181, 139, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #06070c 0%, #090c15 100%);
  color: #f5f7ff;
  font-family: Arial, sans-serif;
}

.approval-card {
  width: min(640px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: rgba(16, 21, 36, 0.9);
  border: 1px solid rgba(194, 183, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.approval-pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c8a7ff;
  font-weight: 700;
}

.approval-pill-danger {
  color: #ff9caa;
}

.approval-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

.approval-card p {
  margin: 0 0 14px;
  line-height: 1.65;
  color: rgba(245, 247, 255, 0.82);
}

.approval-action {
  display: inline-block;
  margin-top: 8px;
  color: #141620;
  background: #c8a7ff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  font: inherit;
}

/* ── Upload / brief visual separator ───────────────────── */
.artwork-upload-field + .field.full {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.25rem;
}

/* ── How it works — number glow enhancement ────────────── */
.product-how-step-num {
  box-shadow: 0 0 8px rgba(196, 148, 255, 0.22);
}

/* ── Skip-to-content link ───────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -9999px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 0.65em 1.25em;
  background: var(--accent);
  color: #07070b;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: top 0s;
}
.skip-to-content:focus {
  top: 1rem;
}

/* ── Cart badge pulse ───────────────────────────────────── */
@keyframes cart-badge-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
[data-cart-count].cart-badge-pulse {
  animation: cart-badge-pulse 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ── Status message fade-in ─────────────────────────────── */
@keyframes status-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.status-box:not(.hidden) {
  animation: status-fade-in 0.28s ease-out both;
}

/* ── Shop + product grid — mobile only ─────────────────── */
@media (max-width: 640px) {
  /* Hero: much smaller heading, tighter padding, no glow blob */
  body[data-site-page="shop"] .page-hero {
    padding: 3rem 0 1.8rem;
    text-align: left;
  }

  body[data-site-page="shop"] .page-hero::before {
    display: none;
  }

  body[data-site-page="shop"] .page-hero-copy {
    align-items: flex-start;
    gap: 0.75rem;
  }

  body[data-site-page="shop"] .page-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
    letter-spacing: -0.04em;
    line-height: 0.94;
  }

  body[data-site-page="shop"] .page-hero p {
    font-size: 0.92rem;
    max-width: none;
  }

  /* Product grid: single column, tighter gap */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  /* Product cards: compact vertical layout */
  .product-listing-card .product-listing-link {
    gap: 0.65rem;
    padding: 0.75rem;
  }

  /* Image: shorter on mobile so it doesn't dominate */
  .product-listing-card .product-card-media {
    padding: 0.4rem 0.4rem 0.2rem;
  }

  .product-listing-card .product-card-media .media-frame-window {
    max-height: 130px;
    overflow: hidden;
  }

  .product-listing-card .product-card-media img {
    aspect-ratio: 21 / 9;
    max-height: 130px;
  }

  /* Hide thumbnail strip — saves significant space */
  .product-listing-card .product-card-preview-strip {
    display: none !important;
  }

  .product-listing-card .product-card-body {
    gap: 0.38rem;
  }

  .product-listing-card .product-title {
    font-size: 1rem;
    margin-top: 0;
  }

  .product-listing-card .product-intro {
    font-size: 0.84rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-listing-card .product-card-highlights {
    display: none;
  }

  .product-listing-card .product-card-topline {
    gap: 0.4rem;
  }

  .product-listing-card .price {
    font-size: 0.92rem;
  }

  .product-listing-card .pill {
    font-size: 0.7rem;
    padding: 0.22rem 0.58rem;
  }

  /* View product link — smaller */
  .product-listing-card .product-card-link-inline {
    font-size: 0.84rem;
  }

  .product-listing-card .product-card-link-row {
    gap: 0.55rem;
  }

  .product-listing-card .product-card-editor-link {
    font-size: 0.84rem;
  }

  /* Section padding tighter on mobile */
  body[data-site-page="shop"] .section {
    padding-top: 1rem;
  }
}

/* ── Video media (treated like img inside media frames) ─── */
.hero-image-stack video,
.product-card-media video,
.gallery-card-media video {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 1.15;
  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(calc(var(--image-scale, 1) * var(--image-hover-scale, 1)));
  transform-origin: center center;
  transition: transform 320ms ease, filter 320ms ease;
}
.media-frame-window > video,
.product-gallery-image-window > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: none;
}
.media-fit-contain video { object-fit: contain; }
.product-gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-preview-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.admin-media-frame-window video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Reduced-motion overrides ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .skip-to-content { transition: none; }
  [data-cart-count].cart-badge-pulse { animation: none; }
  .status-box:not(.hidden) { animation: none; }
  .skeleton-block { animation: none; }
  .reveal,
  .reveal.is-visible { transition: none !important; opacity: 1 !important; transform: none !important; }
}
