﻿.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-family: var(--font-title);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background:
    radial-gradient(20px 20px at 25% 22%, rgba(130, 112, 87, 0.8), transparent 72%),
    radial-gradient(14px 14px at 76% 74%, rgba(47, 91, 74, 0.85), transparent 72%),
    linear-gradient(180deg, #2a2724, #151411);
}

.main-nav {
  display: none;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  transition: 0.16s ease;
  white-space: nowrap;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-btn,
.icon-btn,
.btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  transition: 0.14s ease;
}

.pill-btn:hover,
.icon-btn:hover,
.btn:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.pill-btn.active {
  border-color: rgba(130, 112, 87, 0.65);
  background: var(--accent-soft);
}

.icon-btn {
  min-width: 42px;
  text-align: center;
  position: relative;
}

.cart-badge {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #080807;
  background: #dbc6a9;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 10px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-menu a {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  border: 1px solid var(--line);
  border-radius: var(--r3);
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 16% 16%, rgba(130, 112, 87, 0.2), transparent 62%),
    radial-gradient(880px 520px at 90% 94%, rgba(47, 91, 74, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-lg);
}

.hero-inner {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.hero h1 {
  line-height: 1.05;
  font-size: clamp(34px, 7vw, 68px);
}

.hero p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 66ch;
}

.hero-cta {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media {
  position: relative;
  min-height: 240px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.65));
}

.btn {
  border-radius: 14px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 14px;
}

.btn.primary {
  border-color: rgba(130, 112, 87, 0.65);
  background:
    radial-gradient(22px 18px at 24% 22%, rgba(130, 112, 87, 0.35), transparent 72%),
    linear-gradient(180deg, rgba(60, 52, 43, 0.8), rgba(40, 35, 29, 0.84));
}

.btn.soft {
  background: rgba(255, 255, 255, 0.02);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-md);
}

.panel-head {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.panel-head h2 {
  margin: 0;
  font-size: 17px;
}

.panel-body {
  padding: 14px;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(130, 112, 87, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.product-media {
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
  background: #11100f;
}

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

.product-body {
  padding: 12px;
  display: grid;
  gap: 9px;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.product-name {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

.product-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.product-price {
  font-weight: 800;
}

.product-stock {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}

.stock-out {
  color: #e8a09a;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  flex: 1;
  padding: 9px 10px;
  font-size: 13px;
}

.badge-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  color: var(--muted);
}

.controls-grid {
  display: grid;
  gap: 10px;
}

.filters-grid {
  display: grid;
  gap: 10px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 10px 12px;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.cart-layout {
  display: grid;
  gap: 14px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 74px 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
}

.cart-item.is-selected {
  border-color: rgba(130, 112, 87, 0.65);
  background: rgba(130, 112, 87, 0.12);
}

.cart-thumb {
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #11100f;
}

.cart-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-wrap .btn {
  padding: 6px 10px;
  border-radius: 10px;
}

.qty-number {
  min-width: 20px;
  text-align: center;
}

.bulk-actions-bar {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.bulk-actions-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.check-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.item-select-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.item-select-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cart-item-select {
  margin-top: 2px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin: 8px 0;
}

.summary-line.total {
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
}

.trust-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  color: var(--muted);
  font-size: 14px;
}

.grid-two,
.grid-three,
.grid-four {
  display: grid;
  gap: 12px;
}

.collection-card,
.story-card,
.info-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.collection-media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background: #141312;
}

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

.collection-body,
.story-body,
.info-body,
.metric-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.story-grid {
  display: grid;
  gap: 12px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lookbook-grid img {
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.philosophy {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(450px 260px at 18% 20%, rgba(130, 112, 87, 0.16), transparent 75%),
    rgba(255, 255, 255, 0.02);
  line-height: 1.8;
}

.account-layout {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.auth-grid {
  display: grid;
  gap: 12px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.order-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  text-transform: capitalize;
}

.order-status.pending { border-color: rgba(214, 173, 108, 0.55); }
.order-status.preparing,
.order-status.paid,
.order-status.read { border-color: rgba(111, 157, 202, 0.55); }
.order-status.shipped,
.order-status.replied { border-color: rgba(97, 157, 133, 0.55); }
.order-status.delivered { border-color: rgba(112, 173, 109, 0.6); }
.order-status.cancelled,
.order-status.refunded,
.order-status.archived { border-color: rgba(207, 107, 99, 0.66); }

.order-items-mini {
  display: grid;
  gap: 8px;
}

.order-item-mini {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  align-items: center;
}

.order-item-mini img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #11100f;
}

.order-item-mini-meta {
  display: grid;
  gap: 4px;
}

.order-item-edit {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-item-edit input {
  width: 84px;
}

.order-edit-grid {
  display: grid;
  gap: 8px;
}

.order-hint {
  color: var(--muted);
  font-size: 12px;
}

.order-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn.danger {
  border-color: rgba(207, 107, 99, 0.55);
  background: rgba(207, 107, 99, 0.14);
}

.btn.warn {
  border-color: rgba(214, 173, 108, 0.55);
  background: rgba(214, 173, 108, 0.12);
}

.admin-layout {
  display: grid;
  gap: 14px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.admin-tab.active {
  color: var(--text);
  border-color: rgba(130, 112, 87, 0.6);
  background: rgba(130, 112, 87, 0.2);
}

.admin-grid {
  display: grid;
  gap: 12px;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
}

.admin-item.with-select {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
}

.admin-item-main {
  min-width: 0;
}

.admin-product-shell {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-product-thumb {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #11100f;
  aspect-ratio: 1 / 1;
}

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

.admin-product-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.variant-builder {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.variant-rows {
  display: grid;
  gap: 10px;
}

.variant-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.variant-row-grid {
  display: grid;
  gap: 10px;
}

.stripe-link-card {
  display: grid;
  gap: 8px;
}

.stripe-link-url-preview {
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
}

.admin-item.is-selected,
.order-card.is-selected,
.admin-message-thread.is-selected {
  border-color: rgba(130, 112, 87, 0.65);
  background: rgba(130, 112, 87, 0.12);
}

.admin-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.theme-group {
  display: grid;
  gap: 10px;
}

.theme-group + .theme-group {
  margin-top: 16px;
}

.theme-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 0;
}

.theme-group-head h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-group-grid {
  display: grid;
  gap: 10px;
}

.theme-preview {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  background: linear-gradient(160deg, var(--preview-bg, #101010), var(--preview-surface, #1c1c1c));
}

.theme-preview span {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 18px;
  background: var(--preview-surface, rgba(255, 255, 255, 0.14));
}

.theme-preview span:nth-child(2) {
  background: color-mix(in srgb, var(--preview-surface, rgba(255, 255, 255, 0.14)) 70%, white 30%);
}

.theme-preview span:nth-child(3) {
  background: var(--preview-accent, rgba(255, 255, 255, 0.34));
}

.admin-item[data-theme-id="dark"] .theme-preview {
  --preview-bg: #090909;
  --preview-surface: #1b1917;
  --preview-accent: #827057;
}

.admin-item[data-theme-id="light"] .theme-preview {
  --preview-bg: #f3efe9;
  --preview-surface: #f4ece1;
  --preview-accent: #6d5b43;
}

.admin-item[data-theme-id="noel"] .theme-preview {
  --preview-bg: #0b1411;
  --preview-surface: #1b2b24;
  --preview-accent: #b23a3a;
}

.admin-item[data-theme-id="halloween"] .theme-preview {
  --preview-bg: #140f0a;
  --preview-surface: #2d1d0d;
  --preview-accent: #d17722;
}

.admin-item[data-theme-id="ete"] .theme-preview {
  --preview-bg: #0f161b;
  --preview-surface: #1f3542;
  --preview-accent: #2fa18f;
}

.admin-item[data-theme-id$="-glass"] .theme-preview {
  --preview-bg: rgba(12, 23, 35, 0.72);
  --preview-surface: rgba(178, 204, 232, 0.32);
  --preview-accent: rgba(227, 240, 255, 0.9);
  border-color: rgba(226, 239, 255, 0.38);
  background:
    linear-gradient(160deg, rgba(8, 15, 27, 0.6), rgba(17, 31, 48, 0.46)),
    url("../assets/liquid-glass-mountains.svg") center / cover no-repeat;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.admin-item[data-theme-id="liquid-glass"] .theme-preview {
  --preview-bg: rgba(16, 29, 44, 0.72);
  --preview-surface: rgba(194, 220, 248, 0.34);
  --preview-accent: rgba(227, 240, 255, 0.92);
  border-color: rgba(226, 239, 255, 0.44);
}

.admin-item[data-theme-id="crimson-glass"] .theme-preview {
  --preview-bg: rgba(30, 9, 13, 0.78);
  --preview-surface: rgba(196, 86, 112, 0.34);
  --preview-accent: rgba(255, 212, 223, 0.92);
  border-color: rgba(248, 200, 213, 0.44);
  background:
    linear-gradient(160deg, rgba(20, 6, 10, 0.62), rgba(45, 11, 18, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}

.admin-item[data-theme-id="obsidian-glass"] .theme-preview { --preview-accent: #9cb8d9; }
.admin-item[data-theme-id="arctic-glass"] .theme-preview { --preview-accent: #bbe6ff; }
.admin-item[data-theme-id="emerald-glass"] .theme-preview { --preview-accent: #8cd6b0; }
.admin-item[data-theme-id="sapphire-glass"] .theme-preview { --preview-accent: #97b9ff; }
.admin-item[data-theme-id="amethyst-glass"] .theme-preview { --preview-accent: #c2b2ff; }
.admin-item[data-theme-id="golden-noir-glass"] .theme-preview {
  --preview-accent: #e0c18b;
  background:
    linear-gradient(160deg, rgba(24, 16, 10, 0.64), rgba(44, 30, 15, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}
.admin-item[data-theme-id="sunset-glass"] .theme-preview {
  --preview-accent: #ffbc98;
  background:
    linear-gradient(160deg, rgba(27, 12, 13, 0.64), rgba(50, 20, 23, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}
.admin-item[data-theme-id="oceanic-glass"] .theme-preview { --preview-accent: #8fd5d7; }
.admin-item[data-theme-id="forest-glass"] .theme-preview { --preview-accent: #9ec69b; }
.admin-item[data-theme-id="neon-noir-glass"] .theme-preview { --preview-accent: #84efd4; }
.admin-item[data-theme-id="steel-glass"] .theme-preview { --preview-accent: #b7c3d2; }
.admin-item[data-theme-id="rose-noir-glass"] .theme-preview {
  --preview-accent: #e2b3c7;
  background:
    linear-gradient(160deg, rgba(24, 11, 17, 0.64), rgba(46, 18, 31, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}
.admin-item[data-theme-id="violet-mist-glass"] .theme-preview { --preview-accent: #c8b8ff; }
.admin-item[data-theme-id="sandstorm-glass"] .theme-preview {
  --preview-accent: #d3c09c;
  background:
    linear-gradient(160deg, rgba(22, 15, 10, 0.64), rgba(42, 29, 17, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}
.admin-item[data-theme-id="cybermint-glass"] .theme-preview { --preview-accent: #8eead0; }
.admin-item[data-theme-id="polar-night-glass"] .theme-preview { --preview-accent: #a8c0f5; }
.admin-item[data-theme-id="cobalt-glass"] .theme-preview { --preview-accent: #8bb0ff; }
.admin-item[data-theme-id="ember-glass"] .theme-preview {
  --preview-accent: #efa87d;
  background:
    linear-gradient(160deg, rgba(27, 14, 9, 0.64), rgba(49, 23, 14, 0.48)),
    url("../assets/liquid-glass-crimson-studio.svg") center / cover no-repeat;
}
.admin-item[data-theme-id="lunar-glass"] .theme-preview { --preview-accent: #cfd9ec; }
.admin-item[data-theme-id="mono-ice-glass"] .theme-preview { --preview-accent: #d7e4f3; }

@media (max-width: 860px) {
  .admin-item[data-theme-id$="-glass"] .theme-preview {
    backdrop-filter: blur(6px) saturate(110%);
    -webkit-backdrop-filter: blur(6px) saturate(110%);
  }
}

.admin-inline {
  display: grid;
  gap: 10px;
}

.admin-input-action {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.admin-input-action .input {
  flex: 1 1 auto;
}

.admin-input-action .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.admin-field-stack {
  display: grid;
  gap: 8px;
}

.gallery-inline-btn {
  justify-self: start;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-card {
  display: grid;
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
}

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

.gallery-card-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.gallery-form-preview {
  min-height: 120px;
}

.gallery-form-preview-card {
  display: grid;
  gap: 12px;
}

.gallery-form-preview-card img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--surface-2);
}

.gallery-form-preview-copy {
  display: grid;
  gap: 6px;
}

.gallery-import-row {
  align-items: start;
}

.gallery-source-box {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    var(--surface-2);
}

.gallery-source-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-source-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.gallery-source-pill[data-source="local"] {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}

.gallery-card-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.gallery-picker-dialog {
  max-width: min(1040px, 100%);
}

.gallery-picker-grid .gallery-card {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-picker-grid .gallery-card.is-selected {
  outline: 1px solid color-mix(in srgb, var(--accent) 70%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.gallery-picker-grid .gallery-card:hover {
  transform: translateY(-2px);
}

.status-select,
.note-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 10px;
}

.metric-number {
  font-size: 26px;
  font-family: var(--font-title);
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 14px;
  bottom: 14px;
  width: min(430px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
  padding: 10px 12px 8px;
  z-index: 70;
  font-size: 13px;
}

.toast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.toast-message {
  color: var(--text);
  line-height: 1.45;
}

.toast-undo {
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.toast-timer {
  margin-top: 8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.toast-timer-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: right;
  background: linear-gradient(90deg, rgba(214, 173, 108, 0.95), rgba(111, 157, 202, 0.85));
}

.theme-loader {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  background: rgba(7, 12, 20, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.theme-loader.hidden {
  display: none;
}

.theme-loader-card {
  min-width: 180px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  justify-items: center;
  gap: 8px;
  background: rgba(13, 18, 26, 0.9);
  box-shadow: var(--shadow-md);
}

.theme-loader-title {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-loader-sub {
  font-size: 12px;
  color: var(--muted);
}

.theme-loader-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--text);
  animation: themeLoaderSpin 0.8s linear infinite;
}

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

html.theme-loading body {
  cursor: progress;
}

.admin-filter-btn.active {
  border-color: rgba(130, 112, 87, 0.62);
  background: rgba(130, 112, 87, 0.16);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  gap: 12px;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-title {
  color: var(--text);
  font-family: var(--font-title);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.admin-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  border: 1px solid rgba(130, 112, 87, 0.62);
  background: rgba(130, 112, 87, 0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.admin-messages-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(111, 157, 202, 0.6);
  background: rgba(111, 157, 202, 0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.admin-messages-fab-badge {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
}

.contact-message-body {
  white-space: normal;
  line-height: 1.6;
  color: var(--muted);
}

.admin-order-items {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.admin-order-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-order-item img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #11100f;
}

.admin-order-item-meta {
  display: grid;
  gap: 2px;
}

.admin-order-item-meta .muted {
  font-size: 12px;
}

.admin-messages-layout {
  display: grid;
  gap: 12px;
}

.admin-messages-threads-wrap {
  display: grid;
  gap: 8px;
}

.admin-messages-threads {
  display: grid;
  gap: 6px;
}

.admin-message-thread {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.admin-message-thread.active {
  border-color: rgba(130, 112, 87, 0.62);
  background: rgba(130, 112, 87, 0.16);
}

.admin-message-thread-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.admin-message-thread-preview {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.admin-message-thread-badge {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 1px solid var(--line);
}

.admin-message-detail {
  min-height: 360px;
}

.admin-message-feed {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  max-height: 360px;
  overflow: auto;
}

.admin-message-bubble {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.admin-message-bubble.active {
  border-color: rgba(111, 157, 202, 0.62);
  background: rgba(111, 157, 202, 0.16);
}

.admin-message-bubble-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-topline .muted {
  font-size: 13px;
}

.flow-stack {
  display: grid;
  gap: 12px;
}

.split-2 {
  display: grid;
  gap: 12px;
}

.split-3 {
  display: grid;
  gap: 12px;
}

.stack-tight {
  display: grid;
  gap: 8px;
}

.shop-collection-chips {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-collection-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.shop-collection-chip.active,
.shop-collection-chip:hover {
  color: var(--text);
  border-color: rgba(130, 112, 87, 0.6);
  background: rgba(130, 112, 87, 0.15);
}

.filter-summary {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-summary .muted {
  font-size: 12px;
}

.shop-result-top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-result-top .muted {
  font-size: 12px;
}

.tag-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-strip .chip {
  padding: 6px 10px;
  font-size: 12px;
}

.collection-link-grid {
  display: grid;
  gap: 12px;
}

.lookbook-feature {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
  padding: 10px;
}

.lookbook-feature img {
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.lookbook-feature h3 {
  font-size: 14px;
}

.philosophy-quote {
  border-left: 2px solid rgba(130, 112, 87, 0.65);
  margin-top: 12px;
  padding-left: 10px;
  color: var(--muted);
  font-size: 14px;
}

.product-layout {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.product-gallery {
  display: grid;
  gap: 10px;
}

.product-main-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #11100f;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.thumb-grid button {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: 0.16s ease;
}

.thumb-grid button.active,
.thumb-grid button:hover {
  border-color: rgba(130, 112, 87, 0.62);
  transform: translateY(-1px);
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-stack {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  gap: 10px;
}

.product-option-block {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.product-option-block > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 7px 12px;
  cursor: pointer;
  transition: 0.14s ease;
}

.choice-chip:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.choice-chip.active {
  border-color: rgba(130, 112, 87, 0.65);
  background: var(--accent-soft);
}

.choice-chip.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.selector-note {
  font-size: 12px;
  color: var(--muted);
}

.buy-alert {
  border: 1px solid rgba(214, 173, 108, 0.55);
  border-radius: 12px;
  padding: 9px 10px;
  color: #dbc8aa;
  background: rgba(214, 173, 108, 0.12);
  font-size: 12px;
}

.content-help-fab {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 120;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(130, 112, 87, 0.55);
  background: color-mix(in srgb, var(--surface, #181412) 88%, transparent);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 24px;
  font-weight: 700;
}

.content-help-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(8px);
  padding: 24px 16px;
  display: grid;
  place-items: center;
}

.content-help-dialog {
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
}

.content-help-body {
  display: grid;
  gap: 16px;
}

.content-help-steps {
  display: grid;
  gap: 8px;
}

.content-help-grid {
  display: grid;
  gap: 12px;
}

.content-help-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.content-help-group-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.content-slot-list {
  display: grid;
  gap: 8px;
}

.content-slot-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 6px;
}

.content-slot-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.content-slot-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.content-slot-fields {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.content-slot-field {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--muted);
}

.content-preview-panel {
  overflow: hidden;
}

.content-preview-card {
  display: grid;
  gap: 14px;
}

.content-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.content-preview-image {
  position: relative;
  min-height: 200px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--surface-2);
  background-size: cover;
  background-position: center;
}

.content-preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.32));
  pointer-events: none;
}

.content-preview-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
}

.content-preview-gallery-thumb {
  min-height: 92px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    var(--surface-2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.inline-edit-fab {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  background: color-mix(in srgb, var(--surface) 86%, black 14%);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.inline-edit-fab.is-active {
  border-color: color-mix(in srgb, var(--accent) 65%, white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 24%, transparent), 0 18px 42px rgba(0, 0, 0, 0.38);
}

.inline-edit-layer {
  position: fixed;
  inset: 0;
  z-index: 78;
  pointer-events: none;
}

.inline-edit-pin {
  position: fixed;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, white);
  background: color-mix(in srgb, var(--surface) 76%, black 24%);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.inline-edit-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 6, 8, 0.64);
  backdrop-filter: blur(16px);
}

.inline-edit-dialog {
  width: min(920px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
}

.inline-edit-form-grid {
  display: grid;
  gap: 14px;
}

.inline-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-carousel-list {
  display: grid;
  gap: 10px;
}

.inline-carousel-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-2) 88%, black 12%);
  cursor: grab;
}

.inline-carousel-item.is-dragging {
  opacity: 0.6;
}

.inline-carousel-item.is-drop-target {
  border-color: color-mix(in srgb, var(--accent) 60%, white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}

.inline-carousel-thumb {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    var(--surface-2);
  background-size: cover;
  background-position: center;
}

.inline-carousel-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.inline-carousel-copy strong,
.inline-carousel-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.inline-carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.runtime-carousel-host {
  position: relative;
}

.runtime-carousel-controls {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.runtime-carousel-btn,
.runtime-carousel-dot {
  pointer-events: auto;
}

.runtime-carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 9, 12, 0.64);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.runtime-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.runtime-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.34);
}

.runtime-carousel-dot.is-active {
  background: color-mix(in srgb, var(--accent) 68%, white);
}

@media (max-width: 720px) {
  .inline-edit-fab {
    right: 16px;
    bottom: 80px;
    padding: 11px 14px;
  }

  .inline-edit-modal {
    padding: 12px;
  }

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

  .inline-carousel-thumb {
    width: 100%;
    height: 140px;
  }

  .runtime-carousel-controls {
    inset: auto 10px 10px 10px;
  }
}

.content-preview-stack {
  display: grid;
  gap: 8px;
}

.content-preview-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.content-preview-title {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.85rem);
  line-height: 1.1;
}

.content-preview-body {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.6;
}

.content-preview-empty {
  color: var(--muted);
  font-style: italic;
}

.product-spec-grid {
  display: grid;
  gap: 8px;
}

.panel-inset {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.product-spec-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item h3 {
  font-size: 14px;
}

.faq-item p {
  margin-top: 6px;
  color: var(--muted);
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.cart-item-variant {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cart-item-variant .chip {
  font-size: 10px;
}

.summary-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
}

.summary-group {
  display: grid;
  gap: 8px;
}

.summary-divider {
  border-top: 1px solid var(--line);
  margin: 8px 0;
}

.cta-stack {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.checkout-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.checkout-item img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #11100f;
}

.checkout-item-meta {
  display: grid;
  gap: 3px;
}

.account-quick-links {
  display: grid;
  gap: 10px;
}

.auth-help {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}

.orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.orders-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
}

.admin-toolbar {
  display: grid;
  gap: 10px;
}

.admin-toolbar-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.admin-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 10px 12px;
}

.admin-toolbar-row .admin-search,
.inbox-toolbar .admin-search {
  max-width: 560px;
}

.admin-filter-select {
  min-width: 180px;
}


.admin-inline.three textarea.textarea {
  min-height: 92px;
}

.dashboard-highlights .stack-tight {
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

#stockSummary {
  gap: 8px;
}

#stockSummary .metric-card {
  padding: 8px;
}

.dashboard-highlights {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.mini-chart {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.mini-chart h3 {
  font-size: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr auto;
  gap: 8px;
  align-items: center;
}

.bar-label,
.bar-value {
  font-size: 12px;
  color: var(--muted);
}

.bar-track {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  height: 9px;
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(130, 112, 87, 0.9), rgba(111, 157, 202, 0.9));
}

.bar-fill.warn {
  background: linear-gradient(90deg, rgba(214, 173, 108, 0.95), rgba(207, 107, 99, 0.9));
}

.admin-order-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.order-id-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--muted);
}

.client-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.client-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.customer-tier {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--muted);
}

.customer-tier.vip {
  border-color: rgba(214, 173, 108, 0.65);
  color: #dbc8aa;
}

.customer-tier.loyal {
  border-color: rgba(111, 157, 202, 0.6);
  color: #bfd6ee;
}

.inbox-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.status-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
}

.status-chip.new {
  border-color: rgba(214, 173, 108, 0.65);
}

.status-chip.read {
  border-color: rgba(111, 157, 202, 0.6);
}

.status-chip.replied {
  border-color: rgba(97, 157, 133, 0.62);
}

.status-chip.archived {
  border-color: rgba(207, 107, 99, 0.62);
}

.admin-message-thread-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.trust-grid {
  display: grid;
  gap: 10px;
}

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

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

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

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

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

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

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

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

  .dashboard-highlights {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 860px) {
  .main-nav {
    display: flex;
  }

  #menuBtn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

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

  .controls-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .cart-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

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

  .admin-inline {
    grid-template-columns: 1fr 1fr;
  }

  .admin-inline.three {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .admin-messages-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .collection-link-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .signature-audio-shop-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

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

  .variant-row-grid {
    grid-template-columns: 1fr 1fr 0.8fr 0.8fr 1.4fr auto;
    align-items: end;
  }
}

.legal-link-card {
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.legal-link-card:hover,
.legal-link-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.legal-link-arrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-prose {
  display: grid;
  gap: 12px;
  line-height: 1.8;
}

.legal-prose h2 {
  font-size: clamp(20px, 3.2vw, 26px);
  line-height: 1.2;
  margin: 6px 0 0;
}

.legal-prose h3 {
  font-size: 16px;
  margin: 6px 0 0;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}


.product-share-wrap {
  display: grid;
  gap: 8px;
}

.product-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-share-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.product-share-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-share-title {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-share-note {
  font-size: 12px;
  color: var(--muted);
}

.product-share-link {
  text-align: center;
  min-width: 132px;
}

@media (max-width: 699px) {
  .product-share-actions .btn,
  .product-share-actions .product-share-link {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
}

.hero-section-title {
  margin: 2px 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-copy-block {
  display: grid;
  gap: 6px;
}

.product-section-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-subsection-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}


/* Liquid Glass V2 (optimized) */
@keyframes liquidGlassV2FadeIn {
  from {
    opacity: 0.01;
    transform: translate3d(0, 8px, 0);
  }

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

@keyframes liquidGlassV2Sheen {
  from {
    transform: translate3d(-105%, 0, 0);
    opacity: 0;
  }

  25% {
    opacity: 0.34;
  }

  to {
    transform: translate3d(125%, 0, 0);
    opacity: 0;
  }
}

html[data-theme$="-glass"] .site-header {
  border-bottom-color: var(--glass-border);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(171, 201, 232, 0.08)),
    rgba(10, 20, 35, 0.42);
  box-shadow: 0 10px 24px rgba(2, 8, 18, 0.24);
  backdrop-filter: blur(12px) saturate(126%);
  -webkit-backdrop-filter: blur(12px) saturate(126%);
}

html[data-theme$="-glass"] .brand-mark {
  border-color: var(--glass-border);
  background:
    radial-gradient(21px 21px at 20% 20%, rgba(255, 255, 255, 0.62), transparent 68%),
    radial-gradient(18px 18px at 76% 78%, rgba(153, 194, 236, 0.74), transparent 68%),
    linear-gradient(180deg, rgba(198, 220, 245, 0.5), rgba(123, 152, 183, 0.4));
}

html[data-theme$="-glass"] .main-nav a,
html[data-theme$="-glass"] .mobile-menu a {
  color: var(--text);
  border-color: rgba(226, 239, 255, 0.2);
  background: rgba(14, 24, 39, 0.22);
}

html[data-theme$="-glass"] .main-nav a:hover,
html[data-theme$="-glass"] .main-nav a.active,
html[data-theme$="-glass"] .mobile-menu a:hover,
html[data-theme$="-glass"] .mobile-menu a:focus-visible {
  border-color: var(--glass-border);
  background: rgba(191, 216, 246, 0.18);
}

html[data-theme$="-glass"] .hero,
html[data-theme$="-glass"] .panel,
html[data-theme$="-glass"] .product-card,
html[data-theme$="-glass"] .collection-card,
html[data-theme$="-glass"] .story-card,
html[data-theme$="-glass"] .info-card,
html[data-theme$="-glass"] .metric-card,
html[data-theme$="-glass"] .cart-item,
html[data-theme$="-glass"] .order-card,
html[data-theme$="-glass"] .bulk-actions-bar,
html[data-theme$="-glass"] .summary-block,
html[data-theme$="-glass"] .checkout-item,
html[data-theme$="-glass"] .admin-item,
html[data-theme$="-glass"] .mini-chart,
html[data-theme$="-glass"] .client-card,
html[data-theme$="-glass"] .lookbook-feature,
html[data-theme$="-glass"] .product-share-panel,
html[data-theme$="-glass"] .legal-link-card,
html[data-theme$="-glass"] .toast,
html[data-theme$="-glass"] .admin-fab,
html[data-theme$="-glass"] .admin-messages-fab {
  position: relative;
  overflow: hidden;
  border-color: var(--glass-border);
  background: var(--glass-surface);
  box-shadow: var(--glass-shadow-soft);
  backdrop-filter: blur(9px) saturate(120%);
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  contain: paint;
}

html[data-theme$="-glass"] .faq-item,
html[data-theme$="-glass"] .trust-item,
html[data-theme$="-glass"] .orders-note,
html[data-theme$="-glass"] .order-item-mini,
html[data-theme$="-glass"] .admin-order-item,
html[data-theme$="-glass"] .chip,
html[data-theme$="-glass"] .order-pill,
html[data-theme$="-glass"] .status-chip,
html[data-theme$="-glass"] .order-status,
html[data-theme$="-glass"] .customer-tier,
html[data-theme$="-glass"] .input,
html[data-theme$="-glass"] .select,
html[data-theme$="-glass"] .textarea,
html[data-theme$="-glass"] .status-select,
html[data-theme$="-glass"] .note-input,
html[data-theme$="-glass"] .admin-search {
  border-color: rgba(224, 237, 255, 0.34);
  background: rgba(12, 23, 38, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

html[data-theme$="-glass"] .hero,
html[data-theme$="-glass"] .panel,
html[data-theme$="-glass"] .product-card,
html[data-theme$="-glass"] .collection-card {
  animation: liquidGlassV2FadeIn 0.45s ease both;
}

html[data-theme$="-glass"] .product-grid .product-card:nth-child(2n),
html[data-theme$="-glass"] .collection-link-grid > *:nth-child(2n) {
  animation-delay: 60ms;
}

html[data-theme$="-glass"] .hero::after,
html[data-theme$="-glass"] .panel::after,
html[data-theme$="-glass"] .product-card::after,
html[data-theme$="-glass"] .collection-card::after {
  content: "";
  position: absolute;
  top: -24%;
  left: -58%;
  width: 38%;
  height: 150%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  html[data-theme$="-glass"] .hero:hover::after,
  html[data-theme$="-glass"] .panel:hover::after,
  html[data-theme$="-glass"] .product-card:hover::after,
  html[data-theme$="-glass"] .collection-card:hover::after {
    animation: liquidGlassV2Sheen 0.78s ease;
  }

  html[data-theme$="-glass"] .product-card:hover,
  html[data-theme$="-glass"] .collection-card:hover,
  html[data-theme$="-glass"] .story-card:hover,
  html[data-theme$="-glass"] .info-card:hover,
  html[data-theme$="-glass"] .metric-card:hover,
  html[data-theme$="-glass"] .lookbook-feature:hover,
  html[data-theme$="-glass"] .legal-link-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--glass-shadow);
  }
}

html[data-theme$="-glass"] .hero-media::after {
  background: linear-gradient(180deg, transparent, rgba(7, 13, 24, 0.6));
}

html[data-theme$="-glass"] .pill-btn,
html[data-theme$="-glass"] .icon-btn,
html[data-theme$="-glass"] .btn,
html[data-theme$="-glass"] .admin-tab,
html[data-theme$="-glass"] .shop-collection-chip,
html[data-theme$="-glass"] .admin-filter-btn {
  border-color: var(--glass-border);
  background: rgba(15, 28, 45, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

html[data-theme$="-glass"] .pill-btn:hover,
html[data-theme$="-glass"] .icon-btn:hover,
html[data-theme$="-glass"] .btn:hover,
html[data-theme$="-glass"] .admin-tab:hover,
html[data-theme$="-glass"] .shop-collection-chip:hover {
  border-color: var(--line-strong);
  background: rgba(190, 216, 246, 0.22);
  transform: translateY(-1px);
}

html[data-theme$="-glass"] .btn.primary,
html[data-theme$="-glass"] .admin-tab.active,
html[data-theme$="-glass"] .shop-collection-chip.active,
html[data-theme$="-glass"] .admin-filter-btn.active,
html[data-theme$="-glass"] .pill-btn.active {
  color: #f7fbff;
  border-color: rgba(225, 240, 255, 0.74);
  background:
    radial-gradient(24px 20px at 20% 20%, rgba(255, 255, 255, 0.34), transparent 72%),
    linear-gradient(150deg, rgba(196, 220, 248, 0.3), rgba(146, 184, 222, 0.18));
  box-shadow: 0 10px 24px rgba(8, 20, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

html[data-theme$="-glass"] .cart-badge {
  color: #0f2438;
  background: linear-gradient(150deg, #eaf4ff, #c5dff6);
  border: 1px solid rgba(12, 29, 45, 0.2);
}

html[data-theme$="-glass"] .product-media,
html[data-theme$="-glass"] .cart-thumb,
html[data-theme$="-glass"] .collection-media,
html[data-theme$="-glass"] .product-main-image,
html[data-theme$="-glass"] .checkout-item img,
html[data-theme$="-glass"] .order-item-mini img,
html[data-theme$="-glass"] .admin-order-item img {
  background: rgba(8, 17, 29, 0.52);
  border-color: rgba(228, 240, 255, 0.3);
}

html[data-theme$="-glass"] .toast {
  border-color: var(--glass-border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(171, 201, 233, 0.1));
}

html[data-theme$="-glass"] .toast-timer {
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme$="-glass"] .toast-timer-bar {
  background: linear-gradient(90deg, rgba(236, 245, 255, 0.95), rgba(146, 195, 241, 0.9));
}

html[data-theme$="-glass"] .site-footer {
  border-top-color: var(--glass-border);
  background: rgba(8, 17, 30, 0.24);
}

html[data-theme="crimson-glass"] .site-header {
  background:
    linear-gradient(160deg, rgba(255, 222, 230, 0.14), rgba(155, 52, 76, 0.12)),
    rgba(28, 8, 13, 0.44);
  box-shadow: 0 10px 24px rgba(14, 3, 7, 0.3);
}

html[data-theme="crimson-glass"] .brand-mark {
  background:
    radial-gradient(21px 21px at 20% 20%, rgba(255, 224, 232, 0.64), transparent 68%),
    radial-gradient(18px 18px at 76% 78%, rgba(208, 96, 124, 0.72), transparent 68%),
    linear-gradient(180deg, rgba(131, 38, 58, 0.5), rgba(74, 18, 31, 0.44));
}

html[data-theme="crimson-glass"] .main-nav a,
html[data-theme="crimson-glass"] .mobile-menu a {
  border-color: rgba(247, 203, 215, 0.24);
  background: rgba(34, 10, 17, 0.26);
}

html[data-theme="crimson-glass"] .main-nav a:hover,
html[data-theme="crimson-glass"] .main-nav a.active,
html[data-theme="crimson-glass"] .mobile-menu a:hover,
html[data-theme="crimson-glass"] .mobile-menu a:focus-visible {
  background: rgba(207, 102, 129, 0.2);
}

html[data-theme="crimson-glass"] .faq-item,
html[data-theme="crimson-glass"] .trust-item,
html[data-theme="crimson-glass"] .orders-note,
html[data-theme="crimson-glass"] .order-item-mini,
html[data-theme="crimson-glass"] .admin-order-item,
html[data-theme="crimson-glass"] .chip,
html[data-theme="crimson-glass"] .order-pill,
html[data-theme="crimson-glass"] .status-chip,
html[data-theme="crimson-glass"] .order-status,
html[data-theme="crimson-glass"] .customer-tier,
html[data-theme="crimson-glass"] .input,
html[data-theme="crimson-glass"] .select,
html[data-theme="crimson-glass"] .textarea,
html[data-theme="crimson-glass"] .status-select,
html[data-theme="crimson-glass"] .note-input,
html[data-theme="crimson-glass"] .admin-search {
  border-color: rgba(247, 203, 215, 0.36);
  background: rgba(34, 10, 17, 0.38);
}

html[data-theme="crimson-glass"] .hero-media::after {
  background: linear-gradient(180deg, transparent, rgba(22, 6, 11, 0.64));
}

html[data-theme="crimson-glass"] .pill-btn,
html[data-theme="crimson-glass"] .icon-btn,
html[data-theme="crimson-glass"] .btn,
html[data-theme="crimson-glass"] .admin-tab,
html[data-theme="crimson-glass"] .shop-collection-chip,
html[data-theme="crimson-glass"] .admin-filter-btn {
  background: rgba(38, 12, 20, 0.34);
}

html[data-theme="crimson-glass"] .pill-btn:hover,
html[data-theme="crimson-glass"] .icon-btn:hover,
html[data-theme="crimson-glass"] .btn:hover,
html[data-theme="crimson-glass"] .admin-tab:hover,
html[data-theme="crimson-glass"] .shop-collection-chip:hover {
  background: rgba(211, 107, 134, 0.23);
}

html[data-theme="crimson-glass"] .btn.primary,
html[data-theme="crimson-glass"] .admin-tab.active,
html[data-theme="crimson-glass"] .shop-collection-chip.active,
html[data-theme="crimson-glass"] .admin-filter-btn.active,
html[data-theme="crimson-glass"] .pill-btn.active {
  color: #fff6f8;
  border-color: rgba(252, 219, 229, 0.76);
  background:
    radial-gradient(24px 20px at 20% 20%, rgba(255, 232, 238, 0.34), transparent 72%),
    linear-gradient(150deg, rgba(199, 85, 114, 0.34), rgba(129, 39, 62, 0.24));
  box-shadow: 0 10px 24px rgba(20, 4, 10, 0.34), inset 0 1px 0 rgba(255, 230, 237, 0.3);
}

html[data-theme="crimson-glass"] .cart-badge {
  color: #3a0f1a;
  background: linear-gradient(150deg, #ffd8e2, #e9a7ba);
  border: 1px solid rgba(70, 16, 30, 0.25);
}

html[data-theme="crimson-glass"] .product-media,
html[data-theme="crimson-glass"] .cart-thumb,
html[data-theme="crimson-glass"] .collection-media,
html[data-theme="crimson-glass"] .product-main-image,
html[data-theme="crimson-glass"] .checkout-item img,
html[data-theme="crimson-glass"] .order-item-mini img,
html[data-theme="crimson-glass"] .admin-order-item img {
  background: rgba(24, 7, 12, 0.56);
  border-color: rgba(248, 205, 217, 0.34);
}

html[data-theme="crimson-glass"] .toast {
  background: linear-gradient(160deg, rgba(255, 230, 236, 0.2), rgba(163, 56, 83, 0.14));
}

html[data-theme="crimson-glass"] .toast-timer-bar {
  background: linear-gradient(90deg, rgba(255, 221, 230, 0.95), rgba(204, 84, 114, 0.9));
}

html[data-theme="crimson-glass"] .site-footer {
  background: rgba(21, 6, 11, 0.28);
}

html[data-glass-performance="lite"][data-theme$="-glass"] .site-header {
  backdrop-filter: blur(6px) saturate(112%);
  -webkit-backdrop-filter: blur(6px) saturate(112%);
}

html[data-glass-performance="lite"][data-theme$="-glass"] .hero,
html[data-glass-performance="lite"][data-theme$="-glass"] .panel,
html[data-glass-performance="lite"][data-theme$="-glass"] .product-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .collection-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .story-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .info-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .metric-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .cart-item,
html[data-glass-performance="lite"][data-theme$="-glass"] .order-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .bulk-actions-bar,
html[data-glass-performance="lite"][data-theme$="-glass"] .summary-block,
html[data-glass-performance="lite"][data-theme$="-glass"] .checkout-item,
html[data-glass-performance="lite"][data-theme$="-glass"] .admin-item,
html[data-glass-performance="lite"][data-theme$="-glass"] .mini-chart,
html[data-glass-performance="lite"][data-theme$="-glass"] .client-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .lookbook-feature,
html[data-glass-performance="lite"][data-theme$="-glass"] .product-share-panel,
html[data-glass-performance="lite"][data-theme$="-glass"] .legal-link-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .toast,
html[data-glass-performance="lite"][data-theme$="-glass"] .admin-fab,
html[data-glass-performance="lite"][data-theme$="-glass"] .admin-messages-fab {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 22px rgba(7, 5, 10, 0.28);
  background: var(--surface-2);
}

html[data-glass-performance="lite"][data-theme$="-glass"] .hero,
html[data-glass-performance="lite"][data-theme$="-glass"] .panel,
html[data-glass-performance="lite"][data-theme$="-glass"] .product-card,
html[data-glass-performance="lite"][data-theme$="-glass"] .collection-card {
  animation: none;
}

html[data-glass-performance="lite"][data-theme$="-glass"] .hero::after,
html[data-glass-performance="lite"][data-theme$="-glass"] .panel::after,
html[data-glass-performance="lite"][data-theme$="-glass"] .product-card::after,
html[data-glass-performance="lite"][data-theme$="-glass"] .collection-card::after {
  display: none;
}

html[data-glass-performance="lite"][data-theme$="-glass"] .product-card:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .collection-card:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .story-card:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .info-card:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .metric-card:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .lookbook-feature:hover,
html[data-glass-performance="lite"][data-theme$="-glass"] .legal-link-card:hover {
  transform: none;
  box-shadow: 0 10px 22px rgba(7, 5, 10, 0.28);
}

@media (max-width: 860px) {
  html[data-theme$="-glass"] .site-header,
  html[data-theme$="-glass"] .hero,
  html[data-theme$="-glass"] .panel,
  html[data-theme$="-glass"] .product-card,
  html[data-theme$="-glass"] .collection-card,
  html[data-theme$="-glass"] .story-card,
  html[data-theme$="-glass"] .info-card,
  html[data-theme$="-glass"] .metric-card,
  html[data-theme$="-glass"] .cart-item,
  html[data-theme$="-glass"] .order-card,
  html[data-theme$="-glass"] .bulk-actions-bar,
  html[data-theme$="-glass"] .summary-block,
  html[data-theme$="-glass"] .checkout-item,
  html[data-theme$="-glass"] .admin-item,
  html[data-theme$="-glass"] .mini-chart,
  html[data-theme$="-glass"] .client-card,
  html[data-theme$="-glass"] .lookbook-feature,
  html[data-theme$="-glass"] .product-share-panel,
  html[data-theme$="-glass"] .toast {
    backdrop-filter: blur(8px) saturate(118%);
    -webkit-backdrop-filter: blur(8px) saturate(118%);
    box-shadow: 0 10px 20px rgba(2, 8, 19, 0.22);
  }

  html[data-theme$="-glass"] .hero:hover,
  html[data-theme$="-glass"] .panel:hover,
  html[data-theme$="-glass"] .product-card:hover,
  html[data-theme$="-glass"] .collection-card:hover,
  html[data-theme$="-glass"] .story-card:hover,
  html[data-theme$="-glass"] .info-card:hover,
  html[data-theme$="-glass"] .metric-card:hover,
  html[data-theme$="-glass"] .lookbook-feature:hover,
  html[data-theme$="-glass"] .legal-link-card:hover {
    transform: translateY(-1px);
  }
}

@supports (content-visibility: auto) {
  .page [data-layout-root] > .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }

  .page [data-layout-root] > .section:first-of-type {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

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

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

.admin-item[data-theme-id="panako-signature"] .theme-preview {
  --preview-bg: #060607;
  --preview-surface: #141419;
  --preview-accent: #9dc6d5;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(157, 198, 213, 0.16), transparent 36%),
    linear-gradient(135deg, #050505, #101014 58%, #15151b 100%);
}

html[data-theme="panako-signature"] body {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(157, 198, 213, 0.11), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(135deg, #020202 0%, #050507 52%, #0b0b10 100%);
}

html[data-theme="panako-signature"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.48;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 84%);
}

html[data-theme="panako-signature"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 4, 4, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

html[data-theme="panako-signature"] .hero,
html[data-theme="panako-signature"] .panel,
html[data-theme="panako-signature"] .product-card,
html[data-theme="panako-signature"] .collection-card,
html[data-theme="panako-signature"] .story-card,
html[data-theme="panako-signature"] .info-card,
html[data-theme="panako-signature"] .metric-card,
html[data-theme="panako-signature"] .legal-link-card,
html[data-theme="panako-signature"] .cart-item,
html[data-theme="panako-signature"] .summary-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

html[data-theme="panako-signature"] .btn.primary,
html[data-theme="panako-signature"] .pill-btn.active,
html[data-theme="panako-signature"] .admin-tab.active {
  color: #050506;
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #dce9ef 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

html[data-theme="panako-signature"] .btn.soft,
html[data-theme="panako-signature"] .pill-btn,
html[data-theme="panako-signature"] .icon-btn,
html[data-theme="panako-signature"] .shop-collection-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="panako-signature"] .shop-collection-chip.active,
html[data-theme="panako-signature"] .shop-collection-chip:hover,
html[data-theme="panako-signature"] .btn.soft:hover,
html[data-theme="panako-signature"] .pill-btn:hover,
html[data-theme="panako-signature"] .icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.signature-page {
  padding-top: 20px;
}

.signature-kicker,
.signature-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.signature-kicker::before,
.signature-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.signature-headline,
.signature-section-title,
.signature-panel-title {
  font-family: var(--font-title);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.signature-headline {
  font-size: clamp(42px, 8vw, 100px);
}

.signature-text {
  color: var(--muted);
  line-height: 1.8;
  max-width: 64ch;
}

.signature-hero {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 34px;
  overflow: hidden;
  min-height: min(86vh, 920px);
}

.signature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(157, 198, 213, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 4, 6, 0.12));
  pointer-events: none;
}

.signature-hero-grid,
.signature-split-grid,
.signature-tech-grid,
.signature-collection-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.signature-hero-copy,
.signature-panel-copy,
.signature-tech-copy,
.signature-collection-copy,
.signature-product-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.signature-hero-actions,
.signature-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signature-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signature-stat-card,
.signature-floating-note,
.signature-mini-card,
.origini-spec-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.signature-stat-card strong,
.signature-mini-card strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.signature-hero-stage,
.signature-stage-shell,
.signature-origini-stage,
.signature-collection-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.signature-stage-shell {
  width: min(100%, 520px);
  aspect-ratio: 5 / 6;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.signature-stage-shell::after,
.signature-lookbook-card::after,
.signature-tech-card::after,
.signature-collection-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52));
  pointer-events: none;
}

.signature-stage-shell img,
.signature-lookbook-card img,
.signature-tech-card img,
.signature-collection-image-wrap img,
.signature-editorial-visual img,
.signature-media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signature-orbit,
.signature-tech-glow,
.origini-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
}

.signature-orbit {
  width: 320px;
  height: 320px;
  background: rgba(157, 198, 213, 0.22);
}

.signature-tech-glow,
.origini-glow {
  width: 240px;
  height: 120px;
  bottom: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.signature-floating-note {
  position: absolute;
  right: clamp(8px, 2vw, 18px);
  bottom: clamp(12px, 2vw, 22px);
  max-width: 220px;
  backdrop-filter: blur(12px);
}

.signature-section {
  display: grid;
  gap: 18px;
}

.signature-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.signature-section-title {
  font-size: clamp(30px, 5vw, 56px);
}

.signature-split-panel,
.signature-lookbook-shell,
.signature-tech-shell,
.signature-product-shell,
.signature-results-shell {
  position: relative;
  overflow: hidden;
}

.signature-editorial-visual,
.signature-tech-card,
.signature-collection-image-wrap {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.signature-editorial-visual {
  min-height: 340px;
}

.signature-chip-row,
.signature-prompt-list,
.signature-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signature-chip,
.signature-trust-pill,
.signature-tag {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.signature-product-grid .product-grid,
.signature-section .product-grid {
  gap: 16px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 4.4;
}

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

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-media-overlay {
  position: absolute;
  inset: 14px 14px auto 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 1;
}

.product-card-kicker,
.product-card-stock,
.product-card-collection,
.product-card-promo {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 8, 0.62);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-name {
  font-family: var(--font-title);
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.product-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-price {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.signature-lookbook-grid,
.signature-collection-grid,
.signature-origini-grid {
  display: grid;
  gap: 16px;
}

.signature-lookbook-card,
.signature-origini-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.signature-lookbook-caption,
.signature-origini-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.signature-origini-page .signature-hero {
  min-height: auto;
}

.origini-float {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.origini-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.origini-spec-grid {
  display: grid;
  gap: 14px;
}

.signature-shop-hero,
.signature-collection-hero-shell,
.signature-product-hero {
  position: relative;
  overflow: hidden;
}

.signature-shop-hero .hero-inner,
.signature-collection-hero-shell .hero-inner {
  padding: clamp(24px, 4vw, 34px);
  gap: 0;
}

.signature-shop-grid,
.signature-collection-hero {
  display: grid;
  gap: 22px;
}

.signature-shop-visual,
.signature-collection-visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.signature-shop-visual::after,
.signature-collection-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
}

.signature-shop-visual img,
.signature-collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-filter-panel .panel-body,
.signature-results-shell .panel-body,
.signature-product-shell .panel-body {
  position: relative;
  z-index: 1;
}

.signature-product-layout {
  align-items: start;
}

.signature-product-shell {
  padding: 4px;
}

.signature-product-shell .panel-body {
  padding: clamp(18px, 3vw, 28px);
}

.signature-audio-product-shell .panel-body,
.signature-audio-shop-shell .panel-body {
  padding: clamp(18px, 3vw, 28px);
}

.signature-audio-shop-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

.signature-audio-shop-visual {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 201, 170, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
}

.signature-audio-shop-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.signature-audio-shop-subgrid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.signature-audio-spec-grid {
  display: grid;
  gap: 12px;
}

.signature-audio-spec-card {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(10, 12, 17, 0.65);
  display: grid;
  gap: 8px;
}

.signature-audio-spec-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.signature-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signature-product-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.7;
}

.signature-footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.signature-footer-socials a {
  color: var(--text);
}

@media (min-width: 860px) {
  .signature-hero-grid,
  .signature-split-grid,
  .signature-tech-grid,
  .signature-shop-grid,
  .signature-collection-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: stretch;
  }

  .signature-lookbook-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .signature-lookbook-grid .signature-lookbook-card:last-child {
    min-height: 540px;
  }

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

@media (max-width: 859px) {
  .signature-hero {
    min-height: auto;
  }

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

  .signature-stage-shell,
  .signature-editorial-visual,
  .signature-tech-card,
  .signature-shop-visual,
  .signature-collection-visual {
    min-height: 300px;
  }

  .product-media-overlay {
    inset: 10px 10px auto 10px;
  }
}

/* PANAKØ Commerce Split: product-first storefront inspired by high-converting fashion shops. */
.commerce-promo-bar,
.commerce-category-nav,
.commerce-account-link {
  display: none;
}

html[data-theme="commerce-split"] body {
  background: #fff;
  color: #0a0a0a;
}

html[data-theme="commerce-split"] .commerce-promo-bar {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  color: #fff;
  background: #050505;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid #dedede;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

html[data-theme="commerce-split"] .site-header .container {
  width: min(1440px, calc(100% - 36px));
}

html[data-theme="commerce-split"] .header-row {
  min-height: 72px;
  grid-template-columns: minmax(170px, 0.7fr) minmax(520px, 1.8fr) auto;
  gap: 22px;
}

html[data-theme="commerce-split"] .brand {
  color: #050505;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .brand-mark,
html[data-theme="commerce-split"] .main-nav {
  display: none;
}

html[data-theme="commerce-split"] .commerce-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 48px);
  min-width: 0;
}

html[data-theme="commerce-split"] .commerce-category-nav a {
  position: relative;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

html[data-theme="commerce-split"] .commerce-category-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

html[data-theme="commerce-split"] .commerce-category-nav a:hover::after,
html[data-theme="commerce-split"] .commerce-category-nav a:focus-visible::after {
  transform: scaleX(1);
}

html[data-theme="commerce-split"] .header-actions {
  gap: 6px;
}

html[data-theme="commerce-split"] .commerce-account-link {
  display: inline-flex;
}

html[data-theme="commerce-split"] .pill-btn,
html[data-theme="commerce-split"] .icon-btn,
html[data-theme="commerce-split"] .btn,
html[data-theme="commerce-split"] .shop-collection-chip,
html[data-theme="commerce-split"] .admin-tab,
html[data-theme="commerce-split"] .admin-filter-btn {
  min-height: 40px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  color: #0a0a0a;
  background: #fff;
  box-shadow: none;
  font-weight: 750;
}

html[data-theme="commerce-split"] .pill-btn {
  min-width: 38px;
  padding-inline: 9px;
}

html[data-theme="commerce-split"] .pill-btn.active,
html[data-theme="commerce-split"] .btn.primary,
html[data-theme="commerce-split"] .shop-collection-chip.active,
html[data-theme="commerce-split"] .admin-tab.active,
html[data-theme="commerce-split"] .admin-filter-btn.active {
  color: #fff;
  border-color: #050505;
  background: #050505;
}

html[data-theme="commerce-split"] .pill-btn:hover,
html[data-theme="commerce-split"] .icon-btn:hover,
html[data-theme="commerce-split"] .btn:hover,
html[data-theme="commerce-split"] .shop-collection-chip:hover,
html[data-theme="commerce-split"] .admin-tab:hover,
html[data-theme="commerce-split"] .admin-filter-btn:hover {
  color: #fff;
  border-color: #050505;
  background: #050505;
  box-shadow: none;
  transform: none;
}

html[data-theme="commerce-split"] #menuBtn {
  display: none;
}

html[data-theme="commerce-split"] .cart-badge {
  right: -7px;
  top: -7px;
  color: #fff;
  background: #7b1d2c;
}

html[data-theme="commerce-split"] .page {
  padding: 22px 0 64px;
}

html[data-theme="commerce-split"] .page > .container,
html[data-theme="commerce-split"] .site-footer .container {
  width: min(1400px, calc(100% - 40px));
}

html[data-theme="commerce-split"] .flow-stack {
  gap: 22px;
}

html[data-theme="commerce-split"] .commerce-home {
  color: #0a0a0a;
  background: #fff;
}

html[data-theme="commerce-split"] .commerce-split-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(500px, 58svh, 580px);
  background: #050505;
}

html[data-theme="commerce-split"] .commerce-hero-panel {
  position: relative;
  min-height: clamp(500px, 58svh, 580px);
  overflow: hidden;
  isolation: isolate;
}

html[data-theme="commerce-split"] .commerce-hero-panel > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

html[data-theme="commerce-split"] .commerce-hero-clothing > img {
  object-position: 62% top;
}

html[data-theme="commerce-split"] .commerce-hero-origin > img {
  object-position: center center;
}

html[data-theme="commerce-split"] .commerce-hero-panel:hover > img {
  transform: scale(1.018);
}

html[data-theme="commerce-split"] .commerce-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.16) 58%, transparent 100%);
}

html[data-theme="commerce-split"] .commerce-hero-origin {
  border-left: 1px solid rgba(255,255,255,.12);
}

html[data-theme="commerce-split"] .commerce-hero-origin::after {
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 52%, transparent 100%);
}

html[data-theme="commerce-split"] .commerce-hero-copy {
  position: absolute;
  top: 50%;
  left: clamp(30px, 4vw, 68px);
  z-index: 2;
  width: min(430px, calc(100% - 56px));
  color: #fff;
  transform: translateY(-50%);
}

html[data-theme="commerce-split"] .commerce-eyebrow,
html[data-theme="commerce-split"] .commerce-section-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-hero-copy h1,
html[data-theme="commerce-split"] .commerce-hero-copy h2 {
  color: #fff;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-hero-copy h2 {
  font-size: clamp(40px, 4.1vw, 62px);
}

html[data-theme="commerce-split"] .commerce-hero-copy p {
  margin-top: 16px;
  max-width: 32ch;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}

html[data-theme="commerce-split"] .commerce-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

html[data-theme="commerce-split"] .commerce-cta-dark {
  color: #fff;
  border-color: #050505;
  background: #050505;
}

html[data-theme="commerce-split"] .commerce-cta-light {
  color: #050505;
  border-color: #fff;
  background: #fff;
}

html[data-theme="commerce-split"] .commerce-cta:hover {
  color: #fff;
  border-color: #7b1d2c;
  background: #7b1d2c;
}

html[data-theme="commerce-split"] .commerce-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #dedede;
  background: #fff;
}

html[data-theme="commerce-split"] .commerce-trust-strip > div {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 56px;
  align-content: center;
  border-right: 1px solid #dedede;
  text-align: center;
}

html[data-theme="commerce-split"] .commerce-trust-strip > div:last-child {
  border-right: 0;
}

html[data-theme="commerce-split"] .commerce-trust-strip strong {
  font-size: 12px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-trust-strip span {
  color: #777;
  font-size: 11px;
}

html[data-theme="commerce-split"] .commerce-product-section,
html[data-theme="commerce-split"] .commerce-category-section,
html[data-theme="commerce-split"] .commerce-editorial {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(26px, 3vw, 42px);
}

html[data-theme="commerce-split"] .commerce-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

html[data-theme="commerce-split"] .commerce-section-head h2 {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(27px, 3.4vw, 44px);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-section-head > a {
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

html[data-theme="commerce-split"] .product-card {
  border: 1px solid #dedede;
  border-radius: 0;
  color: #0a0a0a;
  background: #fff;
  box-shadow: none;
  transform: none;
}

html[data-theme="commerce-split"] .product-card:hover {
  border-color: #999;
  background: #fff;
  box-shadow: none;
  transform: none;
}

html[data-theme="commerce-split"] .product-media {
  aspect-ratio: 4 / 3.15;
  border-bottom: 1px solid #dedede;
  background: #f2f2f2;
}

html[data-theme="commerce-split"] .product-media img {
  object-fit: cover;
  transition: transform 320ms ease;
}

html[data-theme="commerce-split"] .product-card:hover .product-media img {
  transform: scale(1.025);
}

html[data-theme="commerce-split"] .product-media-overlay {
  inset: 10px 10px auto;
  justify-content: flex-end;
}

html[data-theme="commerce-split"] .product-card-kicker,
html[data-theme="commerce-split"] .product-card-collection,
html[data-theme="commerce-split"] .product-card-promo,
html[data-theme="commerce-split"] .product-card .product-meta,
html[data-theme="commerce-split"] .product-card .badge-row,
html[data-theme="commerce-split"] .product-card-stock:not(.stock-out) {
  display: none;
}

html[data-theme="commerce-split"] .product-card-stock {
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #050505;
  backdrop-filter: none;
}

html[data-theme="commerce-split"] .product-body {
  gap: 13px;
  padding: 14px;
}

html[data-theme="commerce-split"] .product-row {
  align-items: flex-start;
}

html[data-theme="commerce-split"] .product-name {
  color: #0a0a0a;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .product-price {
  color: #0a0a0a;
  font-size: 14px;
  white-space: nowrap;
}

html[data-theme="commerce-split"] .product-actions .btn {
  width: 100%;
  min-height: 46px;
  color: #fff;
  border: 1px solid #050505;
  background: #050505;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .product-actions .btn:hover {
  border-color: #7b1d2c;
  background: #7b1d2c;
}

html[data-theme="commerce-split"] .product-actions .btn:disabled {
  cursor: not-allowed;
  opacity: .45;
}

html[data-theme="commerce-split"] .commerce-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d7d7d7;
  border: 1px solid #d7d7d7;
}

html[data-theme="commerce-split"] .commerce-category-grid a {
  display: grid;
  min-height: 170px;
  align-content: end;
  gap: 7px;
  padding: 24px;
  color: #fff;
  background: #111;
  transition: background 180ms ease;
}

html[data-theme="commerce-split"] .commerce-category-grid a:nth-child(2) { background: #741f30; }
html[data-theme="commerce-split"] .commerce-category-grid a:nth-child(3) { color: #111; background: #ececec; }
html[data-theme="commerce-split"] .commerce-category-grid a:nth-child(4) { background: #050505; }
html[data-theme="commerce-split"] .commerce-category-grid a:hover { background: #7b1d2c; color: #fff; }

html[data-theme="commerce-split"] .commerce-category-grid span {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-category-grid small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-editorial {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1px;
  padding-bottom: 64px;
}

html[data-theme="commerce-split"] .commerce-editorial > article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

html[data-theme="commerce-split"] .commerce-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-theme="commerce-split"] .commerce-editorial article:first-child > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  background: linear-gradient(transparent, rgba(0,0,0,.84));
}

html[data-theme="commerce-split"] .commerce-editorial h2 {
  margin-top: 8px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-editorial a {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .commerce-editorial-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 72px);
  background: #741f30 !important;
}

html[data-theme="commerce-split"] .commerce-editorial-copy p {
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

html[data-theme="commerce-split"] .hero,
html[data-theme="commerce-split"] .panel,
html[data-theme="commerce-split"] .cart-item,
html[data-theme="commerce-split"] .order-card,
html[data-theme="commerce-split"] .summary-block,
html[data-theme="commerce-split"] .checkout-item,
html[data-theme="commerce-split"] .admin-item,
html[data-theme="commerce-split"] .client-card,
html[data-theme="commerce-split"] .faq-item,
html[data-theme="commerce-split"] .legal-link-card,
html[data-theme="commerce-split"] .info-card,
html[data-theme="commerce-split"] .metric-card,
html[data-theme="commerce-split"] .product-share-panel,
html[data-theme="commerce-split"] .admin-message-thread {
  border: 1px solid #dedede;
  border-radius: 0;
  color: #0a0a0a;
  background: #fff;
  box-shadow: none;
}

html[data-theme="commerce-split"] .hero,
html[data-theme="commerce-split"] .signature-hero,
html[data-theme="commerce-split"] .signature-shop-hero,
html[data-theme="commerce-split"] .signature-collection-hero-shell,
html[data-theme="commerce-split"] .signature-product-hero {
  border-radius: 0;
  background: #f1f1f1;
  box-shadow: none;
}

html[data-theme="commerce-split"] .signature-shop-hero .hero-inner,
html[data-theme="commerce-split"] .signature-collection-hero-shell .hero-inner,
html[data-theme="commerce-split"] .hero-inner {
  padding: clamp(26px, 4vw, 54px);
}

html[data-theme="commerce-split"] .signature-shop-hero h1,
html[data-theme="commerce-split"] .signature-collection-hero-shell h1,
html[data-theme="commerce-split"] .hero h1,
html[data-theme="commerce-split"] .signature-section-title {
  color: #0a0a0a;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .signature-shop-visual,
html[data-theme="commerce-split"] .signature-collection-visual {
  min-height: 250px;
  border-radius: 0;
  background: #e9e9e9;
}

html[data-theme="commerce-split"] .signature-filter-panel,
html[data-theme="commerce-split"] .signature-results-shell {
  border-radius: 0;
}

html[data-theme="commerce-split"] .signature-filter-panel .panel-body,
html[data-theme="commerce-split"] .signature-results-shell .panel-body {
  padding: 18px;
}

html[data-theme="commerce-split"] .input,
html[data-theme="commerce-split"] .select,
html[data-theme="commerce-split"] .textarea,
html[data-theme="commerce-split"] .status-select,
html[data-theme="commerce-split"] .note-input,
html[data-theme="commerce-split"] .admin-search {
  min-height: 46px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  color: #0a0a0a;
  background: #fff;
  box-shadow: none;
}

html[data-theme="commerce-split"] .input:focus,
html[data-theme="commerce-split"] .select:focus,
html[data-theme="commerce-split"] .textarea:focus,
html[data-theme="commerce-split"] .admin-search:focus {
  border-color: #050505;
  outline: 2px solid #050505;
  outline-offset: 1px;
  box-shadow: none;
}

html[data-theme="commerce-split"] .signature-product-shell .panel-body {
  padding: clamp(18px, 3vw, 42px);
}

html[data-theme="commerce-split"] .signature-product-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(28px, 5vw, 76px);
}

html[data-theme="commerce-split"] .product-main-image {
  border: 0;
  border-radius: 0;
  background: #f1f1f1;
}

html[data-theme="commerce-split"] .signature-product-copy {
  align-self: start;
}

html[data-theme="commerce-split"] .signature-product-copy > .btn.primary {
  width: 100%;
  min-height: 54px;
  font-size: 12px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .product-option-block .chip,
html[data-theme="commerce-split"] .variant-btn,
html[data-theme="commerce-split"] .thumb {
  border-radius: 0;
}

html[data-theme="commerce-split"] .cart-layout,
html[data-theme="commerce-split"] .checkout-layout {
  gap: 18px;
}

html[data-theme="commerce-split"] .summary-block {
  position: sticky;
  top: 104px;
}

html[data-theme="commerce-split"] .panel-head {
  border-bottom: 1px solid #dedede;
  padding: 16px 18px;
}

html[data-theme="commerce-split"] .panel-body {
  padding: 18px;
}

html[data-theme="commerce-split"] .admin-tabs {
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 0;
  background: #fff;
}

html[data-theme="commerce-split"] .admin-tab {
  border-width: 0 1px 0 0;
}

html[data-theme="commerce-split"] .admin-item.is-selected,
html[data-theme="commerce-split"] .order-card.is-selected,
html[data-theme="commerce-split"] .admin-message-thread.is-selected {
  border-color: #0a0a0a;
  background: #f4f4f4;
}

.admin-item[data-theme-id="commerce-split"] .theme-preview {
  --preview-bg: #ffffff;
  --preview-surface: #741f30;
  --preview-accent: #050505;
  border-radius: 0;
  background: linear-gradient(90deg, #741f30 0 50%, #0b0b0b 50% 100%);
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-hero {
  min-height: 0;
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-grid {
  grid-template-columns: 1fr;
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-visual,
html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-hero .signature-chip-row,
html[data-theme="commerce-split"] body[data-page="shop"] #shopAudioSection,
html[data-theme="commerce-split"] body[data-page="shop"] #shopArchitectureTip,
html[data-theme="commerce-split"] body[data-page="shop"] #shopFilterTip,
html[data-theme="commerce-split"] body[data-page="shop"] #shopViewCollections {
  display: none !important;
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-hero .signature-text {
  max-width: 62ch;
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-shop-hero .hero-inner {
  padding-block: 30px;
}

html[data-theme="commerce-split"] body[data-page="shop"] .signature-results-shell .panel-head h2 {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(25px, 3vw, 40px);
  text-transform: uppercase;
}

html[data-theme="commerce-split"] .site-footer {
  margin-top: 0;
  border-top: 0;
  color: #bcbcbc;
  background: #050505;
}

html[data-theme="commerce-split"] .site-footer .footer-title,
html[data-theme="commerce-split"] .site-footer a {
  color: #fff;
}

html[data-theme="commerce-split"] .commerce-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #2d2d2d;
  font-size: 12px;
}

@media (max-width: 1100px) {
  html[data-theme="commerce-split"] .header-row {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  html[data-theme="commerce-split"] .commerce-category-nav {
    gap: 20px;
  }

  html[data-theme="commerce-split"] .commerce-category-nav a {
    font-size: 11px;
  }

  html[data-theme="commerce-split"] .commerce-account-link {
    display: none;
  }
}

@media (max-width: 859px) {
  html[data-theme="commerce-split"] .commerce-promo-bar {
    min-height: 28px;
    font-size: 9px;
  }

  html[data-theme="commerce-split"] .site-header .container {
    width: 100%;
    padding-inline: 14px;
  }

  html[data-theme="commerce-split"] .header-row {
    min-height: 104px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px 46px;
    gap: 0 10px;
  }

  html[data-theme="commerce-split"] .brand {
    font-size: 23px;
  }

  html[data-theme="commerce-split"] .header-actions {
    justify-content: flex-end;
  }

  html[data-theme="commerce-split"] .header-actions .pill-btn,
  html[data-theme="commerce-split"] .commerce-account-link {
    display: none;
  }

  html[data-theme="commerce-split"] #menuBtn {
    display: inline-flex;
  }

  html[data-theme="commerce-split"] .commerce-category-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  html[data-theme="commerce-split"] .commerce-category-nav::-webkit-scrollbar {
    display: none;
  }

  html[data-theme="commerce-split"] .mobile-menu {
    position: absolute;
    top: 104px;
    right: 0;
    left: 0;
    z-index: 90;
    border: 0;
    border-top: 1px solid #dedede;
    padding: 14px;
    background: #fff;
  }

  html[data-theme="commerce-split"] .mobile-menu a {
    border: 1px solid #dedede;
    border-radius: 0;
    color: #111;
    background: #fff;
  }

  html[data-theme="commerce-split"] .commerce-split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  html[data-theme="commerce-split"] .commerce-hero-panel {
    min-height: min(620px, 74svh);
  }

  html[data-theme="commerce-split"] .commerce-hero-clothing > img {
    object-position: 66% top;
  }

  html[data-theme="commerce-split"] .commerce-hero-origin {
    min-height: 440px;
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }

  html[data-theme="commerce-split"] .commerce-hero-copy {
    top: auto;
    bottom: 34px;
    left: 24px;
    width: calc(100% - 48px);
    transform: none;
  }

  html[data-theme="commerce-split"] .commerce-hero-copy h1,
  html[data-theme="commerce-split"] .commerce-hero-copy h2 {
    font-size: clamp(40px, 13vw, 64px);
  }

  html[data-theme="commerce-split"] .commerce-trust-strip > div {
    min-height: 60px;
    padding: 8px;
  }

  html[data-theme="commerce-split"] .commerce-trust-strip span {
    display: none;
  }

  html[data-theme="commerce-split"] .commerce-product-section,
  html[data-theme="commerce-split"] .commerce-category-section,
  html[data-theme="commerce-split"] .commerce-editorial,
  html[data-theme="commerce-split"] .page > .container,
  html[data-theme="commerce-split"] .site-footer .container {
    width: min(100% - 22px, 1400px);
  }

  html[data-theme="commerce-split"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  html[data-theme="commerce-split"] .product-body {
    padding: 11px;
  }

  html[data-theme="commerce-split"] .product-name,
  html[data-theme="commerce-split"] .product-price {
    font-size: 12px;
  }

  html[data-theme="commerce-split"] .product-row {
    gap: 6px;
  }

  html[data-theme="commerce-split"] .product-actions .btn {
    min-height: 42px;
    padding: 9px 7px;
    font-size: 9px;
  }

  html[data-theme="commerce-split"] .commerce-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-theme="commerce-split"] .commerce-category-grid a {
    min-height: 130px;
    padding: 18px;
  }

  html[data-theme="commerce-split"] .commerce-editorial {
    grid-template-columns: 1fr;
  }

  html[data-theme="commerce-split"] .commerce-editorial > article {
    min-height: 380px;
  }

  html[data-theme="commerce-split"] .signature-product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  html[data-theme="commerce-split"] .summary-block {
    position: static;
  }
}

@media (max-width: 520px) {
  html[data-theme="commerce-split"] .commerce-trust-strip strong {
    font-size: 9px;
  }

  html[data-theme="commerce-split"] .commerce-section-head {
    align-items: flex-start;
  }

  html[data-theme="commerce-split"] .commerce-section-head h2 {
    font-size: 25px;
  }

  html[data-theme="commerce-split"] .commerce-section-head > a {
    font-size: 10px;
  }

  html[data-theme="commerce-split"] .commerce-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme="commerce-split"] .commerce-hero-panel > img,
  html[data-theme="commerce-split"] .product-media img,
  html[data-theme="commerce-split"] .commerce-category-nav a::after {
    transition: none;
  }
}

.admin-item[data-theme-id^="studio-"] .theme-preview {
  --preview-bg: #f5f5f7;
  --preview-surface: #ffffff;
  --preview-accent: #0071e3;
  border-color: rgba(0, 0, 0, 0.12);
  background:
    linear-gradient(180deg, #ffffff, #f5f5f7);
}

.admin-item[data-theme-id="studio-graphite"] .theme-preview { --preview-bg: #f4f4f5; --preview-surface: #ffffff; --preview-accent: #303236; }
.admin-item[data-theme-id="studio-platinum"] .theme-preview { --preview-bg: #f7f7f8; --preview-surface: #ffffff; --preview-accent: #8d959f; }
.admin-item[data-theme-id="studio-ivory"] .theme-preview { --preview-bg: #fbfaf6; --preview-surface: #ffffff; --preview-accent: #78664a; }
.admin-item[data-theme-id="studio-champagne"] .theme-preview { --preview-bg: #faf7f0; --preview-surface: #ffffff; --preview-accent: #b08a55; }
.admin-item[data-theme-id="studio-sage"] .theme-preview { --preview-bg: #f5f8f4; --preview-surface: #ffffff; --preview-accent: #6f866f; }
.admin-item[data-theme-id="studio-olive"] .theme-preview { --preview-bg: #f6f7f1; --preview-surface: #ffffff; --preview-accent: #6f7248; }
.admin-item[data-theme-id="studio-midnight"] .theme-preview { --preview-bg: #f3f5f9; --preview-surface: #ffffff; --preview-accent: #1f3554; }
.admin-item[data-theme-id="studio-cobalt"] .theme-preview { --preview-bg: #f3f7ff; --preview-surface: #ffffff; --preview-accent: #1f5fbf; }
.admin-item[data-theme-id="studio-sky"] .theme-preview { --preview-bg: #f5fbff; --preview-surface: #ffffff; --preview-accent: #3f8ebd; }
.admin-item[data-theme-id="studio-ice"] .theme-preview { --preview-bg: #f7fbfb; --preview-surface: #ffffff; --preview-accent: #6a9ca2; }
.admin-item[data-theme-id="studio-rose"] .theme-preview { --preview-bg: #fff7f8; --preview-surface: #ffffff; --preview-accent: #b5657b; }
.admin-item[data-theme-id="studio-blush"] .theme-preview { --preview-bg: #fff8f5; --preview-surface: #ffffff; --preview-accent: #bf7d68; }
.admin-item[data-theme-id="studio-burgundy"] .theme-preview { --preview-bg: #fbf6f7; --preview-surface: #ffffff; --preview-accent: #7b2738; }
.admin-item[data-theme-id="studio-amber"] .theme-preview { --preview-bg: #fffaf0; --preview-surface: #ffffff; --preview-accent: #b87324; }
.admin-item[data-theme-id="studio-bronze"] .theme-preview { --preview-bg: #faf7f3; --preview-surface: #ffffff; --preview-accent: #916a44; }
.admin-item[data-theme-id="studio-mocha"] .theme-preview { --preview-bg: #f8f5f2; --preview-surface: #ffffff; --preview-accent: #6b4f3c; }
.admin-item[data-theme-id="studio-violet"] .theme-preview { --preview-bg: #f8f6ff; --preview-surface: #ffffff; --preview-accent: #69539d; }
.admin-item[data-theme-id="studio-lavender"] .theme-preview { --preview-bg: #faf8ff; --preview-surface: #ffffff; --preview-accent: #9a82bf; }
.admin-item[data-theme-id="studio-mint"] .theme-preview { --preview-bg: #f4fbf8; --preview-surface: #ffffff; --preview-accent: #4f9a7a; }
.admin-item[data-theme-id="studio-carbon"] .theme-preview { --preview-bg: #f2f3f4; --preview-surface: #ffffff; --preview-accent: #111418; }

html[data-theme^="studio-"] body {
  background:
    radial-gradient(900px 460px at 50% -18%, var(--bg-glow-1), transparent 70%),
    radial-gradient(740px 420px at 88% 8%, var(--bg-glow-2), transparent 68%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 46%, var(--surface) 100%);
}

html[data-theme^="studio-"] body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.014) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 36%, transparent 100%);
}

html[data-theme^="studio-"] .container {
  width: min(1320px, calc(100% - 32px));
}

html[data-theme^="studio-"] .page {
  padding: 16px 0 72px;
}

html[data-theme^="studio-"] .section {
  margin-top: clamp(18px, 4vw, 42px);
}

html[data-theme^="studio-"] .site-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(251, 251, 253, 0.78);
  box-shadow: none;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

html[data-theme^="studio-"] .header-row {
  min-height: 64px;
}

html[data-theme^="studio-"] .brand {
  color: #1d1d1f;
  letter-spacing: 0.03em;
}

html[data-theme^="studio-"] .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0.14);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(145deg, #222222, #050505);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px rgba(0, 0, 0, 0.12);
}

html[data-theme^="studio-"] .main-nav {
  gap: 2px;
}

html[data-theme^="studio-"] .main-nav a,
html[data-theme^="studio-"] .mobile-menu a {
  color: #4d4d51;
  border-color: transparent;
  background: transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

html[data-theme^="studio-"] .main-nav a:hover,
html[data-theme^="studio-"] .main-nav a.active,
html[data-theme^="studio-"] .mobile-menu a:hover,
html[data-theme^="studio-"] .mobile-menu a:focus-visible {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.055);
  border-color: transparent;
}

html[data-theme^="studio-"] .mobile-menu {
  border-top-color: rgba(0, 0, 0, 0.08);
  background: rgba(251, 251, 253, 0.86);
}

html[data-theme^="studio-"] h1,
html[data-theme^="studio-"] h2,
html[data-theme^="studio-"] h3,
html[data-theme^="studio-"] h4 {
  letter-spacing: 0;
  font-weight: 800;
}

html[data-theme^="studio-"] .hero h1,
html[data-theme^="studio-"] .signature-title,
html[data-theme^="studio-"] .signature-hero h1 {
  color: #1d1d1f;
  letter-spacing: 0;
  line-height: 0.98;
}

html[data-theme^="studio-"] .hero p,
html[data-theme^="studio-"] .signature-lede {
  color: #6e6e73;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

html[data-theme^="studio-"] .eyebrow,
html[data-theme^="studio-"] .signature-kicker,
html[data-theme^="studio-"] .signature-label,
html[data-theme^="studio-"] .signature-chip,
html[data-theme^="studio-"] .signature-trust-pill,
html[data-theme^="studio-"] .signature-tag,
html[data-theme^="studio-"] .chip,
html[data-theme^="studio-"] .order-pill,
html[data-theme^="studio-"] .status-chip,
html[data-theme^="studio-"] .customer-tier {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: #515154;
  box-shadow: none;
}

html[data-theme^="studio-"] .hero,
html[data-theme^="studio-"] .panel,
html[data-theme^="studio-"] .product-card,
html[data-theme^="studio-"] .collection-card,
html[data-theme^="studio-"] .story-card,
html[data-theme^="studio-"] .info-card,
html[data-theme^="studio-"] .metric-card,
html[data-theme^="studio-"] .legal-link-card,
html[data-theme^="studio-"] .cart-item,
html[data-theme^="studio-"] .order-card,
html[data-theme^="studio-"] .summary-block,
html[data-theme^="studio-"] .checkout-item,
html[data-theme^="studio-"] .admin-item,
html[data-theme^="studio-"] .client-card,
html[data-theme^="studio-"] .lookbook-feature,
html[data-theme^="studio-"] .product-share-panel,
html[data-theme^="studio-"] .faq-item,
html[data-theme^="studio-"] .trust-item,
html[data-theme^="studio-"] .orders-note,
html[data-theme^="studio-"] .order-item-mini,
html[data-theme^="studio-"] .admin-order-item,
html[data-theme^="studio-"] .admin-message-thread,
html[data-theme^="studio-"] .toast {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
}

html[data-theme^="studio-"] .hero,
html[data-theme^="studio-"] .signature-hero,
html[data-theme^="studio-"] .signature-shop-hero,
html[data-theme^="studio-"] .signature-collection-hero-shell,
html[data-theme^="studio-"] .signature-product-hero {
  border-radius: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: none;
}

html[data-theme^="studio-"] .hero-inner {
  padding: clamp(30px, 6vw, 78px);
}

html[data-theme^="studio-"] .hero-media,
html[data-theme^="studio-"] .signature-stage-shell,
html[data-theme^="studio-"] .signature-tech-card,
html[data-theme^="studio-"] .signature-editorial-visual,
html[data-theme^="studio-"] .signature-shop-visual,
html[data-theme^="studio-"] .signature-collection-visual,
html[data-theme^="studio-"] .signature-audio-shop-visual,
html[data-theme^="studio-"] .signature-lookbook-card,
html[data-theme^="studio-"] .signature-origini-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: var(--surface-2);
  box-shadow: none;
}

html[data-theme^="studio-"] .hero-media::after,
html[data-theme^="studio-"] .signature-stage-shell::after,
html[data-theme^="studio-"] .signature-shop-visual::after,
html[data-theme^="studio-"] .signature-collection-visual::after {
  background: linear-gradient(180deg, transparent 45%, rgba(245, 245, 247, 0.92) 100%);
}

html[data-theme^="studio-"] .hero-media img,
html[data-theme^="studio-"] .hero-media video,
html[data-theme^="studio-"] .signature-stage-shell img,
html[data-theme^="studio-"] .signature-tech-card img,
html[data-theme^="studio-"] .signature-editorial-visual img,
html[data-theme^="studio-"] .signature-shop-visual img,
html[data-theme^="studio-"] .signature-collection-visual img,
html[data-theme^="studio-"] .signature-audio-shop-visual img {
  opacity: 1;
  filter: saturate(1.02) contrast(1.01);
}

html[data-theme^="studio-"] .pill-btn,
html[data-theme^="studio-"] .icon-btn,
html[data-theme^="studio-"] .btn,
html[data-theme^="studio-"] .admin-tab,
html[data-theme^="studio-"] .shop-collection-chip,
html[data-theme^="studio-"] .admin-filter-btn {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

html[data-theme^="studio-"] .pill-btn:hover,
html[data-theme^="studio-"] .icon-btn:hover,
html[data-theme^="studio-"] .btn:hover,
html[data-theme^="studio-"] .admin-tab:hover,
html[data-theme^="studio-"] .shop-collection-chip:hover,
html[data-theme^="studio-"] .admin-filter-btn:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

html[data-theme^="studio-"] .btn.primary,
html[data-theme^="studio-"] .pill-btn.active,
html[data-theme^="studio-"] .admin-tab.active,
html[data-theme^="studio-"] .shop-collection-chip.active,
html[data-theme^="studio-"] .admin-filter-btn.active {
  color: #ffffff;
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent) 22%, transparent);
}

html[data-theme^="studio-"] .btn.soft {
  color: var(--accent);
  background: transparent;
  border-color: transparent;
}

html[data-theme^="studio-"] .product-card,
html[data-theme^="studio-"] .collection-card,
html[data-theme^="studio-"] .story-card,
html[data-theme^="studio-"] .info-card,
html[data-theme^="studio-"] .metric-card {
  border-radius: 28px;
  overflow: hidden;
}

html[data-theme^="studio-"] .product-card:hover,
html[data-theme^="studio-"] .collection-card:hover,
html[data-theme^="studio-"] .story-card:hover,
html[data-theme^="studio-"] .info-card:hover,
html[data-theme^="studio-"] .metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
}

html[data-theme^="studio-"] .product-media,
html[data-theme^="studio-"] .cart-thumb,
html[data-theme^="studio-"] .collection-media,
html[data-theme^="studio-"] .product-main-image,
html[data-theme^="studio-"] .checkout-item img,
html[data-theme^="studio-"] .order-item-mini img,
html[data-theme^="studio-"] .admin-order-item img,
html[data-theme^="studio-"] .admin-product-thumb {
  border-color: rgba(0, 0, 0, 0.08);
  background: var(--surface-2);
}

html[data-theme^="studio-"] .product-card-kicker,
html[data-theme^="studio-"] .product-card-stock,
html[data-theme^="studio-"] .product-card-collection,
html[data-theme^="studio-"] .product-card-promo {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

html[data-theme^="studio-"] .product-name,
html[data-theme^="studio-"] .product-price {
  color: #1d1d1f;
}

html[data-theme^="studio-"] .input,
html[data-theme^="studio-"] .select,
html[data-theme^="studio-"] .textarea,
html[data-theme^="studio-"] .status-select,
html[data-theme^="studio-"] .note-input,
html[data-theme^="studio-"] .admin-search {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
}

html[data-theme^="studio-"] .input:focus,
html[data-theme^="studio-"] .select:focus,
html[data-theme^="studio-"] .textarea:focus,
html[data-theme^="studio-"] .admin-search:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
  outline: none;
}

html[data-theme^="studio-"] .panel-head {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html[data-theme^="studio-"] .admin-tabs {
  padding: 6px;
  border-radius: 16px;
  background: var(--surface-2);
}

html[data-theme^="studio-"] .admin-item.is-selected,
html[data-theme^="studio-"] .order-card.is-selected,
html[data-theme^="studio-"] .admin-message-thread.is-selected {
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  background: color-mix(in srgb, var(--accent) 9%, white 91%);
}

html[data-theme^="studio-"] .cart-badge,
html[data-theme^="studio-"] .admin-messages-fab-badge {
  color: #ffffff;
  background: var(--accent);
}

html[data-theme^="studio-"] .toast {
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

html[data-theme^="studio-"] .toast-timer-bar {
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 52%, white 48%));
}

html[data-theme^="studio-"] .site-footer {
  color: #6e6e73;
  border-top-color: rgba(0, 0, 0, 0.08);
  background: rgba(245, 245, 247, 0.78);
}

html[data-theme^="studio-"] .footer-title,
html[data-theme^="studio-"] .footer-links a,
html[data-theme^="studio-"] .signature-footer-socials a {
  color: #1d1d1f;
}

html[data-theme^="studio-"] ::selection {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: #1d1d1f;
}

@media (min-width: 860px) {
  html[data-theme^="studio-"] .signature-hero-grid,
  html[data-theme^="studio-"] .signature-shop-grid,
  html[data-theme^="studio-"] .signature-collection-hero {
    gap: clamp(26px, 4vw, 58px);
  }

  html[data-theme^="studio-"] .signature-hero {
    min-height: min(760px, calc(100vh - 96px));
  }
}

@media (max-width: 859px) {
  html[data-theme^="studio-"] .container {
    width: min(100% - 22px, 1320px);
  }

  html[data-theme^="studio-"] .hero,
  html[data-theme^="studio-"] .signature-hero,
  html[data-theme^="studio-"] .signature-shop-hero,
  html[data-theme^="studio-"] .signature-collection-hero-shell,
  html[data-theme^="studio-"] .signature-product-hero {
    border-radius: 28px;
  }

  html[data-theme^="studio-"] .hero-inner {
    padding: 28px 20px;
  }
}

.toast,
html[data-theme] .toast {
  position: fixed;
  left: 14px;
  bottom: 14px;
  width: min(430px, calc(100vw - 28px));
  color: #f8f8f4;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.36);
  z-index: 70;
}

.toast .toast-message,
html[data-theme] .toast .toast-message {
  color: #f8f8f4;
}

html[data-theme] .toast .btn.toast-undo {
  color: #090909;
  border-color: rgba(255, 255, 255, 0.78);
  background: #f8f8f4;
  box-shadow: none;
}

html[data-theme] .toast .btn.toast-undo:hover,
html[data-theme] .toast .btn.toast-undo:focus-visible {
  color: #000000;
  border-color: #ffffff;
  background: #ffffff;
}

.toast .toast-timer {
  background: rgba(255, 255, 255, 0.16);
}

.toast .toast-timer-bar,
html[data-theme^="studio-"] .toast .toast-timer-bar {
  background: linear-gradient(90deg, #f8f8f4, #9f8a68);
}
