/* Skyline × MHC layout language: white page, dark photo hero, branded vials */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  /* Soft slate-lavender — deeper than pure white so purple cards read premium */
  --bg: #e6e2ef;
  --bg-soft: #ddd7eb;
  --bg-band: #d4cde4;
  --bg-card: #f4f1fa;
  --text: #16141f;
  --muted: #4a4558;
  --faint: #6e6780;
  --line: rgba(40, 30, 70, 0.12);
  --line-soft: rgba(40, 30, 70, 0.09);
  --brand: #6d28d9;
  --brand-2: #5b21b6;
  --brand-soft: #e9e2ff;
  --accent: #7c3aed;
  --cyan: #6d28d9;
  --cyan-dim: #7c3aed;
  --sale: #be185d;
  --ok: #059669;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Montserrat", system-ui, sans-serif;
  --shadow: 0 14px 40px rgba(40, 20, 80, 0.12);
  --header-h: 76px;
  --bg-elev: #f4f1fa;
  --bg-card-hover: #faf8ff;
  --line-hot: rgba(109, 40, 217, 0.35);
  --magenta: #7c3aed;
  --purple: #6d28d9;
  --ink: #111318;
  --ink-elev: #1a1d26;
  --ink-line: rgba(255, 255, 255, 0.12);
  --ink-text: #f4f5f7;
  --ink-muted: #c4c8d0;
  --glow: #c4b5fd;
  --well: #1a1528;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
/* Catalog band — soft purple field so full-bleed brand cards pop */
.section--catalog {
  background: linear-gradient(180deg, #d9d2ea 0%, #cdc4e2 55%, #c6bddc 100%);
  border-block: 1px solid rgba(91, 33, 182, 0.12);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Top strip — brand dark */
.topbar {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  background: #111318;
  color: #c8ccd6;
  border-bottom: 0;
}
.topbar strong { color: #fff; font-weight: 700; }

.trust-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #fafafa;
  white-space: nowrap;
}
.trust-marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.55rem 0;
  animation: marquee 32s linear infinite;
  min-width: 200%;
}
.trust-marquee-track span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.trust-marquee-track span b {
  color: var(--brand);
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* White sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
}
.brand-name small {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-top: 0.12rem;
}
.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav a { position: relative; padding: 0.35rem 0; }
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--brand); }
.header-search {
  display: none;
  flex: 1;
  max-width: 220px;
}
.header-search input {
  width: 100%;
  background: #f3f4f7;
  border: 1px solid var(--line-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}
.header-search input::placeholder { color: var(--faint); }
.header-search input:focus {
  outline: none;
  border-color: rgba(91, 33, 182, 0.35);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .header-search { display: block; }
  .mobile-toggle, .mobile-nav, .mobile-nav.open { display: none !important; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--text);
}
.icon-btn:hover { border-color: rgba(91, 33, 182, 0.35); color: var(--brand); }
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.mobile-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 1.25rem;
  color: var(--text);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding-bottom: 0.75rem;
  background: #fff;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #5b21b6, #4f46e5);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91, 33, 182, 0.25);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(91, 33, 182, 0.35);
  color: var(--brand);
  background: var(--brand-soft);
}
.btn-sm { padding: 0.52rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

/* ========== HERO: dark photo → white cut ========== */
.hero {
  position: relative;
  padding: 4.5rem 0 6.5rem;
  overflow: hidden;
  color: #f4f5f7;
  background: #0e1016;
}
.hero--visual { isolation: isolate; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.65;
  filter: saturate(0.9) brightness(0.7);
}
.hero-media-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 12, 18, 0.88) 0%, rgba(10, 12, 18, 0.55) 48%, rgba(10, 12, 18, 0.25) 100%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.2) 0%, transparent 45%, rgba(10, 12, 18, 0.15) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2.75rem; }
}
.hero-copy { max-width: 36rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 0.9rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 800;
  color: #fff;
}
.hero-lead {
  color: #d0d4de;
  font-size: 1.05rem;
  max-width: 30rem;
  margin: 0 0 1.35rem;
  line-height: 1.6;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}
.hero-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: #d8dbe4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
}
.hero-chip em { font-style: normal; color: #ddd6fe; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-shot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 22, 30, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.hero-shot--featured {
  aspect-ratio: 16 / 11;
  max-width: 540px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  box-shadow: 0 28px 64px rgba(40, 10, 80, 0.45);
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-shot-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(transparent, rgba(8, 10, 16, 0.92));
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.75rem;
  color: #f4f5f7;
}
.hero-shot-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
}
.hero-shot-sub { color: #c4c8d4; font-size: 0.85rem; }
.hero-shot-caption span {
  color: #ddd6fe;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Soft dissolve into soft lavender page (not pure white) */
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(230, 226, 239, 0) 0%,
    rgba(230, 226, 239, 0.55) 48%,
    #e6e2ef 100%
  );
}

/* ========== PAGE BANDS ========== */
.section { padding: 4rem 0; }
.section--base { background: #efeaf8; }
.section--soft { background: var(--bg-soft); }
.section--band { background: var(--bg-band); }
.section--brand {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 48%, #818cf8 100%);
  color: #1e1238;
}
.section--overlap {
  padding-top: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  background: transparent;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.section h2, .section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-lead, .lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.35rem;
  line-height: 1.6;
}
.center { text-align: center; }
.about-band { max-width: 720px; margin-inline: auto; text-align: center; }
.about-band .btn { margin-top: 1rem; }

/* Metrics panel over the hero cut */
.metrics--panel {
  background: #f4f1fa;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0.25rem;
  box-shadow: 0 20px 50px rgba(40, 20, 80, 0.12);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .metrics--panel { grid-template-columns: repeat(4, 1fr); }
}
.metrics--panel .metric {
  background: transparent;
  border: 0;
  padding: 1.25rem 1.2rem;
}
@media (min-width: 800px) {
  .metrics--panel .metric:not(:last-child) {
    border-right: 1px solid var(--line-soft);
  }
}
.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.metric span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

/* Showcase strip */
.showcase-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 800px) {
  .showcase-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.showcase-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(91, 33, 182, 0.2);
}
.showcase-img {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f4f2fb 0%, #ebe8f4 100%);
  display: grid;
  place-items: center;
  padding: 10%;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(40, 20, 80, 0.12));
}
.showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0.95rem 1rem;
  border-top: 1px solid var(--line-soft);
}
.showcase-meta span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}
.showcase-meta em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 700;
}

/* Product grid — shop-style purple cards, full-bleed branded vial */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1050px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
  background: linear-gradient(180deg, #2d1b4e 0%, #1c1235 55%, #140e28 100%);
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 14px 36px rgba(30, 12, 60, 0.28);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(30, 12, 60, 0.38);
  border-color: rgba(216, 180, 254, 0.55);
}
/* Full picture fills the media frame — no letterboxing */
.product-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(139, 92, 246, 0.4) 0%, transparent 62%),
    linear-gradient(180deg, #241543 0%, #160f2c 100%);
  border-bottom: 1px solid rgba(167, 139, 250, 0.18);
  overflow: hidden;
}
.product-media::after { display: none; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  filter: none;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  display: block;
}
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.product-body {
  padding: 0.95rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
  background: linear-gradient(180deg, rgba(45, 27, 78, 0.95) 0%, #160f2c 100%);
  color: #f4f2ff;
}
.product-cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c4b5fd;
}
.product-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
}
.product-body h3 a { color: #fff; }
.product-body h3 a:hover { color: #ede9fe; }
.product-meta-line {
  font-size: 0.78rem;
  color: #b8b0d4;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.35rem 0 0.3rem;
}
.price {
  font-weight: 800;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.price em {
  font-style: normal;
  color: #c4b5fd;
  font-weight: 700;
  font-size: 0.78rem;
  margin-right: 0.2rem;
  text-transform: lowercase;
}
.price-old {
  font-size: 0.82rem;
  color: #8b849e;
  text-decoration: line-through;
}
.product-body .btn {
  margin-top: auto;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow: none;
}
.product-body .btn:hover {
  background: #fff;
  color: #4c1d95;
  border-color: #fff;
}
/* Homepage + shop share identical brand cards */
.product-grid--brand .product-card,
.section--catalog .product-card,
#shop-grid .product-card {
  /* purple full-image aesthetic */
}

/* Shop */
.page-hero {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0.25rem 0 0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.breadcrumb { font-size: 0.82rem; color: var(--faint); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(20, 24, 40, 0.04);
}
.shop-toolbar input[type="search"],
.shop-toolbar select {
  background: #f3f4f7;
  border: 1px solid var(--line-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}
.shop-toolbar label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}
#result-count {
  margin-left: auto;
  color: var(--faint);
  font-size: 0.88rem;
  font-weight: 500;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.chip:hover { color: var(--text); border-color: rgba(91, 33, 182, 0.3); }
.chip.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

/* Quality / guarantee */
.quality-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 800px) {
  .quality-grid { grid-template-columns: repeat(4, 1fr); }
}
.quality-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 1px 2px rgba(20, 24, 40, 0.03);
}
.quality-item h4 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 0.98rem;
  color: var(--text);
}
.quality-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.guarantee {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.guarantee-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.guarantee-icon {
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.guarantee-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--text);
}
.guarantee-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.55rem;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.95rem 1.05rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); }
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0.65rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.92rem;
}
.faq a { color: var(--brand); font-weight: 600; }

/* CTA brand band — soft violet (not muddy dark); deep ink type for crisp contrast */
.section--brand {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 42%, #818cf8 100%);
  color: #1e1238;
}
.section--brand .cta {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.75rem 0;
}
.section--brand h2 {
  color: #1e1238 !important;
  text-shadow: none;
  font-weight: 800;
}
.section--brand p {
  color: #3b2a66 !important;
  font-weight: 550;
}
.section--brand .btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30, 18, 56, 0.18);
  color: #2e1065 !important;
}
.section--brand .btn-ghost:hover {
  background: #fff;
  color: #1e1238 !important;
}
.section--brand .btn-primary {
  background: #4c1d95 !important;
  color: #ffffff !important;
  border: 1px solid #4c1d95;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.28);
}
.section--brand .btn-primary:hover {
  background: #5b21b6 !important;
  color: #fff !important;
  filter: brightness(1.05);
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: #fff;
}
.cta h2 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--text);
}
.cta p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.cta-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Footer dark */
.site-footer {
  margin-top: 0;
  padding-top: 2.75rem;
  background: #111318;
  color: #f4f5f7;
}
.site-footer .footer-blurb,
.site-footer .footer-ruo,
.site-footer .footer-grid a,
.site-footer .footer-legal p {
  color: #b0b5c0;
}
.site-footer .footer-grid h4,
.site-footer .footer-policy-links a,
.site-footer .brand-name small {
  color: #c4b5fd;
}
.site-footer .brand-name { color: #fff; }
.site-footer .footer-grid a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid h4 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.35rem; }
.footer-grid a { font-size: 0.88rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-ruo { font-size: 0.82rem; margin-top: 0.75rem; }
.footer-policy-links { margin: 0.75rem 0; }
.footer-policy-links a { margin: 0 0.15rem; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
  padding: 1.25rem 0 1.75rem;
  font-size: 0.8rem;
}

/* Legal pages */
.legal-page { padding: 2.5rem 0 3.5rem; background: #fff; }
.legal-wrap { max-width: 760px; }
.legal-wrap h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.35rem 0 0.5rem;
  color: var(--text);
}
.legal-effective { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.legal-body h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--brand);
}
.legal-body h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; color: var(--text); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.95rem; }
.legal-body ul { padding-left: 1.2rem; margin: 0.5rem 0 1rem; }
.legal-body hr { border: 0; border-top: 1px solid var(--line-soft); margin: 1.5rem 0; }
.legal-callout {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  white-space: pre-wrap;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
  overflow-x: auto;
}
.legal-meta { color: var(--faint); font-size: 0.9rem; }
.legal-back { margin-top: 2rem; }
.legal-back a { color: var(--brand); font-weight: 600; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.contact-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}
.contact-list a { color: var(--brand); font-weight: 600; }
.contact-note { color: var(--muted); font-size: 0.92rem; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.contact-card h2 { margin: 0 0 0.75rem; font-size: 1.1rem; color: var(--text); }
.contact-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.contact-card a { color: var(--brand); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.section--lift, .section--surface, .section--soft, .section--photo {
  /* map old class names used in pages */
}
.section--lift { background: var(--bg-soft); }
.section--surface { background: #fff; }
.section--photo {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--bg-soft);
}
.section-photo-bg { display: none; }
.section-photo-inner { position: relative; z-index: 1; }
.kicker--on-light { color: var(--brand); }
.on-light { color: var(--text) !important; }
.on-light-muted { color: var(--muted) !important; }
.quality-grid--on-light .quality-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 24px rgba(20, 24, 40, 0.05);
}

/* Gate — dark glass window, readable */
html.gate-locked,
html.gate-locked body {
  overflow: hidden !important;
  height: 100% !important;
}
html.gate-locked body > *:not(#gate) {
  pointer-events: none;
  user-select: none;
}
.gate {
  --text: #f4f5f7;
  --muted: #c4c8d4;
  --faint: #9aa0ae;
  --cyan: #c4b5fd;
  --line: rgba(255, 255, 255, 0.12);
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(12, 14, 20, 0.88);
  backdrop-filter: blur(14px);
  display: grid !important;
  place-items: center;
  padding: 1.25rem;
  color: var(--text);
}
.gate[hidden] { display: none !important; }
.gate-panel {
  width: min(440px, 100%);
  background: #1c1e28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.65rem;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
  text-align: center;
  color: var(--text);
}
.gate-panel .brand-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
}
.gate-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
}
.gate-panel h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
}
.gate-panel > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 auto 0.35rem;
  max-width: 22rem;
  line-height: 1.55;
}
.gate-check {
  display: flex;
  gap: 0.7rem;
  text-align: left;
  font-size: 0.86rem;
  margin: 1.25rem 0 1.15rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  cursor: pointer;
}
.gate-check input {
  margin-top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #8b5cf6;
  flex-shrink: 0;
}
.gate-check span { color: var(--muted); line-height: 1.45; }
.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.gate-actions .btn { width: 100%; }
.gate-actions .btn-ghost {
  border-color: transparent;
  color: var(--faint);
  background: transparent;
}
.gate-error {
  color: #f9a8d4;
  font-size: 0.82rem;
  margin: 0 0 0.75rem;
}

/* PDP bits */
.pdp-note {
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-soft);
  background: var(--brand-soft);
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.75rem 0;
}
.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.85rem;
}
.specs th, .specs td {
  border: 1px solid var(--line-soft);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.specs th {
  width: 34%;
  background: var(--bg-soft);
  color: var(--muted);
  font-weight: 600;
}
.qty input {
  width: 42px;
  border: 0;
  background: var(--bg-soft);
  color: var(--text);
  text-align: center;
}

/* Kill old monoblock gray band classes if still referenced */
.section--lift { background: transparent; }
.section--surface { background: var(--bg-soft); }
.section--soft { background: var(--bg-soft); }
.section--base { background: #efeaf8; }
.section--cta { background: transparent; }
.section--brand .on-light { color: #1e1238 !important; }

/* FAQ / quality cards on softer field */
.faq details,
.quality-item,
.guarantee-card {
  background: #f4f1fa;
}
.shop-toolbar {
  background: #f4f1fa;
}
.chip {
  background: #f4f1fa;
}

/* =========================================================
   PAGE SYSTEMS — PDP / Cart / COA / utilities
   Restored so shop, product, cart, certificates are not broken
   Purple brand, light page surfaces
   ========================================================= */

/* --- Product detail --- */
.pdp {
  display: block;
  padding: 1.35rem 0 3rem;
}
.pdp-buy-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pdp-buy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pdp-gallery > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(124, 58, 237, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #1e1238 0%, #140e28 100%);
  box-shadow: 0 18px 48px rgba(40, 20, 80, 0.22);
  display: block;
}
.pdp h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0.35rem 0 0.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
}
.pdp-sub {
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}
.pdp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
  margin-bottom: 1.1rem;
}
.pdp-price .price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.variant-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.45rem;
}
.variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.variant {
  border: 1px solid var(--line);
  background: #f4f1fa;
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  min-width: 4.5rem;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.variant small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.15rem;
  opacity: 1;
}
.variant:hover {
  border-color: rgba(109, 40, 217, 0.4);
  background: #fff;
}
.variant.active {
  border-color: var(--brand);
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}
.variant.active small { color: var(--brand); }
.qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  align-items: stretch;
}
.qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.qty button {
  width: 42px;
  height: 46px;
  background: #f4f1fa;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}
.qty button:hover { background: var(--brand-soft); color: var(--brand); }
.qty input {
  width: 48px;
  border: 0;
  background: #fff;
  color: var(--text);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.qty-row .btn {
  flex: 1;
  min-width: 160px;
  height: 46px;
  border-radius: 12px;
}
.qty-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.15rem 0 1rem;
}
.qty-tiers b { color: var(--brand); font-weight: 700; }
.coa-size-note a,
.pdp-sub a {
  color: var(--brand);
  font-weight: 600;
}
button.link-like {
  background: none;
  border: 0;
  padding: 0;
  color: var(--brand);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-inline-coa {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  background: #f4f1fa;
}
.pdp-inline-coa a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
}
.pdp-inline-coa img {
  width: 88px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  background: #1a1230;
  border: 1px solid var(--line-soft);
}
.pdp-inline-coa strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.pdp-inline-coa .pdp-sub { font-size: 0.8rem; margin: 0; }
.pdp-inline-coa:hover { border-color: rgba(109, 40, 217, 0.35); }

.pdp-body {
  max-width: 820px;
  margin-top: 0.5rem;
}
.pdp-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line-soft);
}
.pdp-section:last-child { border-bottom: 0; }
.pdp-section-title {
  font-family: var(--display);
  font-size: 1.12rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 800;
}
.pdp-section p {
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.65;
}
.pdp-muted {
  font-size: 0.9rem;
  color: var(--faint) !important;
}
.pdp-list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}
.pdp-list li { margin-bottom: 0.35rem; }
.pdp-coa { margin: 1rem 0 1.25rem; }
.pdp-coa-card {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: #f4f1fa;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  transition: border-color 0.15s;
}
.pdp-coa-card:hover { border-color: rgba(109, 40, 217, 0.4); }
.pdp-coa-card img {
  width: 100%;
  border-radius: 10px;
  background: #1a1230;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.pdp-coa-card strong { color: var(--text); display: block; margin-bottom: 0.25rem; }
.pdp-coa--empty {
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(109, 40, 217, 0.28);
  border-radius: 14px;
  background: rgba(109, 40, 217, 0.04);
}
.pdp-coa--empty p { margin: 0 0 0.5rem; }
.pdp-coa--empty p:last-child { margin-bottom: 0; }
.related-grid { margin-top: 0.5rem; }
@media (min-width: 700px) {
  .related-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  background: #f4f1fa;
  border-radius: 12px;
  overflow: hidden;
}
.specs th, .specs td {
  border: 1px solid var(--line-soft);
  padding: 0.65rem 0.8rem;
  text-align: left;
}
.specs th {
  width: 34%;
  background: #ebe6f6;
  color: var(--muted);
  font-weight: 700;
}
.specs td { color: var(--text); background: #faf8ff; }

/* --- Cart --- */
.cart-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: 1.45fr 0.85fr;
    align-items: start;
  }
}
.cart-lines {
  background: #f4f1fa;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0.35rem 1.15rem;
}
.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.cart-row:last-child { border-bottom: 0; }
.cart-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: #1a1230;
}
.cart-row strong { display: block; color: var(--text); margin-bottom: 0.15rem; }
.cart-row .pdp-sub { margin: 0; }
.cart-line-total { text-align: right; font-weight: 700; color: var(--text); }
.linkish {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  cursor: pointer;
  text-decoration: underline;
}
.linkish:hover { color: var(--brand); }
.cart-summary {
  background: #f4f1fa;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 10px 28px rgba(40, 20, 80, 0.08);
}
.cart-summary h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--text);
}
.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.sum-total {
  color: var(--text);
  font-weight: 800;
  font-size: 1.12rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.85rem;
  margin-top: 0.55rem;
}
.cart-empty {
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  max-width: 420px;
  margin: 0 auto;
  background: #f4f1fa;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}
.cart-empty h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  color: var(--text);
}
.cart-empty .pdp-sub { margin-bottom: 1.15rem; }
.cart-empty .btn { margin-top: 0.25rem; }

/* --- COA library --- */
.coa-library-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}
.coa-search {
  flex: 1 1 220px;
  max-width: 360px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--text);
  outline: none;
}
.coa-search:focus {
  border-color: rgba(109, 40, 217, 0.4);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}
.coa-count {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.coa-count b { color: var(--brand); }
.coa-table-wrap {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 20, 80, 0.05);
}
.coa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.coa-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #efeaf8;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 700;
}
.coa-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  color: var(--muted);
}
.coa-table tr:last-child td { border-bottom: 0; }
.coa-table tbody tr:hover { background: rgba(109, 40, 217, 0.04); }
.coa-product-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.coa-thumb {
  width: 48px;
  height: 60px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
  background: #1a1230;
  flex-shrink: 0;
}
.coa-product-cell strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}
.coa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.coa-actions .btn { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
.coa-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}
.coa-grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.coa-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  padding: 0.75rem;
  transition: border-color 0.15s;
  align-items: center;
}
.coa-card:hover { border-color: rgba(109, 40, 217, 0.4); }
.coa-card img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  background: #1a1230;
}
.coa-card strong {
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.coa-product-link {
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 800px) {
  .coa-table-wrap { display: none; }
  .coa-grid { display: grid; }
}

/* --- Shop polish (PepLair-inspired structure, purple brand cards) --- */
.page-hero {
  padding: 1.75rem 0 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ebe6f6 0%, #e6e2ef 100%);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0.2rem 0 0;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--faint);
}
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand); }
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(40, 20, 80, 0.05);
}
.shop-toolbar input[type="search"] {
  flex: 1 1 180px;
  min-width: 160px;
  background: #f3f1f8;
  border: 1px solid var(--line-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}
.shop-toolbar input[type="search"]:focus {
  outline: none;
  border-color: rgba(109, 40, 217, 0.4);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}
.shop-toolbar select {
  background: #f3f1f8;
  border: 1px solid var(--line-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
}
.shop-toolbar label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
#result-count {
  margin-left: auto;
  color: var(--faint);
  font-size: 0.88rem;
  font-weight: 600;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: 0.15s ease;
}
.chip:hover {
  color: var(--text);
  border-color: rgba(109, 40, 217, 0.35);
  background: #faf8ff;
}
.chip.active {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #5b21b6);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.25);
}

/* Homepage polish — quieter marquee, tighter bands */
.trust-marquee {
  background: #f7f5fc;
  border-bottom: 1px solid var(--line-soft);
}
.trust-marquee-track span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #8a8399;
}
.section--base {
  background: #efeaf8;
}
.metrics--panel {
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 44px rgba(40, 20, 80, 0.1);
}
.metrics--panel .metric strong {
  color: var(--text);
}
.guarantee-card,
.quality-item,
.faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 6px 18px rgba(40, 20, 80, 0.04);
}
.guarantee-card:hover,
.quality-item:hover {
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow: 0 10px 28px rgba(40, 20, 80, 0.08);
}
.section--catalog {
  background: linear-gradient(180deg, #ddd6ee 0%, #d2c9e6 100%);
}
/* Soft CTA that meshes with page + footer */
.section--brand {
  background: linear-gradient(135deg, #b8a4f5 0%, #9f87ef 45%, #8b7cf0 100%);
  color: #1e1238;
}
.section--brand h2 { color: #1e1238 !important; }
.section--brand p { color: #3b2a66 !important; }
.legal-page { background: #efeaf8; }
.contact-card { background: #fff; }
.about-grid article,
.about-grid .guarantee-card {
  background: #fff;
}

/* Header cleaner on light page */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(40, 30, 70, 0.06);
}
.mobile-nav.open {
  display: block;
  background: #fff;
}

/* Price on product cards stays white (avoid body --text bleed) */
.product-body .price { color: #fff; }
.product-body .price em { color: #c4b5fd; }
