/* DROP Storefront — UI Kit styles */
@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 11px 16px;
  font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
}
.announce strong { font-weight: 700; letter-spacing: .18em; }
.announce .dot { opacity: .5; }

/* ---------- Header ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border-1);
  transition: box-shadow 280ms var(--ease-elegant);
}
.site-nav.scrolled { box-shadow: 0 2px 14px rgba(17,17,17,.04); }
.nav-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding: 18px 32px;
  transition: padding 280ms var(--ease-elegant);
}
.site-nav.scrolled .nav-row { padding: 12px 32px; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right { justify-content: flex-end; gap: 4px; }
.nav-tab {
  font-size: 13px; letter-spacing: .02em;
  color: var(--ink); cursor: pointer; font-weight: 500;
  padding: 10px 14px; position: relative; border-radius: 0;
  transition: color 180ms;
}
.nav-tab:hover, .nav-tab.active { color: var(--fg-2); }
.nav-tab.sale-link { color: var(--sale); font-weight: 600; }
.nav-tab.sale-link:hover { color: var(--sale); opacity: .82; }
.nav-div { width: 1px; height: 18px; background: var(--border-2); margin: 0 6px; }

.brand { display: flex; align-items: center; color: var(--ink); }

.icon-btn {
  background: transparent; border: 0; cursor: pointer; padding: 9px;
  color: var(--ink); position: relative; border-radius: 999px;
  transition: background 200ms;
}
.icon-btn:hover { background: var(--bone); }
.icon-btn svg { width: 18px; height: 18px; display: block; }
.badge-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--ink); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 0;
  width: 16px; height: 16px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}

.ai-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; margin-right: 6px;
  background: var(--ink); color: #fff;
  border: 0; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 500; letter-spacing: .02em;
  transition: opacity 200ms, transform 200ms;
}
.ai-trigger:hover { opacity: .88; }
.ai-trigger:active { transform: scale(.97); }
.ai-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, #FFD27A 0%, #FF8FB1 50%, #B89BFF 100%);
  box-shadow: 0 0 0 0 rgba(255, 210, 122, .6);
  animation: aiPulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 210, 122, .6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 210, 122, 0); }
}

/* ---------- Mega menu ---------- */
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border-1);
  box-shadow: 0 24px 40px rgba(17,17,17,.06);
  animation: megaIn 220ms var(--ease-elegant);
}
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega-inner {
  display: grid; grid-template-columns: 180px 1fr 380px;
  gap: 48px; max-width: 1400px; margin: 0 auto;
  padding: 36px 32px 44px;
}
.mega-quick { display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border-1); padding-right: 36px; }
.mega-quick-head { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--fg-3); margin-bottom: 12px; }
.mega-quick-a { font-size: 13px; color: var(--ink); padding: 6px 0; cursor: pointer; font-weight: 500; transition: color 160ms; }
.mega-quick-a:hover { color: var(--sale); }
.mega-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-head { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.mega-item { font-size: 13px; color: var(--fg-2); padding: 5px 0; cursor: pointer; transition: color 160ms; }
.mega-item:hover { color: var(--ink); }
.mega-shop-all { font-size: 11px; color: var(--ink); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border-1); cursor: pointer; font-weight: 600; letter-spacing: .04em; }
.mega-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.mega-feat { display: flex; flex-direction: column; gap: 8px; cursor: pointer; }
.mega-feat-img { aspect-ratio: 4/5; background-size: cover; background-position: center; }
.mega-feat-meta { padding: 0 2px; }
.mega-feat-sub { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.mega-feat-title { font-family: var(--font-display); font-weight: 400; font-size: 18px; line-height: 1.2; margin-top: 2px; }

/* ---------- Search overlay ---------- */
.search-overlay { position: fixed; inset: 0; background: rgba(17,17,17,.4); z-index: 100; padding-top: 80px; animation: fadeIn 200ms; }
.search-panel { background: #fff; max-width: 720px; margin: 0 auto; animation: vipIn 280ms var(--ease-elegant); }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 20px 24px; border-bottom: 1px solid var(--border-1); }
.search-bar svg { color: var(--fg-3); flex-shrink: 0; }
.search-bar input { flex: 1; border: 0; outline: 0; font-size: 18px; font-family: inherit; background: transparent; color: var(--ink); }
.search-close { background: var(--bone); border: 0; padding: 6px 10px; font-size: 11px; font-family: inherit; cursor: pointer; letter-spacing: .04em; color: var(--fg-2); }
.search-body { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 24px; }
.search-col { display: flex; flex-direction: column; gap: 4px; }
.search-head { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--fg-3); margin-bottom: 8px; }
.search-suggest { font-size: 14px; padding: 8px 10px; cursor: pointer; transition: background 160ms; color: var(--ink); }
.search-suggest:hover { background: var(--bone); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 92vh; min-height: 620px; overflow: hidden; background: var(--ink); }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.94);
}
.hero-text {
  position: absolute; left: 6%; bottom: 18%; color: var(--ivory);
  max-width: 600px; z-index: 2;
}
.eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--fg-2);
}
.eyebrow.center { text-align: center; display: block; margin-bottom: 12px; }
.eyebrow.light { color: rgba(255,255,255,.85); }
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(48px, 6vw, 84px); line-height: 0.98;
  letter-spacing: -0.02em; margin: 14px 0 24px;
  color: var(--ivory);
}
.hero-title em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary.inverse { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-primary.inverse:hover { background: transparent; color: var(--ivory); }
.btn-secondary.inverse { color: var(--ivory); border-color: rgba(255,255,255,.6); }
.btn-secondary.inverse:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.hero-marq {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: var(--ivory); color: var(--ink);
  padding: 14px 0;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marq-track {
  display: inline-flex; gap: 32px; padding-left: 32px;
  animation: marq 28s linear infinite;
}
.hero-marq-track span:nth-child(even) { opacity: .35; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Buttons ---------- */
.btn-primary {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--ivory); cursor: pointer;
  transition: transform 200ms var(--ease-elegant), background 280ms var(--ease-elegant), color 280ms var(--ease-elegant);
  border-radius: 0; position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--ivory); color: var(--ink); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); cursor: pointer;
  transition: all 280ms; border-radius: 0;
}
.btn-secondary:hover { background: var(--ink); color: var(--ivory); }
.btn-block { width: 100%; }
.btn-shoppay {
  width: 100%; margin-top: 8px; padding: 14px;
  background: #5A31F4; color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-family: inherit; letter-spacing: 0;
  transition: opacity 200ms; border-radius: 0;
}
.btn-shoppay:hover { opacity: .9; }
.shoppay-logo { font-weight: 500; letter-spacing: -.02em; }
.shoppay-logo strong { font-weight: 700; }
.btn-link {
  background: transparent; border: 0; font-size: 13px; font-weight: 500;
  color: var(--fg-1); cursor: pointer; padding: 8px 0;
  border-bottom: 1px solid var(--ink);
}
.btn-mini {
  background: transparent; border: 1px solid var(--ink); padding: 6px 12px;
  font-size: 10px; letter-spacing: .14em; font-weight: 600;
  cursor: pointer; border-radius: 0;
}

/* ---------- Categories ---------- */
.cats { padding: 96px 32px 48px; }
.cats-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat-card { display: block; cursor: pointer; }
.cat-img {
  aspect-ratio: 3/4; background-size: cover; background-position: center;
  transition: transform 600ms var(--ease-elegant);
}
.cat-card:hover .cat-img { transform: scale(1.02); }
.cat-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 2px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500;
}
.cat-count { color: var(--fg-3); font-variant-numeric: tabular-nums; font-weight: 400; }
.cat-arrow { color: var(--fg-3); }

/* ---------- Trust ---------- */
.trust {
  background: var(--bone);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 32px;
}
.trust .t { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; border-right: 1px solid var(--border-1); padding: 4px 8px; }
.trust .t:last-child { border-right: 0; }
.trust .th { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.trust .ts { font-size: 11px; color: var(--fg-3); letter-spacing: .04em; }

/* ---------- Product grid ---------- */
.pgrid-wrap { padding: 80px 32px; }
.pgrid-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px; margin-bottom: 40px; }
.pgrid-head h2 { grid-column: 1; margin: 10px 0 0; font-size: clamp(36px, 4vw, 56px); font-family: var(--font-display); font-weight: 300; letter-spacing: -.015em; line-height: 1; }
.pgrid-head h2 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.pgrid-head .btn-link { grid-column: 2; grid-row: 2; align-self: end; }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.pcard { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.pcard-img {
  position: relative; aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  background-color: var(--bone); overflow: hidden;
}
.pcard-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--ivory);
  font-size: 10px; letter-spacing: .14em; font-weight: 600;
  padding: 5px 9px; text-transform: uppercase;
}
.pcard-badge.sale { background: var(--sale); }
.pcard-badge.best { background: var(--gold); color: var(--ink); }
.pcard-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 12px; background: var(--ivory); color: var(--ink);
  border: 0; font-size: 11px; font-weight: 600; letter-spacing: .14em;
  cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: all 280ms var(--ease-elegant);
}
.pcard:hover .pcard-quick { opacity: 1; transform: translateY(0); }
.pcard-name { font-size: 14px; font-weight: 500; }
.pcard-sub { font-size: 11px; color: var(--fg-3); letter-spacing: .04em; text-transform: uppercase; }
.pcard-price { display: flex; gap: 8px; font-size: 14px; font-variant-numeric: tabular-nums; align-items: baseline; }
.pcard-price .strike { color: var(--fg-3); text-decoration: line-through; }
.pcard-price .now { color: var(--sale); font-weight: 600; }
.pcard-low { font-size: 11px; color: var(--warning); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }

/* ---------- PDP overlay ---------- */
.pdp-overlay {
  position: fixed; inset: 0; background: rgba(26, 23, 20, 0.6);
  z-index: 100; display: flex; align-items: stretch;
  animation: fadeIn 280ms var(--ease-elegant);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.pdp {
  background: var(--ivory);
  width: 100%; max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-height: 92vh; overflow: hidden; position: relative;
}
.pdp-close {
  position: absolute; top: 14px; right: 18px; z-index: 5;
  background: transparent; border: 0; font-size: 28px; cursor: pointer;
  width: 36px; height: 36px;
}
.pdp-gallery { background: var(--bone); display: flex; flex-direction: column; }
.pdp-img { flex: 1; background-size: cover; background-position: center; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 4px; background: var(--bone); }
.pdp-thumb { aspect-ratio: 1/1; background-size: cover; background-position: center; cursor: pointer; opacity: .6; }
.pdp-thumb.active, .pdp-thumb:hover { opacity: 1; }
.pdp-info { padding: 48px 44px 40px; overflow-y: auto; }
.pdp-info .eyebrow { color: var(--fg-3); }
.pdp-title { font-family: var(--font-display); font-weight: 300; font-size: 40px; line-height: 1.0; margin: 6px 0 18px; letter-spacing: -.015em; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-2); }
.pdp-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.rating-num { font-weight: 600; color: var(--fg-1); }
.rating-link { color: var(--fg-3); border-bottom: 1px solid var(--border-2); cursor: pointer; }
.pdp-price { display: flex; gap: 12px; align-items: baseline; margin: 18px 0 18px; font-size: 22px; font-variant-numeric: tabular-nums; font-weight: 500; }
.pdp-price .strike { color: var(--fg-3); text-decoration: line-through; font-size: 16px; font-weight: 400; }
.pdp-price .now { color: var(--sale); font-weight: 600; }
.pdp-price .save { font-size: 10px; background: var(--sale); color: var(--ivory); padding: 4px 8px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; align-self: center; }
.urgency {
  display: flex; align-items: center; gap: 8px;
  background: var(--bone); padding: 10px 14px; margin-bottom: 24px;
  font-size: 12px; letter-spacing: .04em; color: var(--warning); font-weight: 500;
}
.urgency-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--warning); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.pdp-section { margin: 22px 0; }
.pdp-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-2); font-weight: 500; margin-bottom: 10px; }
.muted-link { color: var(--fg-3); border-bottom: 1px solid var(--border-2); cursor: pointer; text-transform: none; letter-spacing: 0; }
.size-row { display: flex; gap: 8px; }
.size-chip {
  width: 44px; height: 44px; border: 1px solid var(--border-2);
  background: var(--pearl); cursor: pointer; font-weight: 500;
  border-radius: 0;
}
.size-chip.active, .size-chip:hover { border-color: var(--ink); }
.size-chip.active { background: var(--ink); color: var(--ivory); }
.qty { display: inline-flex; border: 1px solid var(--border-2); }
.qty button { background: transparent; border: 0; width: 40px; height: 42px; font-size: 18px; cursor: pointer; }
.qty span { padding: 0 14px; line-height: 42px; font-variant-numeric: tabular-nums; }
.qty.small button { width: 28px; height: 28px; }
.qty.small span { padding: 0 8px; line-height: 28px; }
.btn-primary.btn-block { margin-top: 16px; }
.btn-secondary.btn-block { margin-top: 8px; }
.pdp-trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 18px 0; border-top: 1px solid var(--border-1);
  margin-top: 24px; font-size: 11px; letter-spacing: .04em;
}
.pdp-trust .t { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.pdp-trust strong { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.pdp-trust span { color: var(--fg-3); }
.pdp-acc { border-top: 1px solid var(--border-1); padding: 14px 0; }
.pdp-acc summary { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.pdp-acc p { color: var(--fg-2); margin-top: 10px; font-size: 13px; line-height: 1.6; }

/* ---------- Cart drawer ---------- */
.cart-scrim { position: fixed; inset: 0; background: rgba(26, 23, 20, 0.5); z-index: 90; animation: fadeIn 280ms; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--ivory); z-index: 95;
  transform: translateX(100%); transition: transform 380ms var(--ease-elegant);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-product);
}
.cart.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--border-1);
}
.cart-title { font-size: 13px; letter-spacing: .18em; font-weight: 600; }
.cart-ship { padding: 16px 24px; background: #FAF8F4; border-bottom: 1px solid var(--border-1); }
.cart-ship-text { font-size: 12px; margin-bottom: 8px; color: var(--fg-1); }
.cart-ship-text strong { font-weight: 600; }
.cart-ship-text.done { color: var(--success); font-weight: 500; }
.cart-bar { height: 3px; background: var(--sand); position: relative; overflow: hidden; }
.cart-bar-fill { height: 100%; background: var(--ink); transition: width 480ms var(--ease-elegant); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { color: var(--fg-3); padding: 60px 0; text-align: center; }
.cart-item { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-1); }
.cart-img { aspect-ratio: 3/4; background-size: cover; background-position: center; background-color: var(--bone); }
.cart-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-name { font-size: 13px; font-weight: 500; color: inherit; text-decoration: none; }
a.cart-name:hover { text-decoration: underline; }
.cart-variant { font-size: 12px; color: var(--fg-2); }
.cart-meta { font-size: 11px; color: var(--fg-3); letter-spacing: .04em; text-transform: uppercase; }
.cart-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.cart-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.cart-remove { background: transparent; border: 0; font-size: 11px; color: var(--fg-3); padding: 0; text-align: left; cursor: pointer; text-decoration: underline; }
.cart-upsell { padding: 14px 24px; background: var(--bone); border-top: 1px solid var(--border-1); }
.cart-upsell-head { font-size: 11px; letter-spacing: .18em; font-weight: 600; margin-bottom: 10px; }
.cart-upsell-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.cart-upsell-img { aspect-ratio: 1/1; background-size: cover; background-position: center; background-color: var(--sand); }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border-1); display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; }
.cart-vat { font-size: 11px; color: var(--fg-3); }
.cart-foot .btn-link { align-self: center; }

/* ---------- Reviews ---------- */
.reviews { padding: 80px 32px; background: var(--bone); }
.reviews .center { text-align: center; }
.reviews h2 { margin: 8px 0 36px; color: var(--gold); font-size: 28px; letter-spacing: 4px; font-weight: 400; }
.rev-num { color: var(--fg-1); font-family: var(--font-body); font-size: 14px; letter-spacing: .04em; font-weight: 500; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.rev-card { background: var(--ivory); padding: 28px; }
.rev-stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.rev-title { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.rev-body { font-size: 13px; color: var(--fg-2); line-height: 1.6; margin: 0 0 20px; }
.rev-foot { display: flex; gap: 12px; align-items: center; padding-top: 16px; border-top: 1px solid var(--border-1); }
.rev-thumb { width: 40px; height: 40px; background-size: cover; background-position: center; border-radius: 999px; }
.rev-name { font-size: 13px; font-weight: 500; }
.rev-verified { font-size: 10px; color: var(--success); letter-spacing: .06em; }

/* ---------- Brand Lines ---------- */
.lines { padding: 100px 32px; background: var(--ivory); }
.lines-head { max-width: 1400px; margin: 0 auto 48px; text-align: center; }
.lines-head .eyebrow { display: block; margin-bottom: 14px; }
.lines-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.line-card { display: flex; flex-direction: column; cursor: pointer; background: var(--cream); }
.line-img { aspect-ratio: 4/5; background-size: cover; background-position: center; transition: transform 600ms var(--ease-elegant); }
.line-card:hover .line-img { transform: scale(1.03); }
.line-meta { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.line-top { display: flex; justify-content: space-between; align-items: baseline; }
.line-title { font-family: var(--font-display); font-weight: 400; font-size: 36px; margin: 0; letter-spacing: -.01em; line-height: 1; }
.line-count { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-2); font-weight: 500; }
.line-note { margin: 0; font-size: 14px; line-height: 1.55; color: var(--fg-2); max-width: 36ch; }
.line-cta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding-bottom: 4px; align-self: flex-start; margin-top: 6px; transition: opacity 200ms; }
.line-card:hover .line-cta { opacity: .65; }

/* ---------- Category Rail ---------- */
.catrail { padding: 80px 0 60px; background: #fff; }
.catrail-head { max-width: 1400px; margin: 0 auto 28px; padding: 0 32px; display: flex; justify-content: space-between; align-items: baseline; }
.catrail-all { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; cursor: pointer; padding-bottom: 3px; border-bottom: 1px solid var(--ink); }
.catrail-scroll { display: flex; gap: 14px; padding: 4px 32px 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.catrail-scroll::-webkit-scrollbar { height: 4px; }
.catrail-scroll::-webkit-scrollbar-thumb { background: var(--border-2); }
.cat-pill { flex: 0 0 220px; cursor: pointer; scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; }
.cat-pill-img { aspect-ratio: 1/1; background-size: cover; background-position: center; transition: transform 500ms var(--ease-elegant); }
.cat-pill:hover .cat-pill-img { transform: scale(1.04); }
.cat-pill-meta { display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; }
.cat-pill-label { font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.cat-pill-n { font-size: 11px; color: var(--fg-2); letter-spacing: .04em; }
.foot { background: var(--ink); color: var(--ivory); padding: 80px 32px 0; }
.foot-news { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.foot-news .eyebrow.light { color: rgba(255,255,255,.6); margin-bottom: 12px; display: block; }
.foot-h { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; margin: 0 0 12px; color: var(--ivory); letter-spacing: -.02em; }
.foot-h em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.foot-sub { color: rgba(255,255,255,.6); margin: 0 0 24px; font-size: 14px; }
.foot-form { display: grid; grid-template-columns: 1fr auto; gap: 0; }
.foot-form input { font-family: inherit; font-size: 14px; padding: 14px 18px; background: transparent; color: var(--ivory); border: 1px solid rgba(255,255,255,.25); border-right: 0; outline: none; transition: border-color 200ms; }
.foot-form input:focus { border-color: var(--ivory); }
.foot-form input::placeholder { color: rgba(255,255,255,.4); }
.foot-btn { padding: 14px 28px; background: var(--ivory); color: var(--ink); border: 1px solid var(--ivory); cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: .14em; transition: all 280ms var(--ease-elegant); }
.foot-btn:hover { background: transparent; color: var(--ivory); }
.foot-sms { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 14px; letter-spacing: .04em; }
.foot-sms strong { color: var(--ivory); font-weight: 600; letter-spacing: .12em; }

.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0; border-top: 1px solid rgba(255,255,255,.12); }
.foot-col { display: flex; flex-direction: column; gap: 4px; }
.foot-brand-col { gap: 18px; }
.foot-tagline { font-family: var(--font-display); font-weight: 300; font-size: 18px; line-height: 1.3; color: rgba(255,255,255,.85); margin: 0; }
.foot-social { display: flex; gap: 14px; margin-top: 4px; }
.foot-social a { color: rgba(255,255,255,.7); cursor: pointer; transition: color 200ms; padding: 6px; border: 1px solid rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; }
.foot-social a:hover { color: var(--ivory); border-color: var(--ivory); }
.foot-th { font-size: 11px; letter-spacing: .18em; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; }
.foot-col a { font-size: 13px; color: rgba(255,255,255,.6); padding: 5px 0; cursor: pointer; transition: color 200ms; }
.foot-col a:hover { color: var(--ivory); }

.foot-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-trust .ft { text-align: center; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.foot-trust strong { font-weight: 600; }

.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 24px 0 32px; font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .04em; }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { color: rgba(255,255,255,.5); cursor: pointer; }
.foot-legal a:hover { color: var(--ivory); }
.foot-pay { display: flex; gap: 6px; flex-wrap: wrap; }
.foot-pay span { font-size: 9px; padding: 4px 7px; border: 1px solid rgba(255,255,255,.2); letter-spacing: .08em; font-weight: 600; color: rgba(255,255,255,.7); }

/* ---------- VIP / SMS popup ---------- */
.vip-scrim {
  position: fixed; inset: 0; background: rgba(17,17,17,.55);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  animation: fadeIn 320ms var(--ease-elegant); padding: 20px;
}
.vip {
  background: var(--ivory); width: 100%; max-width: 720px;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
  box-shadow: var(--shadow-product);
  animation: vipIn 480ms var(--ease-elegant);
}
@keyframes vipIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.vip-img { background-size: cover; background-position: center; min-height: 480px; }
.vip-body { padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; }
.vip-close { position: absolute; top: 12px; right: 14px; background: transparent; border: 0; font-size: 26px; cursor: pointer; color: var(--ivory); width: 32px; height: 32px; z-index: 2; }
.vip-h { font-family: var(--font-display); font-weight: 300; font-size: 36px; line-height: 1.0; letter-spacing: -.015em; margin: 4px 0 6px; }
.vip-h em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.vip-sub { font-size: 13px; color: var(--fg-2); line-height: 1.55; margin: 0 0 8px; }
.vip-form { display: flex; flex-direction: column; gap: 10px; }
.vip-input { display: flex; align-items: center; border: 1px solid var(--ink); }
.vip-flag { padding: 0 12px; font-size: 13px; border-right: 1px solid var(--border-1); height: 44px; display: flex; align-items: center; }
.vip-input input { flex: 1; border: 0; padding: 12px 14px; font-size: 14px; font-family: inherit; outline: none; background: transparent; }
.vip-skip { background: transparent; border: 0; color: var(--fg-3); font-size: 11px; text-decoration: underline; cursor: pointer; padding: 6px 0; align-self: center; }
.vip-fine { font-size: 9.5px; color: var(--fg-3); line-height: 1.5; margin: 0; letter-spacing: 0.02em; }
.vip-success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 0; }
.vip-check { width: 56px; height: 56px; border-radius: 999px; background: var(--success); color: var(--ivory); display: flex; align-items: center; justify-content: center; font-size: 26px; }

/* ---------- Lookbook ---------- */
.look { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; padding: 96px 32px; align-items: center; }
.look-text { padding: 0 24px; }
.look-h { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 6vw, 88px); line-height: .98; letter-spacing: -.02em; margin: 12px 0 18px; }
.look-h em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.look-sub { color: var(--fg-2); font-size: 15px; max-width: 380px; margin: 0 0 28px; line-height: 1.6; }
.look-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 620px; }
.look-img { background-size: cover; background-position: center; }
.look-img.big { grid-row: 1 / span 2; }

/* ---------- UGC strip ---------- */
.ugc { padding: 80px 32px 96px; }
.ugc-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.ugc-h { font-family: var(--font-display); font-weight: 300; font-size: 36px; line-height: 1.05; letter-spacing: -.01em; margin: 8px 0 0; }
.ugc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ugc-tile { aspect-ratio: 1/1; background-size: cover; background-position: center; position: relative; cursor: pointer; overflow: hidden; }
.ugc-tile::after { content: ""; position: absolute; inset: 0; background: rgba(17,17,17,0); transition: background 280ms; }
.ugc-tile:hover::after { background: rgba(17,17,17,.3); }
.ugc-shop { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: var(--ivory); font-size: 11px; letter-spacing: .18em; font-weight: 600; opacity: 0; z-index: 2; transition: opacity 280ms; }
.ugc-tile:hover .ugc-shop { opacity: 1; }
@media (max-width: 720px) {
  .pdp { grid-template-columns: 1fr; max-height: 100vh; }
  .nav-left { display: none; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .vip { grid-template-columns: 1fr; max-width: 420px; }
  .vip-img { display: none; }
  .look { grid-template-columns: 1fr; }
  .look-grid { height: 420px; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ---------- AI Stylist ---------- */
.ai-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; background: var(--ink); color: #fff;
  border: 0; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500; letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(17,17,17,.18);
  transition: transform 200ms var(--ease-elegant);
}
.ai-fab:hover { transform: translateY(-2px); }

.ai-scrim { position: fixed; inset: 0; background: rgba(17,17,17,.45); z-index: 150; display: flex; justify-content: flex-end; animation: fadeIn 240ms; }
.ai { width: 480px; max-width: 100vw; height: 100vh; background: #fff; display: flex; flex-direction: column; animation: aiSlide 360ms var(--ease-elegant); }
@keyframes aiSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.ai-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--border-1); }
.ai-brand { display: flex; align-items: center; gap: 10px; }
.ai-title { font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.ai-tag { font-size: 9px; padding: 3px 7px; background: var(--bone); border-radius: 4px; letter-spacing: .12em; font-weight: 600; color: var(--fg-2); }
.ai-close { background: transparent; border: 0; font-size: 26px; cursor: pointer; color: var(--fg-2); width: 32px; height: 32px; }
.ai-progress { height: 2px; background: var(--bone); }
.ai-progress-fill { height: 100%; background: var(--ink); transition: width 320ms var(--ease-elegant); }

.ai-body { padding: 32px 28px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.ai-step-num { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--fg-3); }
.ai-q { font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1.1; letter-spacing: -.01em; margin: 0; }
.ai-qs { font-size: 13px; color: var(--fg-2); margin: 0 0 8px; }
.ai-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ai-opt { position: relative; text-align: left; padding: 14px 16px; background: #fff; border: 1px solid var(--border-2); cursor: pointer; transition: all 200ms; font-family: inherit; display: flex; flex-direction: column; gap: 2px; }
.ai-opt:hover { border-color: var(--ink); }
.ai-opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.ai-opt-l { font-size: 14px; font-weight: 600; }
.ai-opt-s { font-size: 11px; opacity: .7; }
.ai-check { position: absolute; top: 10px; right: 12px; font-size: 12px; }
.ai-next { margin-top: 8px; }
.ai-next:disabled { opacity: .35; cursor: not-allowed; }
.ai-skip { background: transparent; border: 0; color: var(--fg-3); font-size: 12px; text-decoration: underline; cursor: pointer; padding: 4px 0; align-self: center; margin-top: 8px; }

.ai-thinking { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 60px 24px; }
.ai-pulse { width: 56px; height: 56px; border-radius: 999px; background: linear-gradient(135deg, #FFD27A 0%, #FF8FB1 50%, #B89BFF 100%); animation: aiPulse2 1.4s ease-in-out infinite; }
@keyframes aiPulse2 { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.18); opacity: .7; } }
.ai-thinking-text { font-family: var(--font-display); font-size: 22px; font-weight: 400; }
.ai-thinking-sub { font-size: 12px; color: var(--fg-3); }

.ai-results { padding: 24px 24px 32px; flex: 1; overflow-y: auto; }
.ai-results-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; }
.ai-results-h { font-family: var(--font-display); font-size: 26px; font-weight: 400; line-height: 1.1; margin: 6px 0 0; letter-spacing: -.01em; }
.ai-restart { background: transparent; border: 0; color: var(--fg-2); font-size: 11px; text-decoration: underline; cursor: pointer; }
.ai-picks { display: flex; flex-direction: column; gap: 14px; }
.ai-pick { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 14px; background: var(--bone); }
.ai-pick-img { aspect-ratio: 1/1; background-size: cover; background-position: center; position: relative; }
.ai-pick-badge { position: absolute; top: 6px; left: 6px; font-size: 9px; padding: 3px 6px; background: var(--ink); color: #fff; letter-spacing: .12em; font-weight: 600; }
.ai-pick-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ai-pick-name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.ai-pick-price { font-size: 14px; font-weight: 500; }
.ai-pick-why { font-size: 11px; color: var(--fg-2); line-height: 1.45; margin: 4px 0; }
.ai-pick-actions { display: flex; gap: 12px; align-items: center; margin-top: 4px; }
.ai-pick-add { padding: 8px 14px; font-size: 10px; }
.ai-chat-cta { margin-top: 18px; width: 100%; padding: 14px; background: #fff; border: 1px solid var(--ink); cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 10px; }
.ai-chat-cta:hover { background: var(--bone); }

.ai-chat { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.ai-chat-feed { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.ai-msg { display: flex; flex-direction: column; gap: 8px; max-width: 85%; }
.ai-msg-ai { align-self: flex-start; }
.ai-msg-user { align-self: flex-end; align-items: flex-end; }
.ai-bubble { padding: 12px 16px; font-size: 13px; line-height: 1.5; border-radius: 16px; }
.ai-msg-ai .ai-bubble { background: var(--bone); color: var(--ink); border-bottom-left-radius: 4px; }
.ai-msg-user .ai-bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
.ai-msg-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ai-msg-pick { background: #fff; border: 1px solid var(--border-1); padding: 8px; cursor: pointer; display: flex; flex-direction: column; gap: 4px; }
.ai-msg-pick-img { aspect-ratio: 1/1; background-size: cover; background-position: center; }
.ai-msg-pick-name { font-size: 11px; font-weight: 500; line-height: 1.3; }
.ai-msg-pick-price { font-size: 11px; color: var(--fg-2); }
.ai-chat-input { display: flex; gap: 8px; padding: 14px 24px; border-top: 1px solid var(--border-1); }
.ai-chat-input input { flex: 1; border: 1px solid var(--border-2); padding: 12px 14px; font-family: inherit; font-size: 13px; outline: 0; }
.ai-chat-input input:focus { border-color: var(--ink); }
.ai-chat-input button { width: 44px; background: var(--ink); color: #fff; border: 0; cursor: pointer; font-size: 18px; }
.ai-chat-suggests { display: flex; gap: 6px; padding: 0 24px 16px; flex-wrap: wrap; }
.ai-suggest { background: var(--bone); border: 0; padding: 7px 12px; font-size: 11px; font-family: inherit; cursor: pointer; border-radius: 999px; color: var(--fg-1); }
.ai-suggest:hover { background: var(--sand); }

@media (max-width: 720px) {
  .ai { width: 100vw; }
  .ai-trigger span:not(.ai-dot) { display: none; }
  .ai-trigger { padding: 8px 10px; }
  .nav-tab { padding: 8px 10px; font-size: 12px; }
  .mega-inner { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .mega-quick { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--border-1); padding-bottom: 16px; }
  .mega-cols { grid-template-columns: repeat(2, 1fr); }
  .mega-feats { grid-template-columns: repeat(2, 1fr); }
  .ai-fab span:not(.ai-dot) { display: none; }
  .ai-fab { padding: 14px; }
  .ai-opts { grid-template-columns: 1fr; }
  .ai-msg-picks { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- AI Stylist — capture step ---------- */
.ai-capture .ai-q em { font-family: var(--font-editorial); font-style: italic; }
.ai-cap-form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.ai-cap-field { display: flex; flex-direction: column; gap: 6px; }
.ai-cap-l { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--fg-2); }
.ai-cap-opt { font-weight: 400; color: var(--fg-3); text-transform: none; letter-spacing: .02em; font-size: 10px; margin-left: 4px; }
.ai-cap-field input { font-family: inherit; font-size: 14px; padding: 12px 14px; border: 1px solid var(--ink); background: var(--ivory); outline: none; border-radius: 0; }
.ai-cap-field input:focus { border-color: var(--ink); box-shadow: inset 0 -2px 0 var(--ink); }
.ai-cap-phone { display: flex; align-items: stretch; border: 1px solid var(--ink); }
.ai-cap-phone .ai-flag { padding: 0 12px; font-size: 13px; border-right: 1px solid var(--border-1); display: flex; align-items: center; }
.ai-cap-phone input { flex: 1; border: 0; padding: 12px 14px; outline: none; }
.ai-cap-check { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--fg-2); line-height: 1.45; cursor: pointer; }
.ai-cap-check input { margin-top: 2px; accent-color: var(--ink); }
.ai-cap-fine { font-size: 10px; color: var(--fg-3); line-height: 1.5; margin: 4px 0 0; }

.ai-multi-hint { font-size: 11px; color: var(--fg-3); text-align: center; margin: 12px 0 4px; letter-spacing: .02em; }


/* ---------- AI Chat — built out ---------- */
.ai-head .ai-brand { gap: 12px; align-items: center; }
.ai-head .ai-brand > div { display: flex; flex-direction: column; }
.ai-sub { font-size: 11px; color: var(--fg-3); letter-spacing: .01em; margin-top: 1px; }

.ai-chat { flex: 1; display: flex; flex-direction: column; min-height: 0; background: var(--bone); }
.ai-chat-feed { flex: 1; overflow-y: auto; padding: 20px 20px 8px; display: flex; flex-direction: column; gap: 16px; }

.ai-chat-welcome { background: #fff; padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; border: 1px solid var(--border-1); }
.ai-pulse-sm { width: 32px; height: 32px; border-radius: 999px; background: linear-gradient(135deg, #FFD27A 0%, #FF8FB1 50%, #B89BFF 100%); margin-bottom: 4px; animation: aiPulse2 1.4s ease-in-out infinite; }
.ai-welcome-h { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin: 0; letter-spacing: -.01em; }
.ai-welcome-p { font-size: 13px; color: var(--fg-2); margin: 0 0 6px; line-height: 1.5; max-width: 320px; }
.ai-welcome-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 4px; }

.ai-msg { display: flex; gap: 8px; max-width: 92%; }
.ai-msg-ai { align-self: flex-start; }
.ai-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.ai-avatar { width: 26px; height: 26px; border-radius: 999px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ai-msg-content { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ai-bubble { padding: 10px 14px; font-size: 13px; line-height: 1.5; border-radius: 14px; max-width: 320px; word-wrap: break-word; }
.ai-msg-ai .ai-bubble { background: #fff; color: var(--ink); border-bottom-left-radius: 4px; border: 1px solid var(--border-1); }
.ai-msg-user .ai-bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }

.ai-typing { display: inline-flex; gap: 4px; align-items: center; padding: 12px 14px; }
.ai-typing span { width: 6px; height: 6px; border-radius: 999px; background: var(--fg-3); animation: typingDot 1.2s infinite; }
.ai-typing span:nth-child(2) { animation-delay: .15s; }
.ai-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.ai-msg-picks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 320px; }
.ai-msg-pick { background: #fff; border: 1px solid var(--border-1); cursor: pointer; display: flex; flex-direction: column; transition: border-color 200ms; }
.ai-msg-pick:hover { border-color: var(--ink); }
.ai-msg-pick-img { aspect-ratio: 1/1; background-size: cover; background-position: center; position: relative; }
.ai-msg-pick-badge { position: absolute; top: 4px; left: 4px; font-size: 8px; padding: 2px 4px; background: var(--ink); color: #fff; letter-spacing: .1em; font-weight: 700; }
.ai-msg-pick-body { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 6px; }
.ai-msg-pick-name { font-size: 11px; font-weight: 600; line-height: 1.3; min-height: 28px; }
.ai-msg-pick-bottom { display: flex; justify-content: space-between; align-items: center; }
.ai-msg-pick-price { font-size: 11px; font-weight: 600; }
.ai-msg-pick-add { background: transparent; border: 1px solid var(--ink); padding: 3px 8px; font-size: 9px; font-family: inherit; cursor: pointer; letter-spacing: .08em; font-weight: 600; transition: all 160ms; }
.ai-msg-pick-add:hover { background: var(--ink); color: #fff; }

.ai-msg-suggests { display: flex; flex-wrap: wrap; gap: 6px; }
.ai-suggest-sm { padding: 5px 10px; font-size: 10px; }

.ai-chat-input { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border-1); background: #fff; }
.ai-chat-input input { flex: 1; border: 1px solid var(--border-2); padding: 11px 14px; font-family: inherit; font-size: 13px; outline: 0; border-radius: 999px; background: var(--bone); }
.ai-chat-input input:focus { border-color: var(--ink); background: #fff; }
.ai-chat-input button { width: 40px; height: 40px; background: var(--ink); color: #fff; border: 0; cursor: pointer; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: opacity 160ms; }
.ai-chat-input button:disabled { opacity: .35; cursor: not-allowed; }
.ai-chat-foot { font-size: 10px; color: var(--fg-3); text-align: center; padding: 6px 12px 12px; background: #fff; }


/* ---------- Stylist Section (mid-page CTA) ---------- */
.stylist-section { background: var(--ink); color: var(--ivory); padding: 120px 32px; position: relative; overflow: hidden; }
.stylist-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(255,210,122,0.08), transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(184,155,255,0.06), transparent 50%); pointer-events: none; }
.stylist-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; position: relative; }
.stylist-eyebrow { color: var(--ivory); display: inline-flex; align-items: center; gap: 8px; opacity: .85; }
.stylist-pulse { width: 7px; height: 7px; border-radius: 999px; background: linear-gradient(135deg, #FFD27A, #FF8FB1, #B89BFF); animation: aiPulse2 1.6s ease-in-out infinite; box-shadow: 0 0 12px rgba(255,210,122,0.5); }
@keyframes aiPulse2 { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .7; } }
.stylist-h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5.5vw, 76px); line-height: 1.02; letter-spacing: -0.015em; margin: 18px 0 22px; color: var(--ivory); }
.stylist-h .editorial { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.stylist-p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 0 36px; }
.stylist-proof { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; }
.stylist-proof-item { display: flex; flex-direction: column; gap: 2px; }
.stylist-proof-n { font-family: var(--font-display); font-size: 28px; font-weight: 400; line-height: 1; color: var(--ivory); }
.stylist-proof-l { font-size: 11px; letter-spacing: .04em; color: rgba(255,255,255,0.55); }
.stylist-proof-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.stylist-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.stylist-cta-row .btn-primary { background: var(--ivory); color: var(--ink); border-color: var(--ivory); padding: 18px 32px; font-size: 13px; font-weight: 600; letter-spacing: .12em; cursor: pointer; transition: transform 200ms; }
.stylist-cta-row .btn-primary:hover { background: transparent; color: var(--ivory); transform: translateY(-1px); }
.stylist-fine { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: .04em; }
.stylist-quote { border-left: 1px solid rgba(255,255,255,0.2); padding: 4px 0 4px 18px; margin: 0; max-width: 440px; }
.stylist-quote p { font-family: var(--font-editorial); font-style: italic; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 0 6px; }
.stylist-quote cite { font-style: normal; font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,0.5); }

/* Phone preview */
.stylist-preview { display: flex; justify-content: center; }
.stylist-phone { width: 100%; max-width: 380px; background: #fff; color: var(--ink); border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08); overflow: hidden; transform: rotate(-1.5deg); }
.stylist-phone-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--border-1); }
.stylist-dot { width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, #FFD27A, #FF8FB1, #B89BFF); display: inline-block; }
.stylist-phone-title { font-size: 13px; font-weight: 600; }
.stylist-phone-sub { font-size: 11px; color: var(--fg-3); }
.stylist-phone-feed { padding: 20px; min-height: 280px; display: flex; flex-direction: column; gap: 10px; background: var(--bone); }
.stylist-msg { display: flex; gap: 8px; max-width: 85%; animation: msgIn 360ms var(--ease-elegant); }
.stylist-msg-user { align-self: flex-end; }
.stylist-msg-ai { align-self: flex-start; }
.stylist-avatar { width: 24px; height: 24px; border-radius: 999px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.stylist-bubble { padding: 10px 14px; font-size: 13px; line-height: 1.45; border-radius: 14px; }
.stylist-msg-ai .stylist-bubble { background: #fff; border: 1px solid var(--border-1); border-bottom-left-radius: 4px; }
.stylist-msg-user .stylist-bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
.stylist-typing { display: inline-flex; gap: 4px; align-items: center; padding: 12px 14px; }
.stylist-typing span { width: 6px; height: 6px; border-radius: 999px; background: var(--fg-3); animation: typingDot 1.2s infinite; }
.stylist-typing span:nth-child(2) { animation-delay: .15s; }
.stylist-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.stylist-phone-input { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-top: 1px solid var(--border-1); }
.stylist-phone-input span { font-size: 13px; color: var(--fg-3); }
.stylist-phone-input button { width: 32px; height: 32px; border: 0; background: var(--ink); color: #fff; border-radius: 999px; cursor: pointer; font-size: 14px; }

/* Hero entry strip */
.stylist-strip { background: var(--bone); padding: 18px 32px; display: flex; justify-content: center; align-items: center; gap: 16px; border-bottom: 1px solid var(--border-1); }
.stylist-strip-text { font-size: 13px; color: var(--fg-1); }
.stylist-strip-text em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.stylist-strip-cta { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 8px 16px; background: var(--ink); color: #fff; border: 0; cursor: pointer; transition: opacity 200ms; }
.stylist-strip-cta:hover { opacity: .85; }
.stylist-strip-pulse { width: 7px; height: 7px; border-radius: 999px; background: linear-gradient(135deg, #FFD27A, #FF8FB1, #B89BFF); animation: aiPulse2 1.6s ease-in-out infinite; }

@media (max-width: 900px) {
  .stylist-section { padding: 80px 20px; }
  .stylist-grid { grid-template-columns: 1fr; gap: 48px; }
  .stylist-proof { gap: 16px; }
  .stylist-proof-n { font-size: 22px; }
  .stylist-phone { max-width: 320px; }
  .stylist-strip { flex-direction: column; gap: 10px; padding: 14px 16px; text-align: center; }
}
