/* ===========================================================
   NM JEWELS — Design tokens
   Display: Fraunces (engraved, high-contrast serif, used in italic)
   Body:    Manrope (quiet geometric sans)
   Utility: Space Mono (hallmark / stamp labels, small caps, tracked)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* Cylburn — script/calligraphy face by Dai Foldes, not on Google Fonts.
   NOTE FOR NM JEWELS: this loads from a third-party font mirror, not an
   official source — fine for previewing, but please verify licensing
   terms (or self-host a properly licensed copy) before using this on a
   live commercial site. */
@font-face{
  font-family: 'Cylburn';
  src: url('https://db.onlinewebfonts.com/t/cfc7f01a5298915d63bd96dffb9c215f.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/cfc7f01a5298915d63bd96dffb9c215f.woff') format('woff'),
       url('https://db.onlinewebfonts.com/t/cfc7f01a5298915d63bd96dffb9c215f.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root{
  --ink:        #fbefe7;   /* light blush background — softer, not rusty */
  --ink-soft:   #f6ddce;   /* lighter blush surface / hover */
  --ink-line:   #efd4c2;
  --parchment:  #33211b;   /* warm near-black text, rose cast */
  --parchment-dim: #9c7a6e; /* dusty rose-brown muted text */
  --brass:      #a9814f;   /* antique gold — a supporting accent, not primary */
  --brass-light:#7c5a34;
  --rose:       #b15c4e;   /* primary accent — buttons, links, active states */
  --rose-light: #c97b6e;
  --garnet:     #b15c4e;   /* alias kept for existing references */
  --garnet-light:#c97b6e;
  --blush:      #f1c7b6;   /* soft pink — backgrounds, tags, washes */
  --sage:       #9ca089;   /* muted sage-green accent, used sparingly */
  --line:       rgba(110,65,40,0.10);
  --line-strong:rgba(110,65,40,0.20);
  --surface:    #fffaf5;   /* card surface — near-white with a soft warm tint */
  --shadow:     0 18px 40px -20px rgba(150,90,60,0.2);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--ink);
  color: var(--parchment);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before{
  content:'';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('nm-jewels-watermark.png');
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: min(58vw, 760px);
}
.site-header, main, section, footer, .hero, .page-intro, .cta-band, .hallmarks{
  position: relative;
  z-index: 1;
}

img, svg{ display:block; max-width:100%; }

a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:500;
  line-height:1.08;
  margin:0;
  letter-spacing:-0.01em;
}

.italic{ font-style: italic; font-weight:400; }

p{ margin:0; }

::selection{ background: var(--rose); color: #fff; }

:focus-visible{
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid var(--rose);
  cursor:pointer;
  background:transparent;
  color: var(--parchment);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover{ background: var(--rose); color: #fff; }
.btn-solid{ background: var(--rose); color: #fff; }
.btn-solid:hover{ background: var(--rose-light); border-color: var(--rose-light); }
.btn-ghost{ border-color: var(--line-strong); }
.btn-ghost:hover{ background: var(--parchment); border-color: var(--parchment); color: var(--ink); }
.btn svg{ width:14px; height:14px; }

/* ---------- Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(251,239,231,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled{ border-bottom-color: var(--line); box-shadow: 0 8px 24px -18px rgba(150,90,60,0.22); }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.logo{
  font-size: 20px;
  display:flex; align-items:center; gap:10px;
}
.logo .mark{ color: var(--brass); }
.logo .full{
  display:inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}
.logo .full-nm{
  font-family: "HelveticaNeue-Thin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 24px;
  letter-spacing: 0.06em;
}
.logo .full-jewels{
  font-family: 'Cylburn', 'Times New Roman', Times, cursive, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--parchment);
}
.logo-icon{ height: 52px; width:auto; flex:none; }
.footer-brand .footer-logo{ margin-bottom: 6px; }
.footer-brand .footer-logo .logo-icon{ height: 72px; }
.footer-brand .footer-logo .full-nm{ font-size: 34px; }
.footer-brand .footer-logo .full-jewels{ font-size: 38px; }

.nav-links{
  display:flex; align-items:center; gap: 40px;
  font-family:'Space Mono', monospace;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a{
  position:relative;
  padding: 4px 0;
  color: var(--parchment-dim);
  transition: color .25s var(--ease);
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background: var(--rose);
  transform: scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color: var(--parchment); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform: scaleX(1); }

.nav-cta{ display:flex; align-items:center; gap:22px; }

.menu-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 30px; height: 20px; position:relative;
  padding:0;
}
.menu-toggle span{
  position:absolute; left:0; right:0; height:1px; background: var(--parchment);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.menu-toggle span:nth-child(1){ top:0; }
.menu-toggle span:nth-child(2){ top:9px; }
.menu-toggle span:nth-child(3){ top:18px; }
.menu-toggle.open span:nth-child(1){ top:9px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ top:9px; transform: rotate(-45deg); }

.mobile-panel{
  display:none;
  position:fixed; inset:0; top:73px;
  background: rgba(251,239,231,0.98);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  box-shadow: 0 20px 50px -20px rgba(90,55,35,0.35);
  z-index:99;
  padding: 40px var(--gutter);
  flex-direction:column;
  gap: 26px;
  font-family:'Fraunces', serif;
  font-size: 30px;
  overflow-y: auto;
}
.mobile-panel.open{ display:flex; }
.mobile-panel a{ color: var(--parchment); font-weight:600; border-bottom:1px solid var(--line-strong); padding-bottom:16px; }

@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-cta .btn{ display:none; }
  .menu-toggle{ display:block; margin-left:10px; }
  .nav{ justify-content:flex-start; }
  .nav-cta{ gap:8px; margin-left:auto; }
  .search-toggle, .wishlist-toggle, .cart-toggle{ padding:6px 3px; }
}

/* ---------- Hallmark strip (signature motif) ---------- */
.hallmarks{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246,221,206,0.5), transparent);
}
.hallmarks .wrap{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}
.hallmark{
  padding: 26px 20px;
  display:flex; align-items:center; gap:14px;
  border-left: 1px solid var(--line);
}
.hallmark:first-child{ border-left:none; }
.stamp{
  flex:none;
  width:38px; height:38px;
  border:1px solid var(--brass);
  background: var(--surface);
  border-radius: 3px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Space Mono', monospace;
  font-size: 10px;
  color: var(--brass-light);
  letter-spacing:0.02em;
}
.hallmark-text{ font-size: 12.5px; color: var(--parchment-dim); line-height:1.4; }
.hallmark-text b{ color: var(--parchment); font-weight:600; display:block; font-size:12.5px;}

@media (max-width: 860px){
  .hallmarks .wrap{ grid-template-columns: repeat(2,1fr); }
  .hallmark{ border-left:none; border-top:1px solid var(--line); }
  .hallmark:nth-child(1), .hallmark:nth-child(2){ border-top:none; }
  .hallmark:nth-child(odd){ border-left:none; }
}

@media (max-width: 560px){
  .hallmarks .wrap{ grid-template-columns: repeat(4,1fr); }
  .hallmark{
    flex-direction: column; align-items: center; text-align: center;
    gap: 6px; padding: 14px 6px;
    border-top: none;
  }
  .hallmark:nth-child(1), .hallmark:nth-child(2){ border-top: none; }
  .hallmark:nth-child(odd){ border-left: none; }
  .hallmark:not(:first-child){ border-left: 1px solid var(--line); }
  .stamp{ width:26px; height:26px; font-size:8px; }
  .hallmark-text{ font-size:9px; line-height:1.25; }
  .hallmark-text b{ font-size:9.5px; margin-bottom:1px; }
}

/* ---------- Section rhythm ---------- */
section{ padding: 110px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom: 60px;
}
.section-head h2{ font-size: clamp(30px, 4vw, 46px); max-width: 620px; }
.section-head .note{ max-width: 320px; color: var(--parchment-dim); font-size:14.5px; text-align:right; }
@media (max-width: 720px){
  .section-head{ flex-direction:column; align-items:flex-start; }
  .section-head .note{ text-align:left; }
  section{ padding: 74px 0; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero-photo{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.05) sepia(0.08) contrast(1.02);
}
.hero-art{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(246,221,206,0.35), transparent 60%),
    linear-gradient(180deg, rgba(51,33,27,0.1) 0%, rgba(35,20,16,0.58) 78%, rgba(35,20,16,0.8) 100%);
}
/* shimmer sweep — a soft diagonal band of light drifting across the hero, standing in for video motion */
.hero-shimmer{
  position:absolute; inset:0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,244,222,0.35) 50%, transparent 60%);
  background-size: 250% 250%;
  mix-blend-mode: overlay;
  animation: shimmerSweep 9s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shimmerSweep{
  0%   { background-position: 120% 30%; }
  50%  { background-position: -20% 70%; }
  100% { background-position: 120% 30%; }
}
/* drifting sparkle dots */
.sparkle{
  position:absolute; border-radius:50%;
  background: radial-gradient(circle, rgba(255,241,214,0.95), rgba(255,241,214,0) 70%);
  pointer-events:none;
  animation: sparkleFloat 6s ease-in-out infinite;
}
@keyframes sparkleFloat{
  0%,100%{ transform: translateY(0) scale(0.8); opacity:0.25; }
  50%    { transform: translateY(-14px) scale(1.15); opacity:0.9; }
}
.hero-content{
  position:relative;
  padding: 0 var(--gutter) 90px;
  max-width: var(--container);
  margin:0 auto;
  width:100%;
}
.hero h1{
  font-size: clamp(42px, 7vw, 92px);
  max-width: 14ch;
  color: #fdf9ee;
}
.hero .eyebrow{ color: #f0dcac; }
.hero-sub{
  margin-top: 26px;
  max-width: 46ch;
  color: #e8ddc7;
  font-size: 17px;
}
.hero-actions{ margin-top: 44px; display:flex; gap:18px; flex-wrap:wrap; }

.hero-content > *{
  opacity:0; transform: translateY(18px);
  animation: heroRise .9s var(--ease) forwards;
}
.hero .eyebrow{ animation-delay: .1s; }
.hero h1{ animation-delay: .22s; }
.hero-sub{ animation-delay: .38s; }
.hero-actions{ animation-delay: .54s; }
@keyframes heroRise{ to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .hero-shimmer, .sparkle{ animation: none; }
  .hero-content > *{ animation: none; opacity:1; transform:none; }
}

/* ---------- Collection / product grid ---------- */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.grid-loading, .grid-error{
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align:center;
  font-family:'Space Mono',monospace; font-size:13px; letter-spacing:.04em;
  color: var(--parchment-dim);
  background: var(--surface);
}
.grid-error{ color: var(--garnet); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.card{
  background: var(--surface);
  padding: 20px 20px 26px;
  display:flex; flex-direction:column;
  gap: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); z-index:2; }
.card-art{
  aspect-ratio: 4/5;
  display:flex; align-items:center; justify-content:center;
  background: var(--ink-soft);
  border-radius: 3px;
  overflow:hidden;
  position:relative;
}
.card-art img{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(1.05) sepia(0.06);
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.card:hover .card-art img{ transform: scale(1.08); }
.card-tag{
  position:absolute; top:12px; left:12px;
  font-family:'Space Mono',monospace; font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  background: rgba(177,92,78,0.85); border:1px solid transparent; color: #fff;
  padding: 5px 9px; border-radius: 2px;
}
.card h3{ font-size: 21px; }
.card .desc{ color: var(--parchment-dim); font-size: 13.5px; }
.card .meta{
  display:flex; justify-content:space-between; align-items:center;
  font-family:'Space Mono', monospace; font-size: 12px;
  color: var(--brass-light);
  padding-top: 6px; border-top: 1px solid var(--line);
}

@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){
  .grid.cols-3{ grid-template-columns: 1fr; }
  .card{ padding: 12px 12px 16px; gap: 10px; }
  .card h3{ font-size: 15.5px; line-height:1.25; }
  .card .desc{ font-size: 11.5px; }
  .card .meta{ font-size: 10.5px; padding-top: 4px; }
  .card-tag{ font-size: 9px; padding: 4px 7px; top:8px; left:8px; }
  .btn-add{ font-size: 10px; padding: 9px 10px; }
}

/* ---------- Split section ---------- */
.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items:center;
}
.split .art{
  aspect-ratio: 5/6;
  background: var(--ink-soft);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  border-radius: 3px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.split .art svg{ width:52%; }
.split .art img{ width:100%; height:100%; object-fit:cover; filter: saturate(1.05) sepia(0.06); }
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .split.reverse{ direction:ltr; }
}
.kicker{ margin-bottom:18px; }
.split h2{ font-size: clamp(28px, 4vw, 40px); margin-bottom: 22px; }
.split p{ color: var(--parchment-dim); font-size: 15.5px; margin-bottom:16px; }
.split p:last-of-type{ margin-bottom:0; }

/* ---------- Stat / numeral row ---------- */
.stat-row{ display:flex; justify-content:center; gap: var(--gutter); flex-wrap:wrap; margin-top: 50px; }
.stat{ text-align:center; }
.stat b{ display:block; font-family:'Fraunces',serif; font-size: 40px; font-weight:400; color: var(--rose); }
.stat span{ font-size:12px; color:var(--parchment-dim); letter-spacing:.04em; }

/* ---------- Quote ---------- */
.quote{
  text-align:center;
  max-width: 780px;
  margin: 0 auto;
}
.quote p{
  font-family:'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.35;
  color: var(--parchment);
}
.quote cite{
  display:block; margin-top:26px;
  font-family:'Space Mono', monospace;
  font-style:normal; font-size:11.5px;
  letter-spacing:.14em; text-transform:uppercase;
  color: var(--brass-light);
}

/* ---------- CTA band ---------- */
.cta-band{
  background:
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(177,92,78,0.22), transparent 65%),
    linear-gradient(120deg, var(--ink-soft), #f0cbb6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .wrap{
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
}
.cta-band h2{ font-size: clamp(28px,3.6vw,42px); max-width: 520px; }

/* ---------- Footer ---------- */
footer{ padding-top: 80px; }
.footer-top{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{ color: var(--parchment-dim); font-size:14px; margin-top:16px; max-width: 30ch;}
.footer-col h4{
  font-family:'Space Mono', monospace; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--brass-light); margin-bottom:18px; font-weight:700;
}
.footer-col a{ display:block; color: var(--parchment-dim); font-size:14px; margin-bottom:12px; transition:color .25s var(--ease); }
.footer-col a:hover{ color: var(--parchment); }
.newsletter-form{ display:flex; border-bottom: 1px solid var(--line-strong); padding-bottom:10px; margin-top:6px; }
.newsletter-form input{
  background:none; border:none; color:var(--parchment); font-family:'Manrope'; font-size:14px; flex:1; padding:6px 0;
}
.newsletter-form input::placeholder{ color: var(--parchment-dim); }
.newsletter-form button{ background:none; border:none; color: var(--brass-light); cursor:pointer; font-family:'Space Mono'; font-size:12px; letter-spacing:.08em; }
.newsletter-success{
  font-family:'Manrope'; font-size:13.5px; line-height:1.6; color: var(--parchment);
  padding-bottom:10px; margin-top:6px; max-width:230px;
}
.newsletter-success b{ color: var(--rose); font-family:'Space Mono',monospace; letter-spacing:.04em; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 26px 0 40px;
  font-family:'Space Mono', monospace; font-size: 11px; letter-spacing:.06em;
  color: var(--parchment-dim);
  flex-wrap:wrap; gap:14px;
}
@media (max-width: 860px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Filter tabs ---------- */
.filter-tab{
  font-family:'Space Mono', monospace; font-weight:700; font-size: 11.5px; letter-spacing:.1em; text-transform:uppercase;
  background:none; border:1px solid var(--line-strong); color: var(--parchment-dim);
  padding: 10px 18px; border-radius: 2px; cursor:pointer;
  transition: all .25s var(--ease);
}
.filter-tab:hover{ color: var(--parchment); border-color: var(--parchment-dim); }
.filter-tab.active{ background: var(--rose); border-color: var(--rose); color: #fff; }

/* ---------- Filter dropdown ---------- */
.filter-dropdown{ position:relative; display:inline-block; margin-bottom: 50px; }

.filter-toggle{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Space Mono', monospace; font-weight:700; font-size: 12px; letter-spacing:.1em; text-transform:uppercase;
  background: var(--surface); border:1px solid var(--line-strong); color: var(--parchment);
  padding: 13px 20px; border-radius: 2px; cursor:pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.filter-toggle:hover{ border-color: var(--rose); }
.filter-toggle.active{ background: var(--rose); border-color: var(--rose); color:#fff; }
.filter-toggle svg{ width:15px; height:15px; flex:none; }
.filter-toggle .filter-chevron{ transition: transform .25s var(--ease); margin-left:2px; }
.filter-toggle[aria-expanded="true"] .filter-chevron{ transform: rotate(180deg); }
.filter-toggle .filter-count{
  background: rgba(255,255,255,0.25); border-radius: 50%;
  width:18px; height:18px; display:flex; align-items:center; justify-content:center;
  font-size:10px;
}
.filter-toggle:not(.active) .filter-count{ background: var(--rose); color:#fff; }
.filter-toggle .filter-count[hidden]{ display:none; }

.filter-panel{
  position:absolute; top:calc(100% + 10px); left:0;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  z-index: 30;
  opacity:0; transform: translateY(-8px);
  pointer-events:none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  overflow:hidden;
}
.filter-panel.open{ opacity:1; transform:none; pointer-events:auto; }

.filter-panel-header{
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  font-family:'Space Mono', monospace; font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--parchment-dim);
}
.filter-clear{
  background:none; border:none; cursor:pointer;
  font-family:'Space Mono', monospace; font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--rose);
}
.filter-clear:hover{ text-decoration: underline; }

.filter-option{
  display:flex; align-items:center; gap:12px;
  padding: 12px 16px; cursor:pointer;
  transition: background .2s var(--ease);
  font-size: 14px;
}
.filter-option:hover{ background: var(--ink-soft); }
.filter-option input{
  width:16px; height:16px; accent-color: var(--rose); cursor:pointer; flex:none;
}
.filter-option-count{
  margin-left:auto; font-family:'Space Mono', monospace; font-size:11px; color: var(--parchment-dim);
}
@media (max-width: 480px){
  .filter-panel{ width: min(320px, 88vw); }
}

/* ---------- Page intro banner (inner pages) ---------- */
.page-intro{
  padding: 150px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1{ font-size: clamp(38px, 6vw, 68px); max-width: 16ch; }
.page-intro .lede{ margin-top: 22px; max-width: 52ch; color: var(--parchment-dim); font-size:16.5px; }

/* ---------- Forms (contact) ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field{ display:flex; flex-direction:column; gap:10px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--parchment-dim); }
.field input, .field select, .field textarea{
  background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  color: var(--parchment); font-family:'Manrope'; font-size:15px; padding: 12px 2px;
  transition: border-color .25s var(--ease);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--brass); outline:none; }
.field select option{ background: var(--ink); }

/* ---------- Cart toggle (nav) ---------- */
.cart-toggle{
  position:relative;
  background:none; border:none; cursor:pointer;
  padding: 6px; display:flex; align-items:center;
  color: var(--parchment);
}
.cart-toggle svg{ width:22px; height:22px; }
.cart-count{
  position:absolute; top:-2px; right:-4px;
  min-width:16px; height:16px; padding:0 4px;
  border-radius:50%;
  background: var(--garnet); color:#fff;
  font-family:'Space Mono',monospace; font-size:10px;
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}
.cart-count[data-empty="true"]{ display:none; }

/* ---------- Wishlist toggle ---------- */
.wishlist-toggle{
  position:relative;
  background:none; border:none; cursor:pointer;
  padding: 6px; display:flex; align-items:center;
  color: var(--parchment);
}
.wishlist-toggle svg{ width:20px; height:20px; }
.wishlist-toggle.has-items svg{ fill: var(--rose); stroke: var(--rose); }
.wishlist-count{
  position:absolute; top:-2px; right:-4px;
  min-width:16px; height:16px; padding:0 4px;
  border-radius:50%;
  background: var(--garnet); color:#fff;
  font-family:'Space Mono',monospace; font-size:10px;
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}
.wishlist-count[data-empty="true"]{ display:none; }

/* ---------- Wishlist overlay + drawer ---------- */
.wishlist-overlay{
  position:fixed; inset:0; background: rgba(30,24,14,0.4);
  opacity:0; pointer-events:none; transition: opacity .35s var(--ease);
  z-index: 200;
}
.wishlist-overlay.open{ opacity:1; pointer-events:auto; }

.wishlist-drawer{
  position:fixed; top:0; right:0; height:100%;
  width: min(420px, 100vw);
  background: var(--surface);
  box-shadow: -20px 0 50px -20px rgba(40,30,15,0.35);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 201;
  display:flex; flex-direction:column;
}
.wishlist-drawer.open{ transform: translateX(0); }

.wishlist-items{ flex:1; overflow-y:auto; padding: 10px 26px 26px; }
.wishlist-empty{ padding: 60px 0; text-align:center; color: var(--parchment-dim); font-size:14.5px; }

.wishlist-item{
  display:grid; grid-template-columns: 66px 1fr auto;
  gap:14px; padding: 18px 0; border-bottom:1px solid var(--line);
  align-items:center;
}
.wishlist-item img{ width:66px; height:82px; object-fit:cover; border-radius:2px; }
.wishlist-item-info h4{ font-family:'Fraunces',serif; font-weight:500; font-size:15.5px; margin-bottom:4px; }
.wishlist-item-cat{ font-family:'Space Mono',monospace; font-weight:700; font-size:10px; letter-spacing:.08em; text-transform:uppercase; color: var(--brass-light); }
.wishlist-item-price{ font-family:'Space Mono',monospace; font-weight:700; font-size:13.5px; margin-top:6px; }
.wishlist-item-actions{ display:flex; flex-direction:column; gap:8px; align-items:flex-end; }
.wishlist-item-actions button{
  background:none; border:none; cursor:pointer; font-family:'Space Mono',monospace; font-size:11px;
  letter-spacing:.04em; white-space:nowrap;
}
.wishlist-add-btn{ color: var(--rose); }
.wishlist-add-btn:hover{ text-decoration:underline; }
.wishlist-remove-btn{ color: var(--parchment-dim); }
.wishlist-remove-btn:hover{ color: var(--garnet); }

/* ---------- Heart / save button on product cards ---------- */
.card-heart{
  position:absolute; top:10px; right:10px; z-index:5;
  width:32px; height:32px; border-radius:50%;
  background: rgba(255,250,245,0.85); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: transform .2s var(--ease);
}
.card-heart:hover{ transform: scale(1.1); }
.card-heart svg{ width:16px; height:16px; stroke: var(--parchment); fill:none; stroke-width:2.2; }
.card-heart.saved svg{ fill: var(--rose); stroke: var(--rose); }

/* ---------- Cart upsell ---------- */
.cart-upsell{ padding: 0 26px 18px; border-top:1px solid var(--line); }
.cart-upsell:empty{ display:none; padding:0; border-top:none; }
.cart-upsell-label{
  font-family:'Space Mono',monospace; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--parchment-dim); margin: 16px 0 12px;
}
.upsell-item{
  display:grid; grid-template-columns: 50px 1fr auto;
  gap:12px; padding: 10px 0; align-items:center;
}
.upsell-item img{ width:50px; height:62px; object-fit:cover; border-radius:2px; }
.upsell-item-info h5{ font-family:'Fraunces',serif; font-weight:500; font-size:13.5px; }
.upsell-item-info span{ font-family:'Space Mono',monospace; font-size:11px; color: var(--parchment-dim); }
.upsell-add-btn{
  background:none; border:1px solid var(--line-strong); border-radius:2px; cursor:pointer;
  font-family:'Space Mono',monospace; font-size:10px; letter-spacing:.04em; text-transform:uppercase;
  padding:7px 10px; color: var(--parchment); white-space:nowrap;
}
.upsell-add-btn:hover{ border-color: var(--rose); color: var(--rose); }

/* ---------- Cart overlay + drawer ---------- */
.cart-overlay{
  position:fixed; inset:0; background: rgba(30,24,14,0.4);
  opacity:0; pointer-events:none; transition: opacity .35s var(--ease);
  z-index: 200;
}
.cart-overlay.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; height:100%;
  width: min(420px, 100vw);
  background: var(--surface);
  box-shadow: -20px 0 50px -20px rgba(40,30,15,0.35);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 201;
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform: translateX(0); }

.cart-header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 26px; border-bottom:1px solid var(--line);
}
.cart-header h3{ font-size:22px; }
.cart-close{
  background:none; border:none; cursor:pointer; font-size:20px;
  color: var(--parchment-dim); line-height:1; padding:4px;
}
.cart-close:hover{ color: var(--parchment); }

.cart-items{
  flex:1; overflow-y:auto; padding: 10px 26px;
}
.cart-empty{
  padding: 60px 0; text-align:center; color: var(--parchment-dim); font-size:14.5px;
}

.cart-item{
  display:grid; grid-template-columns: 66px 1fr auto;
  gap:14px; padding: 18px 0; border-bottom:1px solid var(--line);
  align-items:flex-start;
}
.cart-item img{ width:66px; height:82px; object-fit:cover; border-radius:2px; }
.cart-item-info h4{ font-family:'Fraunces',serif; font-weight:500; font-size:15.5px; margin-bottom:4px; }
.cart-item-cat{ font-family:'Space Mono',monospace; font-weight:700; font-size:10px; letter-spacing:.08em; text-transform:uppercase; color: var(--brass-light); }
.qty-control{
  display:flex; align-items:center; gap:10px; margin-top:12px;
}
.qty-btn{
  width:22px; height:22px; border:1px solid var(--line-strong); background:none; border-radius:2px;
  cursor:pointer; font-family:'Space Mono',monospace; font-size:13px; color: var(--parchment);
  display:flex; align-items:center; justify-content:center; line-height:1;
}
.qty-btn:hover{ border-color: var(--brass); color: var(--brass-light); }
.qty-value{ font-family:'Space Mono',monospace; font-weight:700; font-size:13px; min-width:14px; text-align:center; }
.cart-item-price{ font-family:'Space Mono',monospace; font-weight:700; font-size:13.5px; white-space:nowrap; }
.cart-item-remove{
  grid-column: 3; justify-self:end; margin-top:8px;
  background:none; border:none; cursor:pointer; color: var(--parchment-dim); font-size:13px;
}
.cart-item-remove:hover{ color: var(--garnet); }

.cart-footer{
  padding: 22px 26px 28px; border-top:1px solid var(--line);
}
.cart-subtotal{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:18px; font-family:'Fraunces',serif; font-size:19px;
}
.cart-subtotal span:last-child{ font-family:'Space Mono',monospace; font-weight:700; font-size:16px; color: var(--brass-light); }
.cart-note{ margin-top:14px; font-size:12.5px; font-weight:600; color: var(--parchment-dim); text-align:center; }
.cart-note a{ color: var(--parchment); border-bottom:1px solid var(--line-strong); }

/* ---------- Gift options ---------- */
.gift-toggle-label{
  display:flex; align-items:center; gap:12px; cursor:pointer;
  font-family:'Manrope'; font-size:15px; color: var(--parchment);
  padding: 14px 16px; background: var(--ink-soft); border-radius: 3px;
}
.gift-toggle-label input{ width:17px; height:17px; accent-color: var(--rose); cursor:pointer; }
.gift-options{
  margin-top:14px; padding: 18px; border:1px dashed var(--line-strong); border-radius: 3px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gift-options.open{ opacity: 1; transform: none; }
.gift-wrap-label{
  display:flex; align-items:center; gap:10px; cursor:pointer;
  font-size:13.5px; color: var(--parchment-dim); margin-top:14px;
}
.gift-wrap-label input{ width:15px; height:15px; accent-color: var(--rose); cursor:pointer; }

/* ---------- Payment method selector ---------- */
.pm-label{
  font-family:'Space Mono',monospace; font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--parchment-dim); margin-bottom:10px;
}
.pm-options{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:20px; }
.pm-option{
  font-family:'Space Mono',monospace; font-weight:700; font-size:11.5px; letter-spacing:.04em;
  border:1px solid var(--line-strong); background:none; color: var(--parchment-dim);
  padding: 12px 8px; border-radius:2px; cursor:pointer; text-align:center;
  transition: all .25s var(--ease);
}
.pm-option:hover{ border-color: var(--parchment-dim); color: var(--parchment); }
.pm-option.active{ background: var(--rose); border-color: var(--rose); color:#fff; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px -8px rgba(20,20,20,0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover{ transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(20,20,20,0.5); }
.whatsapp-float svg{ width:28px; height:28px; }
@media (max-width: 560px){
  .whatsapp-float{ right:16px; bottom:16px; width:50px; height:50px; }
  .whatsapp-float svg{ width:25px; height:25px; }
}

/* ---------- Search ---------- */
.search-toggle{
  background:none; border:none; cursor:pointer;
  padding: 6px; display:flex; align-items:center;
  color: var(--parchment);
}
.search-toggle svg{ width:20px; height:20px; }

.search-overlay{
  position:fixed; inset:0; background: rgba(30,20,16,0.45);
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
  z-index: 210;
}
.search-overlay.open{ opacity:1; pointer-events:auto; }

.search-panel{
  position:fixed; top:90px; left:50%;
  transform: translate(-50%, -16px);
  width: min(560px, 92vw);
  max-height: 70vh;
  background: var(--surface);
  border-radius: 4px;
  box-shadow: 0 30px 70px -20px rgba(40,25,15,0.4);
  opacity:0; pointer-events:none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 211;
  display:flex; flex-direction:column;
  overflow:hidden;
}
.search-panel.open{ opacity:1; pointer-events:auto; transform: translate(-50%, 0); }

.search-input-row{
  display:flex; align-items:center; gap:14px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  flex:none;
}
.search-input-row svg{ width:19px; height:19px; color: var(--parchment-dim); flex:none; }
.search-input-row input{
  flex:1; border:none; background:none; outline:none;
  font-family:'Manrope'; font-size:16px; color: var(--parchment);
}
.search-input-row input::placeholder{ color: var(--parchment-dim); }
.search-close{
  background:none; border:none; cursor:pointer; color: var(--parchment-dim); font-size:14px; flex:none;
}
.search-close:hover{ color: var(--parchment); }

.search-results{ overflow-y:auto; padding: 8px 10px; }
.search-result{
  display:flex; align-items:center; gap:14px;
  padding: 10px 12px; border-radius: 3px;
  text-decoration:none; color: inherit;
  transition: background .2s var(--ease);
}
.search-result:hover{ background: var(--ink-soft); }
.search-result img{ width:44px; height:55px; object-fit:cover; border-radius:2px; flex:none; }
.search-result-info h4{ font-family:'Fraunces',serif; font-weight:500; font-size:14.5px; margin-bottom:3px; }
.search-result-info span{ font-family:'Space Mono',monospace; font-size:11px; color: var(--brass-light); text-transform:uppercase; letter-spacing:.06em; }
.search-result-price{ margin-left:auto; font-family:'Space Mono',monospace; font-size:12.5px; color: var(--parchment-dim); flex:none; }

.search-empty, .search-hint{
  padding: 30px 22px; text-align:center; color: var(--parchment-dim); font-size:14px;
}

@media (max-width: 620px){
  .search-panel{ top: 76px; width: 94vw; }
}
.checkout-layout{ display:grid; grid-template-columns: 1.3fr 1fr; gap: var(--gutter); align-items:flex-start; }
.checkout-panel{
  background: var(--surface); border-radius:3px; padding: 34px 30px;
  box-shadow: var(--shadow);
}
.checkout-panel h2{ font-size:22px; margin-bottom:22px; }
.checkout-summary .cart-item{ grid-template-columns: 56px 1fr auto; }
.checkout-summary .cart-item img{ width:56px; height:70px; }
.checkout-subtotal-row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding-top:18px; margin-top:6px;
  font-family:'Fraunces',serif; font-size:19px;
}
.checkout-subtotal-row span:last-child{ font-family:'Space Mono',monospace; font-weight:700; font-size:16px; color: var(--brass-light); }
.checkout-gift-row{ padding-top:10px; margin-top:0; font-size:14px; color: var(--parchment-dim); }
.checkout-gift-row span:last-child{ font-size:13.5px; color: var(--parchment-dim); }
.checkout-total-row{ padding-top:14px; margin-top:6px; border-top:1px solid var(--line-strong); font-size:21px; }
.checkout-total-row span:last-child{ color: var(--rose); font-size:18px; }
.checkout-discount-row{ padding-top:10px; margin-top:0; font-size:14px; color: var(--rose); }
.checkout-discount-row span:last-child{ font-size:13.5px; color: var(--rose); }

.discount-row{ display:flex; gap:10px; margin-top:22px; }
.discount-row input{
  flex:1; font-family:'Manrope'; font-size:14px; color: var(--parchment);
  background: var(--surface); border:1px solid var(--line-strong); border-radius:2px; padding:11px 14px;
}
.discount-row input:focus{ outline:none; border-color: var(--rose); }
.discount-row .btn{ padding: 11px 18px; font-size:12px; }
.discount-message{ margin-top:8px; font-size:12.5px; min-height:16px; }
.discount-message.success{ color: var(--rose); }
.discount-message.error{ color: var(--parchment-dim); }
.checkout-confirm{ display:none; text-align:center; padding: 30px 0; }
.checkout-confirm h3{ font-size:24px; margin-bottom:14px; }
.checkout-confirm p{ color: var(--parchment-dim); font-size:14.5px; max-width:44ch; margin:0 auto; }
.order-ref-box{
  display:inline-flex; flex-direction:column; align-items:center; gap:4px;
  background: var(--ink-soft); border-radius:4px; padding:16px 28px; margin: 4px 0 20px;
}
.order-ref-label{ font-family:'Space Mono',monospace; font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color: var(--parchment-dim); }
.order-ref-code{ font-family:'Space Mono',monospace; font-weight:700; font-size:22px; letter-spacing:.04em; color: var(--rose); }
.order-ref-note{ font-size:12.5px !important; margin-top:10px !important; font-style:italic; }
@media (max-width: 900px){
  .checkout-layout{ grid-template-columns: 1fr; }
}

/* ---------- Add-to-cart button on product cards ---------- */
.btn-add{
  margin-top: 4px;
  width:100%;
  justify-content:center;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 16px;
}
.btn-add[data-added="true"]{ background: var(--brass); color:#fff; border-color: var(--brass); }

@media (max-width: 520px){
  .cart-drawer{ width: 100vw; }
}
.divider{ height:1px; background: var(--line); border:none; margin: 0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; gap: 50px; } }

.badge-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.badge-list span{
  font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  border:1px solid var(--line-strong); padding:8px 14px; border-radius:2px; color: var(--parchment-dim);
}

/* ---------- Splash screen ---------- */
.splash-screen{
  position:fixed; inset:0; z-index:9999;
  background: var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.splash-screen.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.splash-inner{ display:flex; flex-direction:column; align-items:center; gap:26px; }
.splash-icon{ width: clamp(180px, 55vw, 250px); height:auto; overflow:visible; }
.splash-ring-outer, .splash-ring-inner{ stroke-linecap: round; }
.splash-ring-outer{
  stroke-dasharray: 207.35;
  stroke-dashoffset: 207.35;
  animation: splash-draw-outer 1.3s var(--ease) forwards;
}
.splash-ring-inner{
  stroke-dasharray: 167.03;
  stroke-dashoffset: 167.03;
  animation: splash-draw-inner 1.3s var(--ease) forwards;
}
@keyframes splash-draw-outer{ to{ stroke-dashoffset: 0; } }
@keyframes splash-draw-inner{ to{ stroke-dashoffset: 0; } }
.splash-ticks line{ stroke-linecap: round; }
.splash-gem, .splash-icon text{ }
.splash-wordmark{
  display:flex; flex-direction:column; align-items:center; gap:2px;
}
.splash-nm{ font-family:'Manrope'; font-weight:100; font-size:42px; letter-spacing:.08em; color: var(--parchment); }
.splash-jewels{ font-family:'Cylburn','Times New Roman',serif; font-size:51px; color: var(--parchment); }
@keyframes splash-fade-in{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform:none; }
}
body.splash-locked{ overflow:hidden; }

/* ---------- Newsletter promo popup ---------- */
.promo-popup-overlay{
  position:fixed; inset:0; z-index: 500;
  background: rgba(30,20,16,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity:0; pointer-events:none;
  transition: opacity .4s var(--ease);
}
.promo-popup-overlay.open{ opacity:1; pointer-events:auto; }

.promo-popup{
  position:fixed; top:50%; left:50%;
  transform: translate(-50%, -46%);
  width: min(340px, 86vw);
  background: var(--surface);
  border-radius: 6px;
  box-shadow: 0 40px 90px -20px rgba(30,18,10,0.5);
  z-index: 501;
  padding: 36px 30px 30px;
  text-align:center;
  opacity:0; pointer-events:none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.promo-popup.open{ opacity:1; pointer-events:auto; transform: translate(-50%, -50%); }

.promo-popup-close{
  position:absolute; top:14px; right:14px;
  background:none; border:none; cursor:pointer;
  color: var(--parchment-dim); font-size:14px; padding:6px; line-height:1;
}
.promo-popup-close:hover{ color: var(--parchment); }

.promo-popup-icon{ width:44px; height:auto; margin-bottom:14px; }
.promo-popup h3{ font-size:22px; line-height:1.25; margin-bottom:12px; }
.promo-popup p{ font-size:13px; color: var(--parchment-dim); line-height:1.6; max-width:26ch; margin:0 auto 22px; }

.promo-popup-form{ display:flex; flex-direction:column; gap:10px; }
.promo-popup-form input{
  font-family:'Manrope'; font-size:14px; color: var(--parchment);
  background: var(--ink-soft); border:1px solid var(--line-strong); border-radius:3px;
  padding:12px 14px; text-align:center;
}
.promo-popup-form input:focus{ outline:none; border-color: var(--rose); }
.promo-popup-form button{
  font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
  background: var(--rose); color:#fff; border:none; border-radius:3px;
  padding:13px 14px; cursor:pointer; transition: background .2s var(--ease);
}
.promo-popup-form button:hover{ background: var(--rose-light); }

.promo-popup-success{ font-size:14px; color: var(--parchment); line-height:1.6; }
.promo-popup-success p{ max-width:none; margin-bottom:18px; }
.promo-copy-btn{
  font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
  background: var(--rose); color:#fff; border:none; border-radius:3px;
  padding:12px 22px; cursor:pointer; transition: background .2s var(--ease), opacity .2s var(--ease);
}
.promo-copy-btn:hover{ background: var(--rose-light); }
.promo-copy-btn:disabled{ opacity:.7; cursor:default; }
.promo-popup-success b{ color: var(--rose); font-family:'Space Mono',monospace; letter-spacing:.04em; }
