/* ===========================================================
   Dollaz Fashion Trendz Wigs — Static CSS (Figma-ready)
   =========================================================== */

:root {
  --ink: #0D0D0D;
  --ink-80: #1a1a1a;
  --ink-60: #3d3d3d;
  --ink-40: #6b6b6b;
  --cream: #F4EFE8;
  --cream-warm: #EBE3D7;
  --paper: #FBF8F3;
  --magenta: #FF2E63;
  --magenta-deep: #D41A4A;
  --gold: #D4A84B;
  --gold-deep: #A8823B;
  --line: rgba(13, 13, 13, 0.12);
  --line-cream: rgba(244, 239, 232, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.serif  { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; }
.display{ font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.035em; line-height: 0.92; }
.mono   { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.italic { font-style: italic; }
img { max-width: 100%; display: block; }
a   { color: inherit; }

/* =========== NAV =========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 22px; letter-spacing: -0.02em;
  text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { color: var(--magenta); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  position: relative; transition: opacity 0.2s;
}
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--magenta);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: flex; align-items: center; gap: 6px;
  color: var(--ink); font-size: 13px; font-weight: 500;
  font-family: inherit; position: relative;
}
.cart-count {
  background: var(--magenta); color: white;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px;
}

/* =========== ANNOUNCEMENT MARQUEE =========== */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding: 10px 0;
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 40s linear infinite;
  padding-left: 100%;
}
.marquee-track span { margin: 0 40px; }
.marquee-track .sep { color: var(--magenta); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-magenta { background: var(--magenta); color: white; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost   { background: transparent; color: var(--ink); padding: 12px 0; }

/* =========== PILLS =========== */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pill-magenta { background: var(--magenta); color: white; }
.pill-gold    { background: var(--gold);    color: var(--ink); }
.pill-ink     { background: var(--ink);     color: var(--cream); }
.pill-outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }

/* =========== PRODUCT CARD (reusable) =========== */
.product-card { position: relative; cursor: pointer; background: var(--paper); }
.product-card .img-wrap {
  position: relative; overflow: hidden;
  background: var(--cream-warm); aspect-ratio: 3/4;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card .badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-card .wish {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(251, 248, 243, 0.9);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.product-card .meta { padding: 16px 0 0; display: flex; flex-direction: column; gap: 4px; }
.product-card .name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.product-card .sub  { font-size: 12px; color: var(--ink-40); letter-spacing: 0.05em; text-transform: uppercase; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.product-card .price { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; }
.product-card .swatches { display: flex; gap: 5px; }
.product-card .swatch {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--line);
}

/* =========== UTILS =========== */
.container { max-width: 1480px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600; color: var(--magenta);
}
.page-bg-dark { background: var(--ink);  color: var(--cream); }
.page-bg-cream{ background: var(--cream); }
.page-bg-paper{ background: var(--paper);}

/* =========== HOME: HERO =========== */
.hero {
  position: relative; height: 92vh; min-height: 700px;
  overflow: hidden; background: #000;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, rgba(0,0,0,0.75) 100%);
}
.hero-counter {
  position: absolute; top: 32px; right: 48px; color: white;
  font-family: 'Fraunces', serif; font-size: 18px; letter-spacing: 0.1em; z-index: 3;
}
.hero-counter .num { font-size: 28px; }
.hero-counter .dim { opacity: 0.5; }
.hero-stamp { position: absolute; top: 32px; left: 48px; z-index: 3; color: white; }
.hero-stamp .maison {
  font-family: 'Fraunces', serif; font-size: 14px; font-style: italic;
  opacity: 0.85; margin-bottom: 4px;
}
.hero-stamp .logo {
  font-family: 'Fraunces', serif; font-size: 38px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 0.9;
}
.hero-stamp .logo .dot { color: var(--magenta); }
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 48px; z-index: 3; color: white;
}
.hero-title {
  font-family: 'Fraunces', serif; font-size: clamp(80px, 11vw, 180px);
  font-weight: 500; line-height: 0.88; letter-spacing: -0.04em;
  margin-bottom: 24px; text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title .em { font-style: italic; font-weight: 300; color: var(--magenta); }
.hero-ctabar {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px; flex-wrap: wrap;
}
.hero-cta-primary {
  background: var(--magenta); color: white; border: none;
  padding: 20px 36px; font-size: 13px; letter-spacing: 0.15em;
  font-weight: 700; text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-cta-outline {
  background: transparent; color: white; border: 1.5px solid white;
  padding: 20px 28px; font-size: 13px; letter-spacing: 0.15em;
  font-weight: 700; text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 18px; height: 3px; background: rgba(255,255,255,0.35);
  border: none; padding: 0;
}
.hero-dot.active { width: 44px; background: var(--magenta); }

/* =========== HOME: 6-TILE GRID =========== */
.tiles-section { background: var(--ink); padding: 8px; }
.tiles-grid-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.wig-tile {
  position: relative; overflow: hidden; cursor: pointer;
  background: #000; aspect-ratio: 3/4;
}
.wig-tile img {
  width: 100%; height: 100%; object-fit: cover;
}
.wig-tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 45%, transparent 70%);
}
.tile-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 6px 12px; font-size: 10px; letter-spacing: 0.2em; font-weight: 700;
}
.tile-badge.vip     { background: var(--gold);    color: var(--ink); }
.tile-badge.new     { background: var(--ink);     color: white; }
.tile-badge.default { background: var(--magenta); color: white; }
.tile-number {
  position: absolute; top: 20px; right: 20px; color: white;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; opacity: 0.85;
}
.tile-content {
  position: absolute; left: 28px; bottom: 24px; right: 28px;
  color: white; z-index: 2;
}
.tile-content .sub {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 6px;
}
.tile-bottom-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 12px;
}
.tile-name {
  font-family: 'Fraunces', serif; font-size: 38px;
  line-height: 0.9; font-weight: 500;
}
.tile-price {
  font-family: 'Fraunces', serif; font-size: 20px; white-space: nowrap;
}

/* =========== HOME: EDITORIAL SIDE-BY-SIDE =========== */
.editorial-row {
  background: var(--ink);
}
.editorial-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 85vh; min-height: 680px;
  gap: 8px; padding: 0 8px 8px;
}
.editorial-panel {
  position: relative; overflow: hidden;
}
.editorial-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-panel .edit-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
}
.editorial-caption {
  position: absolute; bottom: 40px; left: 40px; color: white;
}
.editorial-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; font-weight: 700; margin-bottom: 14px;
}
.editorial-eyebrow.magenta { color: var(--magenta); }
.editorial-eyebrow.gold    { color: var(--gold); }
.editorial-title {
  font-family: 'Fraunces', serif; font-size: 64px;
  line-height: 0.92; font-weight: 500; letter-spacing: -0.03em;
}

/* =========== HOME: PINK TICKER =========== */
.pink-ticker {
  background: var(--magenta); padding: 26px 0; overflow: hidden;
}
.pink-ticker-row {
  display: flex; gap: 48px; white-space: nowrap;
  animation: tkr 35s linear infinite;
}
.pink-ticker-row span {
  font-family: 'Fraunces', serif; font-size: 44px;
  color: white; font-weight: 500;
  display: flex; align-items: center; gap: 32px;
}
.pink-ticker-row .star { opacity: 0.6; }
@keyframes tkr { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* =========== HOME: ASYMMETRIC TILES =========== */
.asym-section { background: var(--ink); padding: 8px; }
.asym-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 8px; margin-bottom: 8px;
}
.asym-big { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 5/4; }
.asym-big img { width: 100%; height: 100%; object-fit: cover; }
.asym-big .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%); }
.asym-big .caption { position: absolute; bottom: 32px; left: 36px; right: 36px; color: white; }
.asym-big .caption .eyebrow-pink {
  font-size: 11px; letter-spacing: 0.3em; color: var(--magenta);
  font-weight: 700; margin-bottom: 10px;
}
.asym-big .caption .title {
  font-family: 'Fraunces', serif; font-size: 72px; line-height: 0.9; font-weight: 500;
}
.asym-big .caption .row {
  display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14px;
}
.asym-big .caption .sub { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.asym-big .caption .price { font-family: 'Fraunces', serif; font-size: 28px; }

.asym-small { position: relative; overflow: hidden; cursor: pointer; }
.asym-small img { width: 100%; height: 100%; object-fit: cover; }
.asym-small .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%); }
.asym-small .caption { position: absolute; bottom: 24px; left: 24px; right: 24px; color: white; }
.asym-small .caption .title { font-family: 'Fraunces', serif; font-size: 36px; line-height: 0.9; }
.asym-small .caption .price { font-family: 'Fraunces', serif; font-size: 18px; margin-top: 8px; }

.asym-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.asym-bottom .wig-tile { aspect-ratio: 3/4; }
.asym-bottom .tile-name { font-size: 30px; }
.asym-bottom .tile-small-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 10px; font-size: 10px; letter-spacing: 0.18em; font-weight: 700;
}
.asym-bottom .tile-small-badge.vip { background: var(--gold); color: var(--ink); }
.asym-bottom .tile-small-badge.default { background: var(--magenta); color: white; }
.asym-bottom .tile-row {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-family: 'Fraunces', serif; font-size: 16px;
}
.asym-bottom .tile-row .sub {
  opacity: 0.7; font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* =========== HOME: SHOP ALL CTA =========== */
.shop-cta {
  background: var(--ink); padding: 80px 48px;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
}
.shop-cta-title {
  font-family: 'Fraunces', serif; font-size: clamp(48px, 6vw, 88px);
  color: white; font-weight: 500; margin-bottom: 12px; line-height: 1;
}
.shop-cta-title .em { font-style: italic; color: var(--magenta); }
.shop-cta-btn {
  margin-top: 32px; background: white; color: var(--ink); border: none;
  padding: 22px 42px; font-size: 13px; letter-spacing: 0.2em;
  font-weight: 700; text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 12px;
}

/* =========== HOME: IG WALL =========== */
.ig-section { background: var(--ink); padding: 80px 0 40px; }
.ig-head { text-align: center; margin-bottom: 40px; color: white; padding: 0 48px; }
.ig-head .eyebrow-pink { font-size: 11px; letter-spacing: 0.3em; color: var(--magenta); font-weight: 700; margin-bottom: 14px; }
.ig-head .title {
  font-family: 'Fraunces', serif; font-size: clamp(44px, 5.5vw, 72px); font-weight: 500;
}
.ig-head .title .at { font-style: italic; }
.ig-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 4px; padding: 0 8px;
}
.ig-tile { aspect-ratio: 1/1; overflow: hidden; cursor: pointer; position: relative; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }

/* =========== FOOTER =========== */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid var(--line-cream);
}
.footer-brand .name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 42px; margin-bottom: 20px; letter-spacing: -0.035em; line-height: 0.92;
}
.footer-brand .name .dot { color: var(--magenta); }
.footer-brand p {
  color: rgba(244,239,232,0.6);
  max-width: 320px; font-size: 14px; line-height: 1.7;
}
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  color: var(--cream); padding: 10px;
  border: 1px solid var(--line-cream); border-radius: 50%;
  display: inline-flex; text-decoration: none;
}
.footer-col-head {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-col li a {
  color: rgba(244,239,232,0.7);
  text-decoration: none; font-size: 14px;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px; font-size: 12px;
  color: rgba(244,239,232,0.5); letter-spacing: 0.05em;
}

/* =========== SHOP PAGE =========== */
.shop-header {
  position: relative; background: var(--ink); color: var(--cream);
  padding: 80px 48px 72px; overflow: hidden;
}
.shop-header .magenta-wash {
  position: absolute; top: -40%; right: -10%;
  width: 70%; height: 180%;
  background: radial-gradient(ellipse, rgba(255,46,99,0.3), transparent 60%);
  pointer-events: none;
}
.shop-header .ghost-num {
  position: absolute; bottom: -60px; right: -20px;
  font-family: 'Fraunces', serif; font-size: 400px;
  font-weight: 300; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,46,99,0.25);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.shop-header .chapter {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--magenta);
  font-weight: 600; margin-bottom: 24px;
}
.shop-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.shop-header h1 {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(72px, 10vw, 180px); line-height: 0.9;
}
.shop-header h1 .it { font-style: italic; font-weight: 300; }
.shop-header h1 .gradient {
  background: linear-gradient(135deg, #FF2E63 0%, #D4A84B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shop-count .num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 88px; line-height: 1; letter-spacing: -0.035em;
}
.shop-count .lbl {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(244,239,232,0.55);
  margin-top: 6px;
}
.shop-pill-row { margin-top: 56px; display: flex; gap: 12px; flex-wrap: wrap; }
.shop-pill {
  padding: 12px 22px; background: transparent; color: var(--cream);
  border: 1px solid rgba(244,239,232,0.3);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; font-family: inherit;
}
.shop-pill.active { background: var(--magenta); color: white; border: none; }

/* SHOP main layout */
.shop-main { padding: 64px 48px 140px; }
.shop-main .wrap {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 72px;
}
.shop-aside { position: sticky; top: 96px; align-self: start; height: fit-content; }
.filter-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px; padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.filter-head .lbl {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
}
.filter-group { margin-bottom: 36px; }
.filter-group .title {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 14px; color: var(--ink);
}
.filter-chip {
  padding: 10px 0; text-align: left; border: none; background: transparent;
  font-size: 15px; font-weight: 400; color: var(--ink);
  cursor: pointer; font-family: 'Fraunces', serif;
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-chip.active { font-weight: 700; color: var(--magenta); }
.range { width: 100%; accent-color: var(--magenta); }
.range-row {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-size: 12px; color: var(--ink-40);
}
.range-row .v { color: var(--magenta); font-weight: 600; }
.color-row { display: flex; flex-wrap: wrap; gap: 10px; }
.color-circle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line); cursor: pointer;
}
.clear-link {
  background: transparent; border: none; padding: 0; margin-top: 20px;
  color: var(--ink); cursor: pointer; font-family: inherit;
}
.clear-link span { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.aside-card {
  margin-top: 48px; background: var(--ink); color: var(--cream);
  padding: 24px; position: relative; overflow: hidden;
}
.aside-card .eyebrow-pink {
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--magenta); font-weight: 700; margin-bottom: 10px;
}
.aside-card .line {
  font-family: 'Fraunces', serif; font-size: 22px;
  line-height: 1.15; margin-bottom: 14px;
}

.shop-sortbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.active-filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px 8px 14px;
  background: var(--ink); color: var(--cream);
  font-size: 12px; letter-spacing: 0.08em;
  font-weight: 600; text-transform: uppercase;
}
.active-filter-chip button {
  background: none; border: none; color: var(--cream);
  cursor: pointer; display: flex; padding: 2px;
}
.sort-select {
  padding: 8px 14px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
}

.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; row-gap: 56px;
}
.shop-card { cursor: pointer; position: relative; }
.shop-card .img-wrap {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; background: var(--cream-warm);
}
.shop-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.shop-card .idx {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; letter-spacing: 0.3em; font-weight: 600;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.shop-card .meta { padding-top: 16px; }
.shop-card .meta .sub {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-40); margin-bottom: 4px;
}
.shop-card .meta .row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
}
.shop-card .meta .name { font-family: 'Fraunces', serif; font-size: 22px; }
.shop-card .meta .price { font-family: 'Fraunces', serif; font-size: 17px; white-space: nowrap; }
.shop-card .meta .swatches { display: flex; gap: 6px; margin-top: 8px; }
.shop-card .meta .swatches div {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--line);
}

/* =========== PRODUCT PAGE =========== */
.breadcrumb {
  padding: 20px 48px; border-bottom: 1px solid var(--line);
}
.breadcrumb .inner {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-40); font-weight: 600;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb .current { color: var(--magenta); }

.product-split { padding: 40px 48px 100px; }
.product-split .wrap {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px;
}
.thumb-rail { display: flex; flex-direction: column; gap: 10px; }
.thumb-rail .thumb {
  aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; opacity: 0.55;
}
.thumb-rail .thumb.active { border: 2px solid var(--magenta); opacity: 1; }
.thumb-rail .thumb img { width: 100%; height: 100%; object-fit: cover; }

.main-image-wrap { position: relative; }
.main-image {
  aspect-ratio: 3/4; overflow: hidden; background: var(--cream-warm);
  position: relative;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.main-image .badge {
  position: absolute; top: 24px; left: 24px;
  font-size: 11px; padding: 8px 14px;
}
.main-image .corner {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(13,13,13,0.85); color: var(--cream);
  padding: 10px 14px; font-size: 10px; letter-spacing: 0.25em;
  font-weight: 700; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.detail-image {
  margin-top: 16px; aspect-ratio: 16/9;
  overflow: hidden; background: var(--cream-warm);
}
.detail-image img { width: 100%; height: 100%; object-fit: cover; }

.info-col { position: sticky; top: 96px; align-self: start; }
.info-col .eyebrow-pink {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--magenta);
  font-weight: 600; margin-bottom: 16px;
}
.info-col h1 {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(64px, 7vw, 110px); line-height: 0.9; margin-bottom: 20px;
}
.info-col h1 .em { font-style: italic; font-weight: 300; color: var(--magenta); }

.rating-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.stars { display: flex; color: var(--gold); }
.rating-score { font-family: 'Fraunces', serif; font-size: 18px; }
.review-count { font-size: 13px; color: var(--ink-40); }
.in-stock { font-size: 13px; color: var(--magenta); font-weight: 600; margin-left: auto; }

.price-block {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 2px solid var(--ink); flex-wrap: wrap;
}
.price-main {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.035em;
}
.price-compare { font-size: 20px; color: var(--ink-40); text-decoration: line-through; }

.product-desc {
  font-size: 17px; line-height: 1.7; color: var(--ink-60); margin-bottom: 32px;
}
.product-desc em { color: var(--ink); font-style: italic; }

.color-section { margin-bottom: 28px; }
.color-section .head {
  display: flex; justify-content: space-between;
  margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
}
.color-section .lbl {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
}
.color-section .selected .label {
  font-weight: 700; color: var(--magenta);
}
.color-section .selected .dim { color: var(--ink-40); font-size: 13px; }
.color-row-lg { display: flex; gap: 12px; }
.color-row-lg button {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer; padding: 0;
}
.color-row-lg button.active {
  border: 3px solid var(--magenta);
  box-shadow: 0 0 0 1px var(--magenta);
}

.qty-cta-row {
  display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.qty-box {
  display: inline-flex; border: 2px solid var(--ink);
}
.qty-box button {
  padding: 16px 18px; background: transparent;
  border: none; cursor: pointer;
}
.qty-box .val {
  padding: 16px 22px; min-width: 60px; text-align: center;
  font-weight: 700;
  border-left: 2px solid var(--ink); border-right: 2px solid var(--ink);
}
.add-bag-btn {
  flex: 1; justify-content: center; padding: 20px 28px;
  font-size: 13px;
}
.wishlist-btn {
  width: 100%; justify-content: center;
  margin-bottom: 36px; padding: 16px; font-size: 13px;
}

.trust-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .icon { color: var(--magenta); margin-top: 2px; }
.trust-item .t { font-weight: 700; font-size: 13px; }
.trust-item .s { font-size: 12px; color: var(--ink-40); margin-top: 2px; }

.accordion { margin-top: 28px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-head {
  width: 100%; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500;
  color: var(--ink);
}
.accordion-body {
  padding-bottom: 22px; color: var(--ink-60);
  font-size: 14px; line-height: 1.75;
}
.accordion-item.closed .accordion-body { display: none; }

.editorial-quote {
  background: var(--ink); color: var(--cream);
  padding: 90px 48px; position: relative; overflow: hidden;
}
.editorial-quote .ghost-text {
  position: absolute; left: -5%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 380px; font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,75,0.18);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.editorial-quote .inner {
  position: relative; text-align: center;
  max-width: 900px; margin: 0 auto;
}
.editorial-quote .eyebrow-pink {
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--magenta); font-weight: 600; margin-bottom: 20px;
}
.editorial-quote blockquote {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.2;
}
.editorial-quote blockquote .gold { font-style: italic; color: var(--gold); }
.editorial-quote .cite {
  margin-top: 24px; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,239,232,0.55);
}

.related-section { padding: 100px 48px 140px; background: var(--cream); }
.related-section .head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.related-section .eyebrow-pink {
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--magenta); font-weight: 600; margin-bottom: 16px;
}
.related-section h2 {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(44px, 5.5vw, 76px);
}
.related-section h2 .it { font-style: italic; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* =========== CART PAGE =========== */
.cart-section { background: var(--paper); padding: 60px 48px 120px; }
.cart-section .eyebrow { margin-bottom: 14px; }
.cart-section h1 {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(56px, 7vw, 96px); margin-bottom: 56px;
}
.cart-section h1 .it { font-style: italic; }
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; }
.cart-items { border-top: 1px solid var(--ink); }
.cart-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--line); align-items: center;
}
.cart-row .img-box {
  aspect-ratio: 3/4; overflow: hidden; background: var(--cream-warm);
}
.cart-row .img-box img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .sub {
  font-size: 12px; color: var(--ink-40);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px;
}
.cart-row .name { font-family: 'Fraunces', serif; font-size: 26px; margin-bottom: 10px; }
.cart-row .attrs {
  display: flex; align-items: center; gap: 16px; margin-bottom: 14px;
}
.cart-row .attrs .lbl { font-size: 12px; color: var(--ink-40); }
.cart-row .attrs .cdot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--line);
}
.cart-row .qty-mini {
  display: inline-flex; border: 1px solid var(--line);
}
.cart-row .qty-mini button {
  padding: 6px 10px; background: transparent; border: none; cursor: pointer;
}
.cart-row .qty-mini .val {
  padding: 6px 14px; min-width: 40px; text-align: center;
  font-size: 13px; font-weight: 600;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}
.cart-row .price-col { text-align: right; }
.cart-row .price-col .p {
  font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 10px;
}
.cart-row .remove-btn {
  background: none; border: none; color: var(--ink-40); cursor: pointer;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: inherit;
  text-decoration: underline; text-underline-offset: 3px;
}

.continue-btn { margin-top: 24px; padding: 0; }
.continue-btn span { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.cart-summary {
  position: sticky; top: 80px; align-self: start;
  background: var(--cream); padding: 36px;
}
.cart-summary .head {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 24px; color: var(--ink-60);
}
.cart-summary .rows {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.summary-row {
  display: flex; justify-content: space-between; font-size: 14px;
}
.summary-row.small { color: var(--ink-40); font-size: 13px; }
.summary-row .accent { color: var(--magenta); font-weight: 600; }

.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.cart-total .lbl {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cart-total .val {
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.035em;
  font-size: 36px;
}

.promo-row { display: flex; gap: 6px; margin-bottom: 24px; }
.promo-row input {
  flex: 1; padding: 12px 14px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 13px; outline: none; font-family: inherit;
}
.promo-row button {
  padding: 12px 16px; background: var(--ink); color: var(--cream);
  border: none; cursor: pointer; font-family: inherit;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
}
.checkout-btn { width: 100%; justify-content: center; padding: 18px; }
.trust-row-mini {
  display: flex; justify-content: space-around;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 11px; color: var(--ink-40); letter-spacing: 0.08em;
}

::selection { background: var(--magenta); color: white; }
input, button, select, textarea { font-family: inherit; }
