/* ============================================================
   PinMyMoment — Design System
   Warm · Minimal · Emotional · Premium (deliberately NOT "POD")
   ============================================================ */

:root {
  --paper: #faf7f2;
  --surface: #ffffff;
  --cream: #f3ede3;
  --ink: #26221e;
  --ink-soft: #4a443e;
  --muted: #857c72;
  --line: #eae3d8;
  --line-strong: #d9cfc0;
  --clay: #b4552d;
  --clay-dark: #96431f;
  --clay-tint: #f6e8e0;
  --sage: #6f7f6a;
  --sage-tint: #e9ede7;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(38, 34, 30, 0.05), 0 2px 8px rgba(38, 34, 30, 0.04);
  --shadow-md: 0 2px 6px rgba(38, 34, 30, 0.06), 0 14px 36px rgba(38, 34, 30, 0.09);
  --shadow-lg: 0 4px 12px rgba(38, 34, 30, 0.08), 0 24px 60px rgba(38, 34, 30, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
em { font-style: italic; font-family: var(--serif); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--clay); }

.section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: 40px; margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; gap: 32px; height: 68px; }
.brand {
  display: inline-flex; align-items: baseline;
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: -0.005em; line-height: 1; white-space: nowrap;
}
.brand .brand-pin { color: var(--ink); }
.brand .brand-my { color: var(--clay); font-style: italic; margin-left: 6px; }
.brand .brand-moment { color: var(--clay); font-style: italic; margin-left: 7px; font-weight: 500; }

/* collection glyphs in the nav */
.nav-links a .nav-i { width: 15px; height: 15px; vertical-align: -2.5px; margin-right: 5px; }
.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); padding: 6px 2px; border-bottom: 2px solid transparent; transition: all 0.18s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--clay); }
.nav-spacer { flex: 1; }
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); transition: all 0.18s; }
.cart-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--clay); color: #fff; border-radius: 999px;
  font-size: 11px; font-weight: 600; line-height: 18px; text-align: center;
}
.nav-toggle { display: none; border: 1px solid var(--line-strong); background: var(--surface); border-radius: 10px; width: 40px; height: 40px; align-items: center; justify-content: center; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; border: none;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  background: var(--ink); color: #fff;
  transition: all 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #000; }
.btn:active { transform: translateY(0); }
.btn-clay { background: var(--clay); }
.btn-clay:hover { background: var(--clay-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); box-shadow: none; background: var(--surface); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

/* ---------------- Hero ---------------- */
.hero { padding: 72px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-size: 58px; margin: 20px 0 22px; }
.hero h1 .accent { color: var(--clay); font-style: italic; }
.hero .lede { font-size: 18.5px; color: var(--ink-soft); max-width: 480px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { color: var(--sage); }

.hero-visual { position: relative; }
.hero-visual > img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.hero-card {
  position: absolute; left: -34px; bottom: 36px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg); max-width: 250px;
}
.hero-card .hc-eyebrow { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.hero-card .hc-title { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.hero-card .hc-quote { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; }
.hero-card .hc-years { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.08em; }

/* ---------------- Collection cards ---------------- */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.coll-card {
  position: relative; border-radius: 18px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  transition: all 0.25s ease; display: block;
}
.coll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coll-card img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.coll-card:hover img { transform: scale(1.035); }
.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,34,30,0) 34%, rgba(38,34,30,0.72) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; color: #fff;
}
.coll-overlay .coll-emoji { font-size: 21px; margin-bottom: 6px; }
.coll-overlay h3 { font-size: 30px; color: #fff; }
.coll-overlay .coll-quote { font-family: var(--serif); font-style: italic; font-size: 15.5px; opacity: 0.92; margin: 4px 0 12px; }
.coll-overlay .coll-cta { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 7px; }

/* ---------------- Steps ---------------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
}
.step-num {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--clay-tint); color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 16px;
}
.step h3 { font-size: 21px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------------- Before / After ---------------- */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: end; }
.ba { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.ba img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.ba .ba-label { padding: 14px 20px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.ba.after .ba-label { color: var(--clay); }
.ba-note { margin-top: 34px; text-align: center; font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--ink-soft); }
.ba-note strong { color: var(--ink); font-style: normal; }

/* ---------------- Product cards & grid ---------------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; display: block;
  transition: all 0.22s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-card .pc-imgwrap { position: relative; overflow: hidden; }
.prod-card img { aspect-ratio: 4/4.3; object-fit: cover; width: 100%; transition: transform 0.45s ease; }
.prod-card:hover img { transform: scale(1.04); }
.pc-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250, 247, 242, 0.94); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.pc-body { padding: 18px 20px 20px; }
.pc-body h3 { font-family: var(--sans); font-size: 15.5px; font-weight: 600; letter-spacing: 0; }
.pc-price { margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--clay); }
.pc-short { margin-top: 7px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------------- Quote band ---------------- */
.quote-band { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 84px 0; text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-size: 34px; line-height: 1.35; max-width: 780px; margin: 0 auto 18px; font-weight: 500; }
.quote-band blockquote .accent { color: var(--clay); font-style: italic; }
.quote-band .qb-sub { color: var(--muted); font-size: 15px; }

/* ---------------- Memory entry chips (home CTA) ---------------- */
.memory-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.memory-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-strong);
  font-size: 15px; font-weight: 500; transition: all 0.18s;
}
.memory-chip:hover { border-color: var(--clay); color: var(--clay); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------------- Collection page hero ---------------- */
.coll-hero { padding: 64px 0 40px; }
.coll-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.coll-hero h1 { font-size: 48px; margin: 16px 0 12px; }
.coll-hero .coll-quote-lg { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--clay); margin-bottom: 16px; }
.coll-hero p.lede { color: var(--ink-soft); font-size: 17px; max-width: 460px; }
.coll-hero img { border-radius: 18px; box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }

/* ---------------- PDP ---------------- */
.crumbs { font-size: 13px; color: var(--muted); margin: 26px 0 30px; }
.crumbs a:hover { color: var(--clay); }
.pdp-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: start; }

/* ---------- PDP "complete the set" strip ---------- */
.also-band { margin-top: 84px; padding-top: 56px; border-top: 1px solid var(--line); }
.also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.also-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; transition: transform 0.18s, box-shadow 0.18s; }
.also-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(74,68,62,0.12); }
.also-thumb svg { width: 100%; display: block; border-radius: 8px; }
/* the sibling previews re-render as the shopper types — fade the swap so it
   reads as "your memory appearing", not as a flicker */
.also-thumb svg.pmm-mock { animation: alsoSwap 320ms ease; }
@keyframes alsoSwap { from { opacity: 0.55; } to { opacity: 1; } }
.also-name { font-family: var(--serif); font-weight: 600; font-size: 15.5px; margin-top: 10px; color: var(--ink); }
.also-meta { font-size: 13px; color: var(--clay); margin-top: 3px; font-weight: 600; }
.also-meta span { color: var(--ink-soft); font-weight: 500; }

.preview-stage {
  position: sticky; top: 92px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px; box-shadow: var(--shadow-sm);
}
.frame-mock {
  background: #efe9df; border-radius: 6px; padding: 16px;
  box-shadow: var(--shadow-md);
}
.frame-inner { background: #fff; padding: 26px 26px 20px; box-shadow: inset 0 0 0 1px rgba(38,34,30,0.05); }
.frame-photo { aspect-ratio: 4/4.4; background: var(--cream); overflow: hidden; display: flex; }
.frame-photo img { width: 100%; height: 100%; object-fit: cover; }
.frame-photo .ph-empty { display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; width: 100%; color: var(--muted); font-size: 13px; }
.frame-text { text-align: center; margin-top: 18px; min-height: 64px; }
.frame-text .ft-name { font-family: var(--serif); font-size: 27px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.frame-text .ft-message { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--ink-soft); margin-top: 4px; }
.frame-text .ft-date { font-size: 12px; letter-spacing: 0.22em; color: var(--muted); margin-top: 7px; }
.preview-hint { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--muted); }

.pdp-info .pdp-type { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.pdp-info h1 { font-size: 40px; margin: 10px 0 10px; }
.pdp-price { font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pdp-price small { font-size: 13px; color: var(--muted); font-weight: 400; }
.pdp-short { color: var(--ink-soft); margin-bottom: 30px; }

.personalize { border-top: 1px solid var(--line); padding-top: 26px; display: grid; gap: 20px; }
.personalize h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field label .opt { color: var(--muted); font-weight: 400; }
.input, textarea.input, select.input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); font-family: inherit; font-size: 14.5px; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px var(--clay-tint); }
textarea.input { resize: vertical; min-height: 74px; }

.dropzone {
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-sm);
  padding: 22px; text-align: center; color: var(--muted);
  background: var(--cream); transition: all 0.18s; cursor: pointer;
  display: flex; gap: 14px; align-items: center; justify-content: center;
  font-size: 14px;
}
.dropzone:hover, .dropzone.drag { border-color: var(--clay); color: var(--clay); background: var(--clay-tint); }
.dz-thumb { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line-strong); }
.dz-hasfile { border-style: solid; border-color: var(--sage); background: var(--sage-tint); color: var(--ink-soft); }

.style-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--surface); font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  transition: all 0.15s;
}
.chip:hover { border-color: var(--ink); }
.chip.selected { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp-ctas { margin-top: 8px; display: grid; gap: 12px; }
.pdp-assure { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-size: 12.5px; color: var(--muted); }
.pdp-assure span { display: inline-flex; align-items: center; gap: 6px; }

.accordion { margin-top: 34px; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 2px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.acc-head .acc-arrow { transition: transform 0.2s; color: var(--muted); }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 2px 18px; font-size: 14px; color: var(--muted); }
.acc-item.open .acc-body { display: block; }
.acc-body ul { padding-left: 18px; display: grid; gap: 6px; }

/* ---------------- Cart ---------------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.cart-list { display: grid; gap: 18px; }
.cart-item {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; align-items: center;
}
.cart-item img { width: 108px; height: 108px; object-fit: cover; border-radius: 10px; }
.ci-name { font-weight: 600; font-size: 15px; }
.ci-opts { font-size: 12.5px; color: var(--muted); margin-top: 4px; display: grid; gap: 2px; }
.ci-price { font-weight: 600; color: var(--ink); }
.ci-remove { background: none; border: none; color: var(--muted); font-size: 12.5px; text-decoration: underline; margin-top: 8px; padding: 0; }
.ci-remove:hover { color: var(--clay); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.qty button { width: 30px; height: 30px; border: none; background: var(--surface); font-size: 15px; color: var(--ink-soft); }
.qty button:hover { background: var(--cream); }
.qty .qty-num { min-width: 30px; text-align: center; font-size: 14px; font-weight: 600; }
.ci-right { text-align: right; display: grid; gap: 8px; justify-items: end; }

.summary-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  position: sticky; top: 92px;
}
.summary-card h3 { font-family: var(--sans); font-size: 16px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); padding: 7px 0; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 15px; font-size: 17px; font-weight: 700; color: var(--ink); }
.sum-note { font-size: 12.5px; color: var(--muted); margin: 12px 0 18px; }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart .ec-icon { font-size: 44px; margin-bottom: 14px; }
.empty-cart h2 { font-size: 30px; margin-bottom: 10px; }
.empty-cart p { color: var(--muted); margin-bottom: 26px; }

/* ---------------- Checkout ---------------- */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.form-card + .form-card { margin-top: 20px; }
.form-card h3 { font-family: var(--sans); font-size: 15.5px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.form-card h3 .step-dot { width: 24px; height: 24px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.sum-items { display: grid; gap: 12px; margin-bottom: 16px; }
.sum-item { display: flex; gap: 12px; align-items: center; font-size: 13.5px; }
.sum-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.sum-item .si-name { font-weight: 600; }
.sum-item .si-sub { color: var(--muted); font-size: 12px; }
.pay-methods { display: grid; gap: 10px; }
.pay-option { display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 14px 16px; cursor: pointer; transition: all 0.15s; }
.pay-option:hover { border-color: var(--ink); }
.pay-option input { margin-top: 3px; accent-color: var(--clay); }
.pay-option .po-title { font-weight: 600; font-size: 14px; }
.pay-option .po-desc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.place-order { margin-top: 22px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ---------------- Order confirm ---------------- */
.confirm-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 72px 0 96px; }
.confirm-check { width: 74px; height: 74px; border-radius: 999px; background: var(--sage-tint); color: var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.confirm-wrap h1 { font-size: 42px; margin-bottom: 12px; }
.order-no-pill { display: inline-block; background: var(--cream); border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 20px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 26px; }
.confirm-steps { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 34px; display: grid; gap: 0; }
.confirm-step { display: flex; gap: 16px; padding: 14px 0; }
.confirm-step + .confirm-step { border-top: 1px dashed var(--line); }
.cs-icon { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 999px; background: var(--clay-tint); color: var(--clay); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.confirm-step h4 { font-size: 14.5px; font-family: var(--sans); }
.confirm-step p { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------------- About / FAQ ---------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid img { border-radius: 18px; box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.belief-band { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 72px 0; text-align: center; }
.belief-band p { font-family: var(--serif); font-size: 30px; max-width: 720px; margin: 0 auto; line-height: 1.4; }
.faq-list { max-width: 720px; margin: 0 auto; }

/* ---------------- Admin ---------------- */
.admin-wrap { max-width: 1080px; margin: 0 auto; padding: 48px 24px 96px; }
.admin-gate { max-width: 420px; margin: 64px auto; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.admin-gate h1 { font-size: 30px; margin-bottom: 8px; }
.admin-gate p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.admin-table th { text-align: left; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--cream); }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.admin-table tr:last-child td { border-bottom: none; }
.status-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; }
.status-pending_payment { background: var(--clay-tint); color: var(--clay-dark); }
.status-paid { background: var(--sage-tint); color: var(--sage); }
.status-in_production { background: #e8ecf6; color: #4a5d92; }
.status-shipped { background: #f1e9f7; color: #7a5a99; }
.order-detail { margin-top: 26px; }
.od-items { display: grid; gap: 14px; }
.od-item { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.od-item img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); }

/* ---------------- Footer ---------------- */
.site-footer { background: #211d19; color: #cfc7bc; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding: 64px 0 44px; }
.footer-brand .brand { color: #fff; font-size: 24px; }
.footer-brand .brand .brand-pin { color: #fff; }
.footer-brand .brand .brand-my { color: #e2987a; }
.footer-brand .brand .brand-moment { color: #e2987a; }
.footer-brand p { font-size: 13.5px; color: #a39a8e; margin-top: 14px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans); }
.footer-col a { display: block; font-size: 14px; color: #a39a8e; padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-base { border-top: 1px solid #3a342e; padding: 20px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #857c72; }
.footer-base a { color: #857c72; text-decoration: underline; }
.footer-base a:hover { color: #cfc7bc; }

/* ---------------- Toast & misc ---------------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: all 0.25s ease; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.page-head { padding: 56px 0 8px; }
.page-head h1 { font-size: 44px; margin: 10px 0 8px; }
.page-head p { color: var(--muted); max-width: 560px; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Header actions (account + cart) ---------------- */
.nav-actions { display: flex; gap: 10px; align-items: center; }
.acct-avatar {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--clay); color: #fff;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------------- SVG mockups ---------------- */
.pc-imgwrap-mock { background: var(--cream); }
.pc-imgwrap-mock svg, .mock-stage svg, .ci-mock svg, .si-thumb svg, .od-thumb svg, .ord-thumb svg {
  width: 100%; height: auto; display: block;
}
.pc-imgwrap-mock svg { aspect-ratio: 1 / 1; }
.ci-mock { width: 108px; flex: 0 0 auto; border-radius: 10px; overflow: hidden; background: var(--cream); }
.cart-item { grid-template-columns: 108px 1fr auto; }
.si-thumb { width: 52px; flex: 0 0 auto; border-radius: 8px; overflow: hidden; background: var(--cream); }
.sum-item { display: flex; gap: 12px; align-items: center; font-size: 13.5px; }
.od-thumb { width: 84px; flex: 0 0 auto; border-radius: 8px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.ord-thumb { width: 96px; flex: 0 0 auto; border-radius: 8px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }

/* ---------------- AI design assistant ---------------- */
.ai-panel {
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #fdfaf4 0%, #f7efe2 100%);
  padding: 16px 18px; display: grid; gap: 11px;
}
.ai-panel h3 { display: flex; align-items: center; gap: 7px; color: var(--clay-dark); }
.ai-panel h3 svg { color: var(--clay); }
.ai-beta {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--clay); color: #fff; border-radius: 999px; padding: 2px 8px;
}
.ai-sub { font-size: 12.5px; color: var(--muted); margin: -4px 0 0; }
.ai-quick { display: flex; flex-wrap: wrap; gap: 7px; }
.ai-quick .chip { padding: 7px 13px; font-size: 12.5px; }
.ai-row { display: flex; gap: 9px; }
.ai-row .input { flex: 1; }
.ai-foot { display: flex; align-items: center; gap: 14px; }
.ai-link {
  background: none; border: none; padding: 0; font-size: 12.5px;
  color: var(--muted); text-decoration: underline;
}
.ai-link:hover:not([disabled]) { color: var(--clay); }
.ai-link[disabled] { opacity: 0.45; cursor: default; text-decoration: none; }
.ai-status { font-size: 12.5px; color: var(--sage); margin-left: auto; text-align: right; }

/* ---------------- Account page ---------------- */
.acct-wrap { max-width: 460px; margin: 56px auto 0; }
.acct-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 34px 26px; box-shadow: var(--shadow-md);
}
.acct-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.acct-brand h1 { font-size: 30px; }
.acct-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  background: var(--cream); border-radius: 999px; padding: 4px; margin-bottom: 22px;
}
.acct-tab {
  border: none; background: transparent; border-radius: 999px;
  padding: 9px 6px; font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all 0.15s;
}
.acct-tab.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.acct-lead { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.acct-card .btn { margin-top: 6px; }
.acct-alt { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }
.acct-alt a { color: var(--clay); text-decoration: underline; }
.acct-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 20px; border-top: 1px dashed var(--line); padding-top: 14px; }
.form-msg { font-size: 13px; color: var(--clay-dark); margin-top: 14px; text-align: center; }
.form-msg.ok { color: var(--sage); }

.dash-head {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin: 52px 0 30px;
}
.dash-id { display: flex; align-items: center; gap: 18px; }
.dash-id h1 { font-size: 36px; }
.dash-id p { color: var(--muted); font-size: 13.5px; }
.acct-avatar-lg { width: 58px; height: 58px; font-size: 26px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 24px; align-items: start; }
.dash-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.dash-card h3 { font-family: var(--sans); font-size: 16px; margin-bottom: 16px; }
.dash-card section + section, .dash-grid section { margin-bottom: 0; }
.dash-grid .dash-card:nth-child(3) { grid-column: 1 / -1; }
.dash-muted { color: var(--muted); font-size: 13.5px; }
.emoji-row { display: flex; gap: 8px; flex-wrap: wrap; }
.emoji-btn {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--surface); font-size: 18px; transition: all 0.14s;
}
.emoji-btn:hover { border-color: var(--clay); }
.emoji-btn.on { background: var(--clay-tint); border-color: var(--clay); }
.pass-row { display: grid; gap: 10px; }

.ord { border-bottom: 1px solid var(--line); }
.ord:last-child { border-bottom: none; }
.ord summary {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  padding: 13px 2px; list-style: none;
}
.ord summary::-webkit-details-marker { display: none; }
.ord-no { font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em; flex: 1; }
.ord-total { font-weight: 600; font-size: 13.5px; }
.ord-body { padding: 0 2px 18px; }
.ord-items { display: grid; gap: 12px; margin-top: 10px; }
.ord-item { display: flex; gap: 14px; align-items: center; }
.ord-item-name { font-weight: 600; font-size: 13.5px; }

.mem-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; margin-top: 14px; }
.mem-card {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--cream);
}
.mem-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mem-empty {
  width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.mem-cap { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 11px; background: var(--surface); }
.mem-title { font-size: 12.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mem-del { border: none; background: none; color: var(--muted); font-size: 13px; padding: 0 2px; }
.mem-del:hover { color: var(--clay); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1020px) {
  .hero h1 { font-size: 46px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 60px; }
  .hero-grid, .coll-hero-grid, .pdp-grid, .cart-layout, .checkout-layout, .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .preview-stage { position: static; }
  .summary-card { position: static; }
  .ba-wrap { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr; }
  .coll-card img { aspect-ratio: 4/3.2; }
  .hero-card { left: 12px; bottom: 14px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 24px 16px;
  }
  .nav-links a { padding: 12px 2px; border-bottom: none; font-size: 16px; }
  .nav-open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .quote-band blockquote { font-size: 26px; }
  .page-head h1 { font-size: 34px; }
  .dash-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 84px 1fr; }
  .ci-mock { width: 84px; }
  .ci-right { grid-column: 1 / -1; justify-items: start; text-align: left; }
  .hero h1 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ai-row { flex-direction: column; }
  .ai-status { margin-left: 0; text-align: left; }
  .acct-card { padding: 26px 20px 20px; }
  .acct-brand h1 { font-size: 25px; }
  .also-grid { grid-template-columns: 1fr; }
}
