/* ============================================================
   CONCEPT B v2 — EXTRAS & GLOBAL COMPONENTS
   AI Agent · Mini-cart · Mega-menu · Live chat · Sticky bars
   Search autocomplete · Custom builder · Account · etc.
   ============================================================ */

/* === MEGA MENU === */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(74, 46, 58, 0.15);
  padding: 32px;
  width: min(960px, 92vw);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
.nav-c .has-mega { position: relative; }
.nav-c .has-mega:hover .mega-menu,
.nav-c .has-mega.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-feature {
  background-size: cover; background-position: center;
  border-radius: var(--r-sm);
  padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; min-height: 200px;
  position: relative; overflow: hidden;
}
.mega-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6)); }
.mega-feature > * { position: relative; z-index: 2; }
.mega-feature h4 { font-family: var(--display); font-size: 20px; line-height: 1.1; margin-bottom: 6px; }
.mega-feature .arr { font-size: 11px; font-weight: 700; }
.mega-col h5 {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin-bottom: 14px;
  border-bottom: 1px solid var(--line); padding-bottom: 10px;
}
.mega-col ul { display: grid; gap: 8px; }
.mega-col a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-2); padding: 4px 0;
}
.mega-col a:hover { color: var(--rose-2); }
.mega-col a .badge {
  background: var(--rose); color: #fff;
  padding: 1px 6px; border-radius: 4px;
  font-size: 9px; font-weight: 700;
}

/* === MINI-CART DRAWER === */
.drawer-back {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(74, 46, 58, 0.45);
  opacity: 0; pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity .25s;
}
.drawer-back.on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(420px, 92vw);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  display: flex; flex-direction: column;
}
.drawer.on { transform: translateX(0); }
.drawer.left {
  right: auto; left: 0;
  transform: translateX(-100%);
  width: min(340px, 92vw);
}
.drawer.left.on { transform: translateX(0); }
.drawer .head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer .head h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 24px; color: var(--ink);
}
.drawer .head h3 em { font-style: italic; color: var(--rose-2); }
.drawer .head .close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
}
.drawer .head .close:hover { background: var(--rose); color: #fff; }
.drawer .body { flex: 1; overflow-y: auto; padding: 0; }
.drawer .body > section { padding: 18px 24px; border-bottom: 1px dashed var(--line); }

/* Mini-cart items */
.mc-item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}
.mc-item .img {
  width: 72px; height: 72px; border-radius: var(--r-sm);
  background: var(--blush); overflow: hidden;
}
.mc-item .img img { width: 100%; height: 100%; object-fit: cover; }
.mc-item .info .cat { font-size: 10px; color: var(--rose-2); font-weight: 700; letter-spacing: 0.06em; }
.mc-item .info h5 { font-family: var(--display); font-size: 15px; font-weight: 400; line-height: 1.2; margin: 4px 0; color: var(--ink); }
.mc-item .info .opts { font-size: 11px; color: var(--mute); }
.mc-item .info .qty-mini {
  display: inline-grid; grid-template-columns: 24px 28px 24px; align-items: center;
  background: var(--bg); border-radius: var(--r-pill); margin-top: 8px;
  font-size: 12px;
}
.mc-item .info .qty-mini button { height: 28px; }
.mc-item .info .qty-mini input { background: transparent; border: 0; text-align: center; outline: none; font-weight: 700; }
.mc-item .right { text-align: right; }
.mc-item .right .price { font-family: var(--display); font-size: 15px; color: var(--ink); }
.mc-item .right .rm { font-size: 11px; color: var(--mute); margin-top: 12px; cursor: pointer; }
.mc-item .right .rm:hover { color: var(--sale); }

.drawer .empty {
  text-align: center; padding: 64px 32px;
}
.drawer .empty .ic {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blush); display: grid; place-items: center;
  margin: 0 auto 18px; color: var(--rose);
}
.drawer .empty h4 { font-family: var(--display); font-size: 22px; margin-bottom: 8px; }
.drawer .empty p { font-size: 13px; color: var(--mute); margin-bottom: 20px; }

/* Drawer footer */
.drawer .foot-d {
  border-top: 1px solid var(--line);
  padding: 18px 24px 24px;
  background: var(--bg);
}
.drawer .foot-d .row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-2); margin-bottom: 6px;
}
.drawer .foot-d .row.total {
  font-size: 15px; color: var(--ink); font-weight: 700; padding-top: 10px;
  border-top: 1px dashed var(--line); margin-top: 10px;
}
.drawer .foot-d .row.total .price {
  font-family: var(--display); font-size: 22px; font-weight: 400;
}
.drawer .foot-d .ship-bar {
  background: var(--blush); padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 11px; color: var(--rose-2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.drawer .foot-d .ship-bar .meter {
  flex: 1; height: 4px; background: rgba(255,255,255,0.6); border-radius: 2px;
  overflow: hidden;
}
.drawer .foot-d .ship-bar .meter .fill {
  width: 72%; height: 100%; background: var(--rose);
}
.drawer .foot-d .actions { display: grid; gap: 8px; margin-top: 14px; }
.drawer .foot-d .actions .btn { justify-content: center; padding: 14px 20px; }

/* === MEGA SEARCH OVERLAY === */
.search-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(74, 46, 58, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.search-overlay.on { opacity: 1; pointer-events: auto; }
.search-overlay .panel {
  background: var(--paper);
  max-width: 760px;
  margin: 80px auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform .2s;
}
.search-overlay.on .panel { transform: translateY(0); }
.search-overlay .search-input {
  display: grid; grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.search-overlay input {
  background: transparent; border: 0; outline: none;
  font-family: var(--display); font-size: 22px; color: var(--ink);
}
.search-overlay input::placeholder { color: var(--mute); font-style: italic; }
.search-overlay .esc { font-size: 11px; color: var(--mute); padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; }
.search-overlay .results { padding: 24px 28px 28px; max-height: 60vh; overflow-y: auto; }
.search-overlay .res-section { margin-bottom: 28px; }
.search-overlay .res-section h6 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin-bottom: 12px;
}
.search-overlay .suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.search-overlay .suggestions button {
  padding: 8px 14px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px; color: var(--ink-2);
}
.search-overlay .suggestions button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.search-overlay .res-prods { display: grid; gap: 12px; }
.search-overlay .res-prod {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 14px; padding: 10px;
  border-radius: var(--r-sm);
  align-items: center;
  cursor: pointer;
}
.search-overlay .res-prod:hover { background: var(--bg); }
.search-overlay .res-prod .img {
  width: 56px; height: 56px; border-radius: var(--r-sm);
  background: var(--blush); overflow: hidden;
}
.search-overlay .res-prod .img img { width: 100%; height: 100%; object-fit: cover; }
.search-overlay .res-prod .cat { font-size: 10px; color: var(--rose-2); font-weight: 700; letter-spacing: 0.04em; }
.search-overlay .res-prod h5 { font-family: var(--display); font-size: 15px; color: var(--ink); }
.search-overlay .res-prod .price { font-family: var(--display); font-size: 15px; color: var(--ink); }

/* === AI AGENT FAB + PANEL === */
.ai-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 180;
  background: linear-gradient(135deg, var(--ink) 0%, #4a2e3a 100%);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(74, 46, 58, 0.3);
  cursor: pointer;
  transition: transform .2s;
}
.ai-fab:hover { transform: translateY(-3px); }
.ai-fab .pulse {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, #e8d49a 100%);
  display: grid; place-items: center;
  position: relative;
}
.ai-fab .pulse::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--rose);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.ai-fab .ai-sparkle { font-size: 16px; }
.ai-fab .lbl { display: flex; flex-direction: column; line-height: 1.1; }
.ai-fab .lbl b { font-size: 14px; }
.ai-fab .lbl small { font-size: 10px; opacity: 0.7; font-weight: 500; }

.ai-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 220;
  width: min(440px, 92vw); height: min(720px, 86vh);
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(74, 46, 58, 0.3);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.96);
  opacity: 0; pointer-events: none;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  overflow: hidden;
}
.ai-panel.on { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.ai-panel .head {
  background: linear-gradient(135deg, var(--ink) 0%, #4a2e3a 100%);
  color: #fff;
  padding: 18px 20px;
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center;
}
.ai-panel .head .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, #e8d49a 100%);
  display: grid; place-items: center;
  position: relative;
}
.ai-panel .head .avatar::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: #4ade80; border: 2px solid var(--ink);
}
.ai-panel .head .info b { font-size: 14px; font-weight: 700; display: block; }
.ai-panel .head .info small { font-size: 11px; opacity: 0.7; }
.ai-panel .head .icon-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; }
.ai-panel .head .icon-btn:hover { background: rgba(255,255,255,0.2); }
.ai-panel .body {
  flex: 1; overflow-y: auto;
  background: var(--bg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.ai-panel .msg {
  display: flex; gap: 10px;
  max-width: 90%;
  animation: slide-in .25s ease-out;
}
.ai-panel .msg.user { flex-direction: row-reverse; align-self: flex-end; }
.ai-panel .msg .avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, #e8d49a 100%);
  display: grid; place-items: center;
  font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.ai-panel .msg.user .avatar-sm { background: var(--ink); }
.ai-panel .bubble {
  background: var(--paper);
  padding: 12px 14px;
  border-radius: 14px;
  border-top-left-radius: 4px;
  font-size: 13px; color: var(--ink); line-height: 1.5;
}
.ai-panel .msg.user .bubble {
  background: var(--ink); color: #fff;
  border-top-left-radius: 14px; border-top-right-radius: 4px;
}
.ai-panel .bubble.rich { padding: 0; overflow: hidden; }
.ai-panel .bubble .rich-head { padding: 12px 14px; }
.ai-panel .bubble .rich-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
}
.ai-panel .bubble .rich-cards .c {
  background: var(--paper); padding: 10px;
  font-size: 11px;
}
.ai-panel .bubble .rich-cards .c .img {
  aspect-ratio: 1; background: var(--blush);
  border-radius: var(--r-sm); margin-bottom: 6px;
  overflow: hidden;
}
.ai-panel .bubble .rich-cards .c .img img { width: 100%; height: 100%; object-fit: cover; }
.ai-panel .bubble .rich-cards .c h6 { font-family: var(--display); font-size: 13px; margin-bottom: 4px; line-height: 1.15; }
.ai-panel .bubble .rich-cards .c .pr { font-weight: 700; font-size: 12px; color: var(--ink); }
.ai-panel .typing { display: inline-flex; gap: 3px; padding: 4px 0; }
.ai-panel .typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mute);
  animation: typing 1.2s infinite;
}
.ai-panel .typing span:nth-child(2) { animation-delay: .15s; }
.ai-panel .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-panel .quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 10px;
}
.ai-panel .quick-replies button {
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.ai-panel .quick-replies button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.ai-panel .input-row {
  padding: 14px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 32px 1fr auto auto; gap: 8px; align-items: center;
}
.ai-panel .input-row .att { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--mute); }
.ai-panel .input-row .att:hover { background: var(--bg); color: var(--ink); }
.ai-panel .input-row input {
  background: var(--bg); border: 0; padding: 10px 14px;
  border-radius: var(--r-pill); font-size: 13px;
  outline: none;
}
.ai-panel .input-row .send {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.ai-panel .input-row .send:hover { background: var(--rose); }
.ai-panel .features-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 8px 14px 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.ai-panel .features-row button {
  padding: 8px 4px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--mute);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.ai-panel .features-row button:hover { color: var(--rose-2); }
.ai-panel .features-row button .ico { font-size: 16px; }

/* === LIVE CHAT BUBBLE === */
.chat-bubble {
  position: fixed; bottom: 24px; left: 24px; z-index: 180;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(74, 46, 58, 0.18);
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s;
}
.chat-bubble:hover { transform: scale(1.06); }
.chat-bubble .b-count {
  position: absolute; top: -4px; right: -4px;
  background: #4ade80; color: #064e3b;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  border: 2px solid var(--paper);
}

/* === STICKY ADD-TO-BAG BAR (mobile PDP) === */
.sticky-pdp {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: 64px 1fr auto;
  gap: 14px; align-items: center;
  box-shadow: 0 -8px 24px rgba(74, 46, 58, 0.06);
}
.sticky-pdp .img { width: 56px; height: 56px; border-radius: var(--r-sm); background: var(--blush); overflow: hidden; }
.sticky-pdp .img img { width: 100%; height: 100%; object-fit: cover; }
.sticky-pdp .info { display: grid; }
.sticky-pdp .info b { font-family: var(--display); font-size: 14px; color: var(--ink); }
.sticky-pdp .info .price { font-weight: 700; font-size: 13px; color: var(--rose-2); }
.sticky-pdp .add { padding: 12px 22px; }
@media (max-width: 640px) { .sticky-pdp { display: grid; } }

/* === COUNTDOWN TIMER === */
.countdown-band {
  background: linear-gradient(90deg, var(--ink) 0%, #4a2e3a 100%);
  color: #fff;
  padding: 16px 32px;
  display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
  margin: 32px;
  border-radius: var(--r-lg);
}
.countdown-band .lbl { font-size: 13px; color: var(--blush-2); font-weight: 600; }
.countdown-band .lbl b { color: #fff; font-weight: 700; }
.countdown-band .timer { display: flex; gap: 8px; align-items: center; }
.countdown-band .timer .unit {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px; border-radius: var(--r-sm);
  text-align: center; min-width: 56px;
}
.countdown-band .timer .unit .n {
  font-family: var(--display); font-size: 22px; line-height: 1; color: #fff;
}
.countdown-band .timer .unit .u { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.countdown-band .timer .sep { color: var(--rose); font-size: 18px; }
.countdown-band .btn { padding: 12px 22px; }

/* === FEATURED BY STONE STRIP === */
.stone-strip {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.stone-strip .stone {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 22px 12px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.stone-strip .stone:hover { transform: translateY(-4px); }
.stone-strip .stone:hover .gem { transform: rotate(-12deg) scale(1.05); }

/* === REALISTIC GEMSTONE — faceted cut === */
.stone-strip .gem {
  width: 78px; height: 78px;
  margin: 6px auto 14px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22)) drop-shadow(0 2px 4px rgba(0,0,0,0.14));
}
.stone-strip .gem::before,
.stone-strip .gem::after,
.stone-strip .gem .spark {
  content: ""; position: absolute; inset: 0;
}

/* ============ SHAPE CLIP PATHS PER STONE ============ */
/* Sapphire — Cushion cut */
.stone-strip .stone.sapphire .gem::before,
.stone-strip .stone.sapphire .gem::after,
.stone-strip .stone.sapphire .gem .spark {
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
/* Padparadscha — Oval */
.stone-strip .stone.padpara .gem::before,
.stone-strip .stone.padpara .gem::after,
.stone-strip .stone.padpara .gem .spark {
  clip-path: ellipse(36% 48% at 50% 50%);
}
/* Ruby — Pear / Teardrop */
.stone-strip .stone.ruby .gem::before,
.stone-strip .stone.ruby .gem::after,
.stone-strip .stone.ruby .gem .spark {
  clip-path: polygon(50% 0%, 70% 22%, 88% 50%, 95% 75%, 80% 95%, 50% 100%, 20% 95%, 5% 75%, 12% 50%, 30% 22%);
}
/* Emerald — Emerald cut (rectangular w/ cut corners) */
.stone-strip .stone.emerald .gem::before,
.stone-strip .stone.emerald .gem::after,
.stone-strip .stone.emerald .gem .spark {
  clip-path: polygon(18% 6%, 82% 6%, 94% 22%, 94% 78%, 82% 94%, 18% 94%, 6% 78%, 6% 22%);
}
/* Diamond — Round brilliant (octagon for the table outline) */
.stone-strip .stone.diamond .gem::before,
.stone-strip .stone.diamond .gem::after,
.stone-strip .stone.diamond .gem .spark {
  clip-path: polygon(50% 0%, 79% 8%, 96% 30%, 100% 60%, 87% 87%, 60% 99%, 32% 96%, 11% 80%, 1% 53%, 8% 24%, 28% 6%);
}
/* Pearl — perfect sphere */
.stone-strip .stone.pearl .gem::before,
.stone-strip .stone.pearl .gem::after,
.stone-strip .stone.pearl .gem .spark {
  clip-path: circle(48% at 50% 50%);
}

/* ============ BASE FILL FOR EACH STONE ============ */
/* Sapphire — Cushion cut surface + facet lines */
.stone-strip .stone.sapphire .gem::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(190,210,255,0.2) 22%, transparent 28%, transparent 50%, rgba(0,0,30,0.4) 80%, rgba(0,0,40,0.6) 100%),
    radial-gradient(circle at 30% 25%, rgba(180,210,255,0.85) 0%, transparent 35%),
    linear-gradient(160deg, #5a8aeb 0%, #2547a5 45%, #0d2060 100%);
}
.stone-strip .stone.sapphire .gem::after {
  background:
    /* cushion table outline */
    linear-gradient(45deg, transparent 47%, rgba(255,255,255,0.22) 49%, rgba(255,255,255,0.28) 50%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(255,255,255,0.22) 49%, rgba(255,255,255,0.28) 50%, transparent 53%),
    linear-gradient(90deg, transparent 49%, rgba(0,0,0,0.15) 50%, transparent 51%),
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,0.18) 30%, transparent 32%, transparent 70%, rgba(0,0,0,0.22) 72%, transparent 74%);
}

/* Ruby — Pear cut surface */
.stone-strip .stone.ruby .gem::before {
  background:
    linear-gradient(135deg, rgba(255,200,200,0.55) 0%, rgba(255,170,170,0.2) 22%, transparent 28%, transparent 50%, rgba(60,0,0,0.45) 80%, rgba(40,0,0,0.65) 100%),
    radial-gradient(ellipse 30% 40% at 40% 25%, rgba(255,210,210,0.9) 0%, transparent 60%),
    linear-gradient(170deg, #d8344a 0%, #b22236 45%, #5e0d18 100%);
}
.stone-strip .stone.ruby .gem::after {
  background:
    /* pear facets radiating */
    conic-gradient(from 270deg at 50% 30%,
      transparent 0deg, rgba(255,255,255,0.12) 30deg, transparent 60deg,
      rgba(0,0,0,0.18) 90deg, transparent 120deg,
      rgba(255,255,255,0.12) 150deg, transparent 180deg,
      rgba(0,0,0,0.18) 210deg, transparent 240deg,
      rgba(255,255,255,0.12) 270deg, transparent 300deg,
      rgba(0,0,0,0.18) 330deg, transparent 360deg),
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.18) 100%);
}

/* Emerald — Emerald cut step facets */
.stone-strip .stone.emerald .gem::before {
  background:
    linear-gradient(135deg, rgba(220,255,220,0.55) 0%, rgba(180,230,180,0.2) 22%, transparent 28%, transparent 50%, rgba(0,40,0,0.45) 80%, rgba(0,30,0,0.65) 100%),
    radial-gradient(ellipse 50% 30% at 50% 25%, rgba(190,240,200,0.85) 0%, transparent 50%),
    linear-gradient(160deg, #2a8a4a 0%, #1a6e3a 45%, #0a3e1f 100%);
}
.stone-strip .stone.emerald .gem::after {
  background:
    /* parallel step-cut bands */
    linear-gradient(180deg,
      transparent 0%, transparent 18%,
      rgba(0,0,0,0.18) 19%, rgba(0,0,0,0.18) 21%, transparent 22%,
      transparent 38%, rgba(255,255,255,0.1) 39%, rgba(255,255,255,0.14) 41%, transparent 42%,
      transparent 58%, rgba(0,0,0,0.18) 59%, rgba(0,0,0,0.2) 61%, transparent 62%,
      transparent 78%, rgba(0,0,0,0.24) 79%, rgba(0,0,0,0.24) 81%, transparent 82%, transparent 100%),
    linear-gradient(90deg, rgba(0,0,0,0.12) 0%, transparent 10%, transparent 90%, rgba(0,0,0,0.12) 100%);
}

/* Diamond — Round brilliant with classic facet pattern */
.stone-strip .stone.diamond .gem::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(220,240,255,0.4) 22%, transparent 28%, transparent 50%, rgba(160,180,200,0.45) 80%, rgba(100,130,160,0.55) 100%),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,1) 0%, transparent 35%),
    linear-gradient(160deg, #f6fbff 0%, #d4e0e8 45%, #8aa0b8 100%);
}
.stone-strip .stone.diamond .gem::after {
  background:
    conic-gradient(from 0deg at 50% 50%,
      rgba(255,255,255,0.5) 0deg, rgba(180,200,220,0.2) 22deg,
      rgba(255,255,255,0.55) 45deg, rgba(180,200,220,0.2) 67deg,
      rgba(255,255,255,0.5) 90deg, rgba(180,200,220,0.2) 112deg,
      rgba(255,255,255,0.55) 135deg, rgba(180,200,220,0.2) 157deg,
      rgba(255,255,255,0.5) 180deg, rgba(180,200,220,0.2) 202deg,
      rgba(255,255,255,0.55) 225deg, rgba(180,200,220,0.2) 247deg,
      rgba(255,255,255,0.5) 270deg, rgba(180,200,220,0.2) 292deg,
      rgba(255,255,255,0.55) 315deg, rgba(180,200,220,0.2) 337deg,
      rgba(255,255,255,0.5) 360deg),
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(255,255,255,0.18) 30%, transparent 32%, transparent 56%, rgba(0,0,0,0.12) 58%, transparent 60%);
  mix-blend-mode: overlay;
}

/* Padparadscha — Oval cut */
.stone-strip .stone.padpara .gem::before {
  background:
    linear-gradient(135deg, rgba(255,220,200,0.55) 0%, rgba(255,200,170,0.2) 22%, transparent 28%, transparent 50%, rgba(120,40,0,0.42) 80%, rgba(80,20,0,0.6) 100%),
    radial-gradient(ellipse 40% 50% at 40% 30%, rgba(255,220,200,0.9) 0%, transparent 55%),
    linear-gradient(160deg, #f5a07a 0%, #e88661 45%, #a64a28 100%);
}
.stone-strip .stone.padpara .gem::after {
  background:
    /* oval facet radial lines */
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg, rgba(255,255,255,0.14) 18deg, transparent 36deg,
      rgba(0,0,0,0.16) 54deg, transparent 72deg,
      rgba(255,255,255,0.14) 90deg, transparent 108deg,
      rgba(0,0,0,0.16) 126deg, transparent 144deg,
      rgba(255,255,255,0.14) 162deg, transparent 180deg,
      rgba(0,0,0,0.16) 198deg, transparent 216deg,
      rgba(255,255,255,0.14) 234deg, transparent 252deg,
      rgba(0,0,0,0.16) 270deg, transparent 288deg,
      rgba(255,255,255,0.14) 306deg, transparent 324deg,
      rgba(0,0,0,0.16) 342deg, transparent 360deg);
}

/* Pearl — rounded with iridescence */
.stone-strip .stone.pearl .gem::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,1) 0%, rgba(255,250,235,0.7) 14%, transparent 38%),
    radial-gradient(circle at 65% 75%, rgba(170,140,110,0.3) 0%, transparent 45%),
    linear-gradient(160deg, #fdf7e7 0%, #f0e4d0 50%, #c9b896 100%);
}
.stone-strip .stone.pearl .gem::after {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55) 0%, transparent 25%),
    radial-gradient(circle at 70% 80%, rgba(180,120,200,0.12) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, transparent 80%, rgba(120,100,80,0.25) 100%);
}

/* ============ COMMON SPARKLE HIGHLIGHTS ============ */
.stone-strip .gem .spark {
  pointer-events: none;
}
.stone-strip .gem .spark::before {
  content: ""; position: absolute;
  width: 22%; height: 22%;
  top: 12%; left: 28%;
  background: radial-gradient(circle, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.4) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(0.5px);
}
.stone-strip .gem .spark::after {
  content: ""; position: absolute;
  width: 6%; height: 6%;
  top: 38%; left: 18%;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

.stone-strip .stone h5 { font-family: var(--display); font-size: 17px; margin-bottom: 2px; color: var(--ink); }
.stone-strip .stone .n { font-size: 11px; color: var(--mute); }

/* === ATELIER VIDEO BLOCK === */
.video-block {
  max-width: 1320px; margin: 64px auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
  align-items: stretch;
}
.video-block .player {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: url('https://images.unsplash.com/photo-1617038220319-276d3cfab638?w=1400&q=85') center/cover;
}
.video-block .player::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
}
.video-block .player .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: grid; place-items: center;
  color: var(--ink); z-index: 2;
  cursor: pointer;
}
.video-block .player .play-btn::after {
  content: ""; width: 0; height: 0;
  border: 12px solid transparent; border-left: 18px solid var(--ink);
  margin-left: 4px;
}
.video-block .player .play-btn:hover { background: var(--rose); color: #fff; }
.video-block .player .label {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: #fff; z-index: 2;
}
.video-block .player .label .tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }
.video-block .player .label h3 { font-family: var(--display); font-size: 28px; margin-top: 4px; }
.video-block .copy {
  background: var(--blush);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.video-block .copy .eye { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.video-block .copy h2 { font-family: var(--display); font-weight: 400; font-size: 36px; line-height: 1.05; margin-bottom: 14px; }
.video-block .copy h2 em { font-style: italic; color: var(--rose-2); }
.video-block .copy p { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; line-height: 1.6; }

/* === PRESS STRIP === */
.press-strip {
  max-width: 1320px; margin: 64px auto;
  padding: 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.press-strip h6 {
  text-align: center;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 24px;
}
.press-strip .logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center;
}
.press-strip .logo {
  text-align: center;
  font-family: var(--display); font-size: 24px; color: var(--mute);
  opacity: 0.6;
  transition: opacity .2s;
  cursor: pointer;
}
.press-strip .logo:hover { opacity: 1; }
.press-strip .logo.italic { font-style: italic; }
.press-strip .logo.serifb { font-weight: 700; letter-spacing: 0.04em; }
.press-strip .logo.sans { font-family: var(--sans); font-weight: 800; }

/* === TRUST COUNTERS === */
.trust-counters {
  background: var(--ink); color: #fff;
  padding: 56px 32px;
  margin: 64px 0;
}
.trust-counters .row {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.trust-counters .item { text-align: center; }
.trust-counters .num {
  font-family: var(--display); font-size: 56px; line-height: 1; color: var(--rose);
  margin-bottom: 6px;
}
.trust-counters .num small { font-size: 24px; color: var(--blush-2); }
.trust-counters .lbl { font-size: 12px; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); }

/* === RECENTLY VIEWED === */
.recently-viewed {
  max-width: 1320px; margin: 64px auto;
  padding: 0 32px;
}
.recently-viewed h2 {
  font-family: var(--display); font-weight: 400;
  font-size: 32px; margin-bottom: 24px;
}
.recently-viewed h2 em { font-style: italic; color: var(--rose-2); }
.recently-viewed .row {
  display: flex; gap: 16px; overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 12px;
}
.recently-viewed .row .prod { flex-shrink: 0; width: 220px; }

/* === STICKY FILTER BAR (listing) === */
.sticky-filter {
  position: sticky;
  top: 76px; z-index: 30;
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 32px;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.sticky-filter .ch {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.sticky-filter .ch.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.sticky-filter .ch .x { opacity: 0.6; cursor: pointer; }
.sticky-filter .clear { color: var(--rose-2); font-size: 12px; font-weight: 600; cursor: pointer; margin-left: 8px; }
.sticky-filter .spacer { flex: 1; }
.sticky-filter .toggle { display: inline-flex; gap: 4px; }
.sticky-filter .toggle button {
  padding: 8px 12px; font-size: 11px; font-weight: 600;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  color: var(--ink-2);
}
.sticky-filter .toggle button.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* === PDP EXTRAS === */
.pdp-360 {
  position: absolute; top: 20px; right: 76px;
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--r-pill);
  padding: 4px;
}
.pdp-360 button {
  padding: 6px 12px; font-size: 11px; font-weight: 600;
  border-radius: var(--r-pill);
  color: var(--mute);
}
.pdp-360 button.on { background: var(--ink); color: #fff; }

.cert-card {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 14px;
  padding: 14px; background: var(--bg); border-radius: var(--r-sm);
  border: 1px solid var(--line);
  margin: 14px 0;
  align-items: center;
}
.cert-card .seal {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #d4af6b 0%, #e8c97f 100%);
  display: grid; place-items: center;
  color: #5a4218; font-family: var(--display); font-weight: 600; font-size: 13px;
  text-align: center; line-height: 1;
  border: 2px solid #c9a05b;
}
.cert-card .info b { display: block; font-weight: 700; color: var(--ink); font-size: 13px; }
.cert-card .info span { font-size: 11px; color: var(--mute); display: block; margin-top: 2px; }
.cert-card .view { font-size: 11px; font-weight: 600; color: var(--rose-2); cursor: pointer; }

.stock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(248, 113, 113, 0.08);
  border-left: 3px solid #c9a14a;
  border-radius: var(--r-sm);
  font-size: 12px; color: #9a4232; font-weight: 600;
  margin: 14px 0;
}
.stock-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: #c9a14a; animation: pulse-dot 1.5s ease-out infinite; }
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 154, 138, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(226, 154, 138, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 154, 138, 0); }
}

.delivery-est {
  background: var(--bg); border-radius: var(--r-sm);
  padding: 14px;
  margin: 14px 0;
}
.delivery-est .l { font-size: 11px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.delivery-est .input-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.delivery-est input {
  background: var(--paper); border: 1px solid var(--line);
  padding: 10px 14px; border-radius: var(--r-sm); font-size: 13px; outline: none;
}
.delivery-est .ck-btn { background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); font-size: 12px; font-weight: 700; }
.delivery-est .result { margin-top: 10px; font-size: 13px; color: var(--ink); }
.delivery-est .result b { color: var(--rose-2); }

.gift-wrap {
  background: var(--blush); border-radius: var(--r-sm);
  padding: 14px; display: flex; gap: 12px; align-items: center; margin: 14px 0;
}
.gift-wrap .icon { width: 40px; height: 40px; border-radius: 8px; background: var(--paper); display: grid; place-items: center; color: var(--rose); }
.gift-wrap .info { flex: 1; }
.gift-wrap .info b { font-weight: 700; color: var(--ink); font-size: 13px; }
.gift-wrap .info span { display: block; color: var(--ink-2); font-size: 11px; }
.gift-wrap .switch {
  width: 36px; height: 20px; background: var(--mute); border-radius: 999px; position: relative; cursor: pointer;
  transition: background .2s;
}
.gift-wrap .switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; }
.gift-wrap .switch.on { background: var(--rose); }
.gift-wrap .switch.on::after { transform: translateX(16px); }

.qa-section { padding-top: 28px; }
.qa-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.qa-item summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after { content: "+"; font-size: 18px; color: var(--rose); }
.qa-item[open] summary::after { content: "−"; }
.qa-item .a {
  padding-top: 12px;
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
}
.qa-item .a .by { font-size: 11px; color: var(--mute); margin-top: 8px; }

/* === FAQ PAGE === */
.faq-page {
  max-width: 960px; margin: 0 auto;
  padding: 56px 32px 80px;
  display: grid; grid-template-columns: 240px 1fr; gap: 56px;
}
.faq-toc {
  position: sticky; top: 96px; height: fit-content;
}
.faq-toc h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); font-weight: 700; margin-bottom: 14px; }
.faq-toc ul { display: grid; gap: 8px; }
.faq-toc a {
  display: block; padding: 8px 14px;
  font-size: 13px; color: var(--ink-2);
  border-radius: var(--r-sm);
}
.faq-toc a:hover, .faq-toc a.on { background: var(--blush); color: var(--rose-2); font-weight: 600; }
.faq-content h3 {
  font-family: var(--display); font-weight: 400; font-size: 28px;
  margin: 40px 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.faq-content h3:first-of-type { margin-top: 0; }

/* === ACCOUNT === */
.account-page {
  max-width: 1320px; margin: 0 auto;
  padding: 40px 32px 80px;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
}
.account-side {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 24px;
  height: fit-content;
}
.account-side .user {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
.account-side .user .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--blush-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 20px; font-weight: 500;
}
.account-side .user b { display: block; color: var(--ink); font-weight: 700; }
.account-side .user span { font-size: 11px; color: var(--mute); }
.account-side ul { display: grid; gap: 4px; }
.account-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 13px; color: var(--ink-2);
  border-radius: var(--r-sm);
}
.account-side a:hover { background: var(--blush); color: var(--rose-2); }
.account-side a.on { background: var(--ink); color: #fff; }
.account-side a.on svg { color: var(--rose); }
.account-side a .badge {
  margin-left: auto; background: var(--rose); color: #fff;
  padding: 1px 8px; border-radius: var(--r-pill); font-size: 10px; font-weight: 700;
}
.account-main .head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.account-main .head h1 {
  font-family: var(--display); font-weight: 400; font-size: 36px;
}
.account-main .head h1 em { font-style: italic; color: var(--rose-2); }

.dash-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 32px;
}
.dash-card {
  background: var(--paper); border-radius: var(--r-md); padding: 20px;
}
.dash-card .lbl { font-size: 11px; letter-spacing: 0.06em; color: var(--mute); }
.dash-card .num {
  font-family: var(--display); font-size: 32px; color: var(--ink);
  margin: 6px 0;
}
.dash-card .num em { font-style: italic; color: var(--rose-2); }
.dash-card .delta { font-size: 11px; color: var(--rose-2); font-weight: 600; }

.order-row {
  background: var(--paper); border-radius: var(--r-md);
  margin-bottom: 14px;
  padding: 18px;
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 18px; align-items: center;
}
.order-row .imgs { display: flex; }
.order-row .imgs .img {
  width: 48px; height: 48px; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid var(--paper); margin-left: -10px;
  background: var(--blush);
}
.order-row .imgs .img:first-child { margin-left: 0; }
.order-row .imgs .img img { width: 100%; height: 100%; object-fit: cover; }
.order-row .info b { display: block; color: var(--ink); font-weight: 700; }
.order-row .info span { font-size: 11px; color: var(--mute); }
.order-row .status {
  padding: 6px 12px;
  background: var(--blush); color: var(--rose-2);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
}
.order-row .status.delivered { background: #d1fae5; color: #065f46; }
.order-row .status.shipped { background: #dbeafe; color: #1e40af; }
.order-row .price { font-family: var(--display); font-size: 18px; color: var(--ink); }

/* === ORDER TRACKING === */
.track-progress {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px;
  margin: 32px 0;
}
.track-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 32px 0 20px;
  position: relative;
}
.track-steps::before {
  content: ""; position: absolute; top: 22px; left: 10%; right: 10%; height: 2px;
  background: var(--line);
}
.track-steps .step {
  text-align: center;
  position: relative;
}
.track-steps .step .dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line);
  display: grid; place-items: center;
  margin: 0 auto 10px;
  color: var(--mute);
  position: relative; z-index: 2;
}
.track-steps .step.done .dot { background: var(--rose); border-color: var(--rose); color: #fff; }
.track-steps .step.current .dot {
  background: var(--paper); border-color: var(--rose); color: var(--rose);
  box-shadow: 0 0 0 6px rgba(226, 154, 138, 0.2);
}
.track-steps .step h5 { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.track-steps .step .t { font-size: 10px; color: var(--mute); }

/* === CHECKOUT === */
.checkout-page {
  max-width: 1320px; margin: 0 auto;
  padding: 32px 32px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: start;
}
.checkout-stepper {
  display: flex; gap: 4px; align-items: center;
  margin-bottom: 28px;
  background: var(--paper); border-radius: var(--r-pill);
  padding: 6px;
}
.checkout-stepper .s {
  flex: 1; padding: 10px 14px;
  text-align: center;
  font-size: 12px; font-weight: 600; color: var(--mute);
  border-radius: var(--r-pill);
}
.checkout-stepper .s.on { background: var(--ink); color: #fff; }
.checkout-stepper .s.done { color: var(--rose-2); }
.checkout-stepper .s.done::before { content: "✓ "; }

.co-section {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.co-section h3 {
  font-family: var(--display); font-weight: 400; font-size: 24px;
  margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.co-section h3 em { font-style: italic; color: var(--rose-2); }
.co-section h3 .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  display: inline-grid; place-items: center;
  margin-right: 10px;
}
.co-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-form .full { grid-column: 1 / -1; }
.co-form .field { display: grid; gap: 6px; }
.co-form label { font-size: 11px; letter-spacing: 0.06em; color: var(--ink); font-weight: 600; text-transform: uppercase; }
.co-form input, .co-form select {
  background: var(--bg); border: 1px solid var(--line);
  padding: 12px 14px; border-radius: var(--r-sm);
  font-size: 14px; outline: none;
}
.co-form input:focus { border-color: var(--rose); }

.pay-method {
  display: grid; gap: 8px;
}
.pay-method label {
  display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center;
  padding: 16px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 13px; color: var(--ink);
}
.pay-method label.on { border-color: var(--rose); background: var(--blush); }
.pay-method label .radio {
  width: 18px; height: 18px; border: 1.5px solid var(--mute); border-radius: 50%;
  position: relative;
}
.pay-method label.on .radio { border-color: var(--rose); }
.pay-method label.on .radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--rose);
}
.pay-method label .info b { display: block; font-weight: 700; font-size: 13px; }
.pay-method label .info span { font-size: 11px; color: var(--mute); }
.pay-method label .badge { font-size: 10px; padding: 3px 7px; background: var(--ink); color: #fff; border-radius: 4px; font-weight: 700; }

.co-summary {
  background: var(--paper); border-radius: var(--r-lg);
  padding: 28px;
  position: sticky; top: 96px;
  height: fit-content;
}
.co-summary h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 18px; }
.co-summary .item-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.co-summary .item-row .img { width: 56px; height: 56px; border-radius: var(--r-sm); overflow: hidden; background: var(--blush); position: relative; }
.co-summary .item-row .img img { width: 100%; height: 100%; object-fit: cover; }
.co-summary .item-row .img .q { position: absolute; top: -6px; right: -6px; background: var(--ink); color: #fff; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.co-summary .item-row .info b { font-family: var(--display); font-size: 14px; font-weight: 400; display: block; line-height: 1.2; }
.co-summary .item-row .info span { font-size: 11px; color: var(--mute); }
.co-summary .item-row .pr { font-weight: 700; font-size: 13px; }

.co-summary .promo {
  display: grid; grid-template-columns: 1fr auto; gap: 6px;
  margin: 16px 0;
}
.co-summary .promo input {
  background: var(--bg); border: 1px solid var(--line);
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 12px; outline: none;
}
.co-summary .promo button { background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); font-size: 12px; font-weight: 700; }

.co-summary .tot-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 13px; color: var(--ink-2);
}
.co-summary .tot-row.disc { color: var(--rose-2); }
.co-summary .tot-row.grand {
  padding-top: 14px; margin-top: 8px; border-top: 1px dashed var(--line);
  font-size: 16px; color: var(--ink); font-weight: 700;
}
.co-summary .tot-row.grand .price { font-family: var(--display); font-size: 28px; font-weight: 400; }
.co-summary .pay-now { width: 100%; padding: 16px; margin-top: 20px; justify-content: center; }
.co-summary .secure {
  margin-top: 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--mute);
  justify-content: center;
}

/* === CART PAGE === */
.cart-page {
  max-width: 1320px; margin: 0 auto;
  padding: 40px 32px 64px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
  align-items: start;
}
.cart-list { display: grid; gap: 14px; }
.cart-item {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 20px;
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
}
.cart-item .img { width: 110px; height: 110px; border-radius: var(--r-sm); overflow: hidden; background: var(--blush); }
.cart-item .img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .body { display: grid; gap: 8px; }
.cart-item .top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.cart-item .cat { font-size: 10px; color: var(--rose-2); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 2px; }
.cart-item h4 { font-family: var(--display); font-size: 19px; font-weight: 400; }
.cart-item .opts {
  font-size: 12px; color: var(--mute);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cart-item .opts span b { color: var(--ink); font-weight: 600; }
.cart-item .bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.cart-item .qty-cart {
  display: grid; grid-template-columns: 34px 36px 34px;
  background: var(--bg); border-radius: var(--r-pill);
  align-items: center;
}
.cart-item .qty-cart button { height: 36px; font-size: 16px; }
.cart-item .qty-cart input { background: transparent; border: 0; text-align: center; outline: none; font-weight: 700; }
.cart-item .links { display: flex; gap: 14px; font-size: 11px; color: var(--mute); }
.cart-item .links a { cursor: pointer; }
.cart-item .links a:hover { color: var(--sale); }
.cart-item .price-col { text-align: right; }
.cart-item .price { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--ink); }
.cart-item .strike { display: block; text-decoration: line-through; font-size: 12px; color: var(--mute); }

.cart-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
}
.cart-actions a { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.cart-actions a:hover { color: var(--rose-2); }

/* === LOGIN/REGISTER === */
.login-page {
  max-width: 1080px; margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.login-page .visual {
  background: linear-gradient(135deg, var(--blush), var(--blush-2));
  padding: 60px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  min-height: 560px;
}
.login-page .visual h2 {
  font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 1; margin-bottom: 14px;
}
.login-page .visual h2 em { font-style: italic; color: var(--rose-2); }
.login-page .visual p { font-size: 14px; color: var(--ink-2); max-width: 320px; }
.login-page .visual .perks {
  display: grid; gap: 12px;
}
.login-page .visual .perks .p {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.login-page .visual .perks .p .ic {
  width: 32px; height: 32px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; color: var(--rose-2);
}
.login-page .form-side { padding: 60px 48px; }
.login-page .form-tabs {
  display: flex; gap: 4px; background: var(--bg); border-radius: var(--r-pill); padding: 4px;
  margin-bottom: 24px;
}
.login-page .form-tabs button { flex: 1; padding: 10px; font-size: 13px; font-weight: 600; border-radius: var(--r-pill); color: var(--ink-2); }
.login-page .form-tabs button.on { background: var(--ink); color: #fff; }
.login-page .field { display: grid; gap: 6px; margin-bottom: 14px; }
.login-page .field label { font-size: 11px; letter-spacing: 0.06em; color: var(--ink); font-weight: 600; text-transform: uppercase; }
.login-page .field input {
  background: var(--bg); border: 1px solid var(--line); padding: 14px 16px; border-radius: var(--r-sm); font-size: 14px; outline: none;
}
.login-page .field input:focus { border-color: var(--rose); }
.login-page .helper { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 18px; color: var(--mute); }
.login-page .helper a { color: var(--rose-2); font-weight: 600; }
.login-page .sso-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid; gap: 8px;
}
.login-page .sso-row .sso {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.login-page .sso-row .sso:hover { background: var(--paper); }

/* === CUSTOM BUILDER (AI-powered) === */
.builder-page {
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 24%);
  min-height: 100vh;
  padding-bottom: 64px;
}
.builder-hero {
  text-align: center;
  padding: 56px 32px 32px;
}
.builder-hero .ai-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--blush-2);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  margin-bottom: 18px;
}
.builder-hero .ai-tag .sparkle { color: var(--rose); }
.builder-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px); line-height: 1; letter-spacing: -0.02em;
}
.builder-hero h1 em { font-style: italic; color: var(--rose-2); }
.builder-hero p { font-size: 15px; color: var(--ink-2); margin-top: 14px; max-width: 580px; margin-left: auto; margin-right: auto; }

.builder-stage {
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 320px 1fr 360px; gap: 24px;
  align-items: start;
}
.builder-panel {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
}
.builder-panel h4 {
  font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 4px;
}
.builder-panel h4 em { font-style: italic; color: var(--rose-2); }
.builder-panel .sub { font-size: 12px; color: var(--mute); margin-bottom: 18px; }
.builder-panel .opt-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.builder-panel .opt-block:last-child { border-bottom: 0; }
.builder-panel h5 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); font-weight: 700; margin-bottom: 12px;
  display: flex; justify-content: space-between;
}
.builder-panel h5 .help { color: var(--rose-2); font-weight: 600; cursor: help; }
.builder-panel .choices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.builder-panel .choice {
  padding: 10px;
  background: var(--bg); border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: center;
}
.builder-panel .choice.on { border-color: var(--rose); background: var(--paper); box-shadow: 0 0 0 4px rgba(226, 154, 138, 0.12); }
.builder-panel .choice .gem-mini {
  width: 30px; height: 30px; border-radius: 50%;
  margin: 0 auto 6px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}
.builder-panel .choice .swatch-mini {
  width: 30px; height: 30px; border-radius: 50%;
  margin: 0 auto 6px;
  border: 1px solid rgba(0,0,0,0.1);
}
.builder-panel .choice b { font-size: 12px; display: block; color: var(--ink); }
.builder-panel .choice span { font-size: 10px; color: var(--mute); }
.builder-panel .choices.cuts { grid-template-columns: 1fr 1fr 1fr 1fr; }
.builder-panel .choices.cuts .choice { padding: 8px 4px; }
.builder-panel .choices.cuts .ico { font-family: var(--display); font-size: 18px; color: var(--ink); margin-bottom: 2px; }

.builder-preview {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
  min-height: 600px;
  display: flex; flex-direction: column;
}
.builder-preview .stage {
  flex: 1;
  background: linear-gradient(135deg, var(--blush), #fadfd2);
  border-radius: var(--r-md);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.builder-preview .stage img {
  max-width: 80%; max-height: 80%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.builder-preview .stage .angle-btns {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(6px);
  padding: 4px; border-radius: var(--r-pill);
}
.builder-preview .stage .angle-btns button {
  padding: 6px 12px; font-size: 11px; font-weight: 600;
  border-radius: var(--r-pill);
  color: var(--mute);
}
.builder-preview .stage .angle-btns button.on { background: var(--ink); color: #fff; }
.builder-preview .stage .badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--blush-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
}
.builder-preview .stage .ai-suggestion {
  position: absolute; top: 16px; right: 16px;
  background: var(--paper); padding: 10px 14px;
  border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink); font-weight: 500;
  box-shadow: 0 8px 24px rgba(74, 46, 58, 0.12);
  max-width: 280px;
}
.builder-preview .stage .ai-suggestion .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.builder-preview .stage .ai-suggestion b { color: var(--rose-2); }
.builder-summary {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky; top: 96px;
  height: fit-content;
}
.builder-summary .pr-now {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.builder-summary .price {
  font-family: var(--display); font-size: 42px; color: var(--ink);
}
.builder-summary .secondary { font-size: 11px; color: var(--mute); }
.builder-summary .secondary b { color: var(--rose-2); }
.builder-summary .spec-list { display: grid; gap: 10px; margin: 18px 0; }
.builder-summary .spec-list .s {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.builder-summary .spec-list .s b { color: var(--ink); font-weight: 700; }
.builder-summary .ai-tip {
  background: var(--blush);
  border-radius: var(--r-sm);
  padding: 14px;
  display: flex; gap: 10px;
  margin: 16px 0;
}
.builder-summary .ai-tip .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #e8d49a);
  display: grid; place-items: center;
  color: #fff; font-size: 12px;
  flex-shrink: 0;
}
.builder-summary .ai-tip p { font-size: 12px; color: var(--ink-2); line-height: 1.5; }
.builder-summary .ai-tip p b { color: var(--rose-2); }
.builder-summary .actions { display: grid; gap: 8px; margin-top: 18px; }
.builder-summary .actions .btn { justify-content: center; padding: 14px; }
.builder-step-strip {
  max-width: 1360px; margin: 0 auto 24px;
  padding: 0 32px;
  display: flex; gap: 4px;
}
.builder-step-strip .step {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--mute);
}
.builder-step-strip .step .n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}
.builder-step-strip .step.done .n { background: var(--rose); color: #fff; }
.builder-step-strip .step.done { color: var(--ink); }
.builder-step-strip .step.on .n { background: var(--ink); color: #fff; }
.builder-step-strip .step.on { color: var(--ink); }

/* === 404 === */
.notfound {
  text-align: center;
  padding: 96px 32px;
  max-width: 700px; margin: 0 auto;
}
.notfound h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(80px, 14vw, 200px); line-height: 1;
  color: var(--rose-2); letter-spacing: -0.04em;
}
.notfound h1 em { font-style: italic; color: var(--ink); }
.notfound p { font-size: 16px; color: var(--ink-2); margin: 16px 0 32px; }
.notfound .links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === JOURNAL / BLOG === */
.journal-feat {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
  margin-bottom: 56px;
}
.journal-feat .big {
  background-size: cover; background-position: center;
  border-radius: var(--r-lg);
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.journal-feat .big::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7)); }
.journal-feat .big > div { position: absolute; inset: 0; z-index: 2; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.journal-feat .big .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.9; margin-bottom: 8px; }
.journal-feat .big h2 { font-family: var(--display); font-size: 40px; line-height: 1.05; }
.journal-feat .small {
  background: var(--paper); border-radius: var(--r-lg);
  padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.journal-feat .small .item { padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.journal-feat .small .item:last-child { border-bottom: 0; padding-bottom: 0; }
.journal-feat .small .item .meta { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.journal-feat .small .item h4 { font-family: var(--display); font-size: 18px; line-height: 1.2; }

.journal-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.j-card .img {
  aspect-ratio: 4/3;
  border-radius: var(--r-md); overflow: hidden;
  background-size: cover; background-position: center;
  margin-bottom: 14px;
}
.j-card .meta { font-size: 11px; letter-spacing: 0.06em; color: var(--rose-2); font-weight: 600; margin-bottom: 4px; }
.j-card h3 { font-family: var(--display); font-size: 22px; line-height: 1.15; margin-bottom: 8px; }
.j-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* === REVIEWS PAGE === */
.reviews-summary {
  max-width: 1320px; margin: 32px auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
  align-items: start;
}
.rev-score {
  background: var(--paper); border-radius: var(--r-lg);
  padding: 32px; text-align: center;
}
.rev-score .num {
  font-family: var(--display); font-size: 72px; line-height: 1; color: var(--ink);
}
.rev-score .stars-big { font-size: 22px; color: var(--rose); letter-spacing: 4px; margin: 8px 0; }
.rev-score .based { font-size: 12px; color: var(--mute); }
.rev-score .bars { margin-top: 24px; display: grid; gap: 8px; }
.rev-score .bar-row {
  display: grid; grid-template-columns: 28px 1fr 32px; gap: 10px; align-items: center;
  font-size: 11px;
}
.rev-score .bar-row .track {
  height: 6px; background: var(--bg); border-radius: 3px; overflow: hidden;
}
.rev-score .bar-row .track .fill {
  height: 100%; background: var(--rose); border-radius: 3px;
}
.rev-list { display: grid; gap: 14px; }
.rev-row {
  background: var(--paper); border-radius: var(--r-md);
  padding: 24px;
}
.rev-row .top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-row .top .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush); display: grid; place-items: center;
  font-family: var(--display); color: var(--rose-2); font-weight: 600;
}
.rev-row .top .who b { display: block; font-weight: 700; color: var(--ink); font-size: 13px; }
.rev-row .top .who span { font-size: 11px; color: var(--mute); }
.rev-row .top .stars { margin-left: auto; color: var(--rose); letter-spacing: 2px; }
.rev-row blockquote { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 12px; }
.rev-row .photos { display: flex; gap: 6px; }
.rev-row .photos img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; }
.rev-row .item-rev { display: flex; gap: 10px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; color: var(--mute); }
.rev-row .item-rev img { width: 32px; height: 32px; border-radius: var(--r-sm); }
.rev-row .item-rev b { color: var(--ink); font-weight: 600; }

/* === BESPOKE FORM === */
.bespoke-hero {
  background: var(--blush);
  padding: 64px 32px;
  text-align: center;
}
.bespoke-hero h1 {
  font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5.4vw, 72px); line-height: 1;
}
.bespoke-hero h1 em { font-style: italic; color: var(--rose-2); }
.bespoke-hero p { font-size: 15px; color: var(--ink-2); margin: 14px 0 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.bespoke-form {
  max-width: 800px; margin: -32px auto 64px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  z-index: 2;
}
.bespoke-form h3 {
  font-family: var(--display); font-weight: 400; font-size: 28px; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.bespoke-form h3 em { font-style: italic; color: var(--rose-2); }
.bespoke-form .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bespoke-form .full { grid-column: 1 / -1; }
.bespoke-form .field { display: grid; gap: 6px; }
.bespoke-form label { font-size: 11px; letter-spacing: 0.06em; color: var(--ink); font-weight: 600; text-transform: uppercase; }
.bespoke-form input, .bespoke-form textarea, .bespoke-form select {
  background: var(--bg); border: 1px solid var(--line);
  padding: 14px 16px; border-radius: var(--r-sm);
  font-size: 14px; outline: none;
}
.bespoke-form textarea { resize: vertical; min-height: 100px; }
.bespoke-form .file-row {
  border: 2px dashed var(--line);
  padding: 28px;
  border-radius: var(--r-sm); text-align: center;
  font-size: 13px; color: var(--mute);
}
.bespoke-form .file-row b { color: var(--rose-2); font-weight: 700; cursor: pointer; }

/* ============== RESPONSIVE EXTRAS ============== */
@media (max-width: 1200px) {
  .stone-strip { grid-template-columns: repeat(3, 1fr); }
  .press-strip .logos { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .trust-counters .row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
  .checkout-page { grid-template-columns: 1fr 1fr; }
  .cart-page { grid-template-columns: 1fr 1fr; }
  .login-page { grid-template-columns: 1fr; }
  .login-page .visual { min-height: 280px; }
  .builder-stage { grid-template-columns: 280px 1fr 320px; gap: 16px; }
  .journal-feat { grid-template-columns: 1fr 320px; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .video-block { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .mega-menu { display: none; }
  .ai-fab { padding: 12px 16px 12px 12px; }
  .ai-fab .lbl { display: none; }
  .ai-panel { bottom: 80px; right: 12px; width: calc(100% - 24px); height: 70vh; max-height: 600px; }
  .chat-bubble { bottom: 90px; left: 12px; width: 48px; height: 48px; }
  .countdown-band { flex-direction: column; gap: 12px; margin: 16px; padding: 16px; }
  .stone-strip { grid-template-columns: repeat(3, 1fr); padding: 0 16px; }
  .video-block { padding: 0 16px; }
  .press-strip { margin: 32px 16px; padding: 24px; }
  .trust-counters { padding: 40px 16px; margin: 32px 0; }
  .trust-counters .row { grid-template-columns: 1fr 1fr; }
  .trust-counters .num { font-size: 42px; }
  .recently-viewed { padding: 0 16px; }
  .sticky-filter { padding: 10px 16px; top: 64px; }
  .checkout-page { grid-template-columns: 1fr; padding: 24px 16px 80px; gap: 20px; }
  .co-summary { position: static; }
  .cart-page { grid-template-columns: 1fr; padding: 24px 16px 64px; }
  .faq-page { grid-template-columns: 1fr; padding: 32px 16px 64px; gap: 24px; }
  .faq-toc { position: static; padding: 16px; background: var(--paper); border-radius: var(--r-md); }
  .faq-toc ul { display: flex; gap: 6px; overflow-x: auto; }
  .account-page { grid-template-columns: 1fr; padding: 24px 16px 80px; }
  .account-side ul { display: flex; gap: 6px; overflow-x: auto; }
  .account-side a { white-space: nowrap; }
  .order-row { grid-template-columns: 1fr; gap: 10px; }
  .builder-stage { grid-template-columns: 1fr; padding: 0 16px; }
  .builder-summary { position: static; }
  .builder-step-strip { padding: 0 16px; flex-wrap: wrap; }
  .login-page { padding: 32px 16px; }
  .login-page .form-side { padding: 32px 24px; }
  .login-page .visual { padding: 32px 24px; min-height: 200px; }
  .reviews-summary { grid-template-columns: 1fr; padding: 0 16px; }
  .journal-feat { padding: 0 16px; }
  .journal-grid { grid-template-columns: 1fr; padding: 0 16px 48px; }
}

@media (max-width: 640px) {
  .ai-fab { bottom: 76px; }
  .ai-panel { bottom: 76px; height: calc(100vh - 96px); border-radius: var(--r-md); }
  .chat-bubble { bottom: 90px; }
  .drawer { width: 100%; }
  .stone-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .press-strip .logos { grid-template-columns: repeat(2, 1fr); }
  .trust-counters .row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-counters .num { font-size: 36px; }
  .cart-item { grid-template-columns: 90px 1fr; gap: 14px; padding: 14px; }
  .cart-item .img { width: 90px; height: 90px; }
  .cart-item h4 { font-size: 16px; }
  .cart-item .bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cart-item .price-col { text-align: left; }
  .checkout-stepper .s { padding: 8px 6px; font-size: 10px; }
  .co-form { grid-template-columns: 1fr; }
  .co-section { padding: 20px; }
  .builder-panel .choices { grid-template-columns: 1fr 1fr; }
  .builder-step-strip .step { padding: 10px 12px; font-size: 11px; }
  .bespoke-form { padding: 24px; margin: -24px 16px 32px; }
  .bespoke-form .grid { grid-template-columns: 1fr; }
  .builder-hero h1 { font-size: 36px; }
}
