/* ─────────── Page hero (inner pages) ─────────── */
.page-hero{
  background:
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--gold) 18%, transparent) 0%, transparent 60%),
    radial-gradient(60% 70% at 0% 100%, color-mix(in oklab, var(--purple-light) 30%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, #4a2270 0%, #3a1a5a 100%);
  color: var(--text-on-purple);
  padding: clamp(54px, 8vw, 96px) var(--pad-x) clamp(54px, 8vw, 96px);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero-inner{
  max-width: 760px;
  margin: 0 auto;
  position:relative;z-index:1;
}
.page-hero .crumb{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Heebo';font-weight:300;font-size:12px;
  letter-spacing:.18em;
  color: color-mix(in oklab, var(--gold-light) 90%, transparent);
  margin-bottom: 24px;
}
.page-hero .crumb a{color: color-mix(in oklab, var(--text-on-purple) 75%, transparent);transition: color .25s var(--ease)}
.page-hero .crumb a:hover{color:#fff}
.page-hero .crumb .sep{opacity:.5;color:var(--gold-light)}

.page-hero h1{
  font-family:'Frank Ruhl Libre';font-weight:300;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  color:#fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.page-hero h1 em{
  font-family:'Cormorant Garamond';font-style:italic;font-weight:300;
  color: var(--gold-light);
}
.page-hero .sub{
  font-family:'Heebo';font-weight:300;
  font-size: 16px;line-height: 1.7;
  color: color-mix(in oklab, var(--text-on-purple) 78%, transparent);
  max-width: 540px;
  margin: 0 auto;
}
.page-hero .flourish-row{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin: 14px 0 22px;
  color: var(--gold-light);
}
.page-hero .flourish-row .bar{width:34px;height:1px;background:color-mix(in oklab, var(--gold) 60%, transparent)}
.page-hero .flourish-row svg{width:18px;height:18px}

@media (max-width: 640px){
  .page-hero{padding: 28px var(--pad-x) 32px}
  .page-hero .crumb{margin-bottom: 14px;font-size: 11px}
  .page-hero h1{font-size: 30px;margin: 0 0 10px}
  .page-hero .sub{font-size: 14px;line-height: 1.55}
  .page-hero .flourish-row{margin: 8px 0 14px}
}

/* ─────────── Shop ─────────── */
.shop{
  background: var(--lavender-tint);
  padding: clamp(56px, 7vw, 80px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.shop-filter{
  max-width: var(--max);margin: 0 auto 40px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.shop-chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  color: var(--text-on-light);
  padding: 11px 18px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius:999px;
  font-family:'Heebo';font-weight:400;font-size:13.5px;
  letter-spacing:.02em;
  cursor:pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.chip.active{
  background: var(--purple-brand);
  color:#fff;
  border-color: var(--purple-brand);
}
.chip:hover:not(.active){border-color: var(--gold)}
.shop-meta{
  font-family:'Heebo';font-weight:300;font-size:13.5px;
  color: var(--text-muted);
}
.shop-grid{
  max-width: var(--max);margin: 0 auto;
  display:grid;grid-template-columns: repeat(4, 1fr);gap: 28px;
}
@media (max-width: 1100px){.shop-grid{grid-template-columns: repeat(3, 1fr)}}
@media (max-width: 800px){.shop-grid{grid-template-columns: repeat(2, 1fr); gap: 16px}}
/* Phone: tighter padding + smaller gap so cards don't get cut off on either side */
@media (max-width: 640px){
  .shop{padding: 32px 12px 60px}
  .shop-grid{grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0}
}

/* badge on product */
.product{position:relative}
.product-badge{
  position:absolute;
  top: 24px;right: 24px;
  background: var(--gold);
  color: #2a1048;
  font-family:'Heebo';font-weight:500;font-size:11px;
  letter-spacing:.06em;
  padding: 4px 10px;border-radius: 999px;
  z-index: 2;
}

/* ─────────── About page ─────────── */
.about-intro{
  background: var(--lavender-pale);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
}
.about-intro-inner{
  max-width: var(--max);margin: 0 auto;
  display:grid;grid-template-columns: 1fr 1.1fr;gap: 64px;align-items:center;
}
.about-portrait{
  border-radius: 28px;overflow:hidden;
  aspect-ratio: 4/5;
  background: #e7d8f3;
  box-shadow: 0 30px 60px -30px color-mix(in oklab, var(--purple-deep) 35%, transparent);
}
.about-portrait img{width:100%;height:100%;object-fit:cover}
.about-text{
  display:flex;flex-direction:column;align-items:flex-start;
}
.about-text .section-title{margin: 12px 0 26px}
.about-text p{
  font-family:'Heebo';font-weight:300;
  font-size:15.5px;line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 14px;
  max-width: 520px;
}
.about-text .signature{
  font-family:'Cormorant Garamond';font-style:italic;font-weight:400;
  font-size: 24px;color: var(--purple-light);
  margin-top: 18px;
}

.credentials{
  background: var(--lavender-tint);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
}
.credentials-grid{
  max-width: var(--max);margin: 36px auto 0;
  display:grid;grid-template-columns: repeat(3, 1fr);gap: 24px;
}
.cred{
  background:#fff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  text-align:center;
}
.cred-icon{
  width:48px;height:48px;border-radius:50%;
  background: color-mix(in oklab, var(--gold) 14%, transparent);
  color: var(--gold-dark);
  display:inline-flex;align-items:center;justify-content:center;
  margin: 0 auto 16px;
}
.cred-icon svg{width:22px;height:22px;stroke-width:1.4}
.cred h4{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size:18px;margin:0 0 8px;color: var(--text-on-light);
}
.cred p{
  font-family:'Heebo';font-weight:300;font-size:13.5px;line-height:1.65;
  color: var(--text-muted);margin:0;
}

/* ─────────── Treatments ─────────── */
.treatments{
  background: var(--lavender-tint);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
}
.treatments-grid{
  max-width: var(--max);margin: 0 auto;
  display:grid;grid-template-columns: repeat(2, 1fr);gap: 28px;
}
@media (max-width: 800px){.treatments-grid{grid-template-columns: 1fr}}
.treatment{
  background: var(--cream-warm);
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  display:grid;grid-template-columns: 0.9fr 1.1fr;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.treatment:hover{
  transform: translateY(-3px);
  box-shadow: 0 30px 50px -28px color-mix(in oklab, var(--purple-deep) 35%, transparent);
}
.treatment-photo{
  background: #e7d8f3;
  min-height: 260px;
}
.treatment-photo img{width:100%;height:100%;object-fit:cover;display:block}
.treatment-body{
  padding: 30px 28px;display:flex;flex-direction:column;justify-content:center;
}
.treatment-body h3{
  font-family:'Frank Ruhl Libre';font-weight:400;font-size: 22px;
  color: var(--text-on-light);
  margin: 0 0 10px;
}
.treatment-body .meta{
  font-family:'Heebo';font-weight:400;font-size:12.5px;
  letter-spacing:.14em;color: var(--gold-dark);
  margin-bottom: 12px;
}
.treatment-body p{
  font-family:'Heebo';font-weight:300;font-size:14px;line-height:1.75;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.treatment-body .price-line{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  padding-top: 16px;margin-top: 6px;
}
.treatment-body .price-line .price{
  font-family:'Heebo';font-weight:500;font-size:18px;color: var(--gold-dark);
}
.treatment-body .price-line .price .currency{color:var(--gold);font-size:14px}

/* ─────────── Contact ─────────── */
.contact{
  background: var(--lavender-pale);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
}
.contact-grid{
  max-width: var(--max);margin: 0 auto;
  display:grid;grid-template-columns: 1.1fr 1fr;gap: 56px;align-items:flex-start;
}
@media (max-width: 900px){.contact-grid{grid-template-columns: 1fr}}

.contact-card{
  background:#fff;border-radius: 28px;
  padding: 40px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 24px 60px -30px color-mix(in oklab, var(--purple-deep) 30%, transparent);
}
.contact-card h2{
  font-family:'Frank Ruhl Libre';font-weight:400;font-size: 28px;
  color: var(--text-on-light);margin: 0 0 22px;
}
.field{
  display:flex;flex-direction:column;gap: 6px;
  margin-bottom: 18px;
}
.field label{
  font-family:'Heebo';font-weight:400;font-size:12.5px;
  letter-spacing:.1em;color: var(--text-muted);
}
.field input,.field textarea{
  font:inherit;font-size:14.5px;
  background: var(--lavender-tint);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--text-on-light);
  outline:none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-family: 'Heebo';font-weight: 300;
}
.field textarea{min-height: 130px;resize:vertical;font-family:'Heebo'}
.field input:focus,.field textarea:focus{
  border-color: var(--gold);background:#fff;
}
.contact-card .btn-gold{justify-content:center;width:100%}

.contact-info{
  display:flex;flex-direction:column;gap: 18px;
}
.contact-info .eyebrow{margin-bottom: 8px}
.contact-info h3{
  font-family:'Frank Ruhl Libre';font-weight:300;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--text-on-light);
  margin: 0 0 14px;
}
.contact-info .intro{
  font-family:'Heebo';font-weight:300;font-size:15px;line-height:1.75;
  color: var(--text-muted);margin: 0 0 26px;
  max-width: 460px;
}
.contact-row{
  display:flex;align-items:center;gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
}
.contact-row:last-child{border-bottom:0}
.contact-row .ic{
  width:44px;height:44px;border-radius:50%;
  background: color-mix(in oklab, var(--purple-light) 12%, transparent);
  color: var(--purple-light);
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}
.contact-row .ic svg{width:18px;height:18px;stroke-width:1.5}
.contact-row .info-label{
  font-family:'Heebo';font-weight:400;font-size:12px;
  letter-spacing:.14em;color: var(--text-muted);
  display:block;margin-bottom: 2px;
}
.contact-row .info-value{
  font-family:'Heebo';font-weight:300;font-size:15.5px;
  color: var(--text-on-light);
  letter-spacing:.01em;
  unicode-bidi: plaintext;text-align:right;
}
.contact-row .info-value a{transition: color .25s var(--ease)}
.contact-row .info-value a:hover{color: var(--purple-light)}

/* ─────────── 404 ─────────── */
.notfound{
  background: linear-gradient(180deg, var(--lavender-pale), var(--lavender-tint));
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  min-height: 70vh;
  display:flex;align-items:center;justify-content:center;text-align:center;
}
.notfound-inner{max-width: 520px;margin: 0 auto}
.notfound-glyph{
  width: 160px;height: 160px;margin: 0 auto 24px;
  color: var(--purple-light);
}
.notfound h1{
  font-family:'Frank Ruhl Libre';font-weight:300;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 12px;color: var(--text-on-light);
}
.notfound h1 em{
  font-family:'Cormorant Garamond';font-style:italic;font-weight:300;
  color: var(--gold-dark);
}
.notfound p{
  font-family:'Heebo';font-weight:300;font-size:16px;line-height:1.7;
  color: var(--text-muted);margin: 0 0 28px;
}

/* responsive */
@media (max-width: 900px){
  .about-intro-inner{grid-template-columns: 1fr;gap: 36px}
  .credentials-grid{grid-template-columns: 1fr;gap: 16px}
  .treatment{grid-template-columns: 1fr}
}

/* ─────────── Legal / long-form text pages ─────────── */
.legal{
  background: var(--lavender-tint);
  padding: clamp(56px, 7vw, 96px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.legal-inner{
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 5vw, 64px);
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 24px 50px -30px color-mix(in oklab, var(--purple-deep) 25%, transparent);
}
.legal-meta{
  font-family:'Heebo';font-weight:400;font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
}
.legal-inner h2{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text-on-light);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.legal-inner h2:first-of-type{margin-top:0}
.legal-inner h3{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: 18px;
  color: var(--purple-deep);
  margin: 22px 0 10px;
}
.legal-inner p,
.legal-inner li{
  font-family:'Heebo';font-weight:300;
  font-size: 15px;line-height: 1.85;
  color: var(--text-on-light);
  margin: 0 0 10px;
}
.legal-inner ul,
.legal-inner ol{
  padding-inline-start: 22px;
  margin: 0 0 16px;
}
.legal-inner ul li{list-style: disc}
.legal-inner ol li{list-style: decimal}
.legal-inner a{
  color: var(--purple-light);
  border-bottom: 1px solid color-mix(in oklab, var(--purple-light) 35%, transparent);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.legal-inner a:hover{
  color: var(--purple-deep);
  border-bottom-color: var(--purple-deep);
}
.legal-inner strong{font-weight: 500;color: var(--purple-deep)}

/* TOC sidebar (optional, for longer pages) */
.legal-toc{
  background: var(--lavender-pale);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 36px;
}
.legal-toc h4{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: 15px;
  letter-spacing: .04em;
  margin: 0 0 12px;
  color: var(--purple-deep);
}
.legal-toc ol{
  list-style: none;padding: 0;margin: 0;
  display: grid;grid-template-columns: repeat(2, 1fr);gap: 6px 18px;
}
.legal-toc li{margin: 0}
.legal-toc a{
  font-family:'Heebo';font-weight:300;font-size: 13.5px;
  color: var(--text-muted);
  border-bottom: 0;
}
.legal-toc a:hover{color: var(--purple-light)}
@media (max-width: 640px){.legal-toc ol{grid-template-columns: 1fr}}

/* FAQ specific */
.faq-list{
  display:flex;flex-direction:column;gap: 12px;
}
.faq-item{
  background: #fff;
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item:hover{border-color: color-mix(in oklab, var(--gold) 40%, transparent)}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display:flex;align-items:center;justify-content:space-between;gap: 18px;
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: 17px;
  color: var(--text-on-light);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content: "+";
  display:inline-flex;align-items:center;justify-content:center;
  width: 28px;height: 28px;
  flex: 0 0 auto;
  color: var(--purple-light);
  font-family:'Heebo';font-weight: 300;font-size: 22px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--purple-light) 40%, transparent);
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item[open] summary::after{
  content: "−";
  background: var(--purple-light);
  color: #fff;
  border-color: var(--purple-light);
}
.faq-item[open] summary{color: var(--purple-deep)}
.faq-item .faq-body{
  padding: 0 24px 22px;
  font-family:'Heebo';font-weight:300;font-size: 14.5px;line-height: 1.85;
  color: var(--text-muted);
}
:root{
  /* Brand purples — tuned to match the logo (vibrant mid-purple, not near-black) */
  --purple-brand:  #5d2b8f;  /* matches the logo circle */
  --purple-night:  #3d1953;  /* used only where deep contrast is needed */
  --purple-deep:   #4a2273;
  --purple-rich:   #5d2b8f;
  --purple-light:  #7d44b3;  /* accent on light bg */
  --purple-mist:   #b59ad0;

  /* Light backgrounds */
  --lavender-pale: #f5eef8;
  --lavender-soft: #ecdef0;
  --lavender-tint: #faf4fb;
  --cream-warm:    #fdfaf8;
  --pure-white:    #ffffff;

  /* Gold */
  --gold:          #c9a961;
  --gold-light:    #e0c878;
  --gold-dark:     #a8893f;

  /* Sage */
  --sage-accent:   #8a9d7e;
  --sage-soft:     #c0cdb8;

  /* Text */
  --text-on-purple:#faf2ff;
  --text-on-light: #2a1048;
  --text-muted:    #6b5080;
  --text-faint:    #a999b8;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;overflow-x:hidden}  /* prevent horizontal scroll from fixed/transformed overlays */
body{
  font-family:'Heebo', system-ui, sans-serif;
  font-weight:300;
  color:var(--text-on-light);
  background:var(--lavender-tint);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

/* Type utilities */
.eyebrow{
  font-family:'Heebo';font-weight:400;font-size:12px;
  letter-spacing:.28em;
  color:var(--gold-dark);
  display:inline-block;
}
.eyebrow.light{color:var(--gold-light)}
.section-title{
  font-family:'Frank Ruhl Libre';
  font-weight:300;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing:-.005em;
  margin: 14px 0 0;
  color: var(--text-on-light);
  text-wrap: balance;
}
.section-sub{
  font-family:'Heebo';font-weight:300;
  font-size: 16px;line-height:1.7;
  color: var(--text-muted);
  margin: 18px auto 0;
  max-width: 560px;
}

/* Botanical flourish (decorative SVG mark beside titles) */
.flourish{
  display:inline-block;
  color:var(--gold);
  opacity:.7;
  width:34px;height:14px;
}

/* Pill buttons */
.btn-gold{
  display:inline-flex;align-items:center;gap:12px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: #2a1048;
  padding: 15px 28px;
  border-radius: 999px;
  font-family:'Heebo';font-weight:500;font-size:14.5px;
  letter-spacing:.04em;
  box-shadow: 0 10px 26px -14px color-mix(in oklab, var(--gold) 70%, transparent),
              inset 0 1px 0 color-mix(in oklab, #fff 55%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-gold:hover{transform:translateY(-2px)}
.btn-gold svg{width:14px;height:14px;stroke-width:1.5}

.btn-pill-outline{
  display:inline-flex;align-items:center;gap:10px;
  background:#fff;
  color:var(--text-on-light);
  border: 1px solid color-mix(in oklab, var(--gold) 45%, transparent);
  padding: 12px 22px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius:999px;
  font-family:'Heebo';font-weight:400;font-size:13.5px;
  letter-spacing:.02em;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-pill-outline:hover{
  background: color-mix(in oklab, var(--gold) 12%, #fff);
  border-color: var(--gold);
}
.btn-pill-outline svg{width:14px;height:14px;color:var(--gold-dark);stroke-width:1.5}

.btn-purple{
  display:inline-flex;align-items:center;gap:12px;
  background: linear-gradient(180deg, var(--purple-light) 0%, var(--purple-rich) 100%);
  color:#fff;
  padding: 14px 28px;
  border-radius:999px;
  font-family:'Heebo';font-weight:400;font-size:14.5px;
  letter-spacing:.04em;
  box-shadow: 0 10px 24px -14px color-mix(in oklab, var(--purple-light) 80%, transparent);
  transition: transform .3s var(--ease);
}
.btn-purple:hover{transform:translateY(-2px)}
.btn-purple svg{width:14px;height:14px;stroke-width:1.5}

/* ─────────── Header ─────────── */
.site-header{
  position:sticky;top:0;z-index:50;
  background: var(--purple-brand);
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 18%, transparent);
  /* Pad the header itself so the inner content sits below the notch / status-bar.
     Combined with viewport-fit=cover in the meta viewport tag — see HTML. */
  padding-top: env(safe-area-inset-top, 0px);
}
.header-inner{
  max-width: var(--max);
  margin:0 auto;
  padding: 18px var(--pad-x);
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:24px;
  color:var(--text-on-purple);
  min-height: 64px;
}
.header-icons{display:flex;gap:6px;align-items:center;justify-self:end}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color: color-mix(in oklab, var(--text-on-purple) 85%, transparent);
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.icon-btn:hover{background: color-mix(in oklab, var(--gold) 16%, transparent); color: var(--gold-light)}
.icon-btn svg{width:18px;height:18px;stroke-width:1.5}
/* Cart badge for cart anchor */
.icon-btn .cart-badge{
  position: absolute;
  top: 2px; inset-inline-end: 2px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--text-on-light);
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 500; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.main-nav{
  justify-self:center;
  display:flex;gap:38px;align-items:center;
}
.main-nav a{
  font-family:'Heebo';font-weight:400;font-size:14px;
  letter-spacing:.04em;
  color: color-mix(in oklab, var(--text-on-purple) 78%, transparent);
  padding: 8px 2px;
  position:relative;
  transition: color .25s var(--ease);
}
.main-nav a:hover{color:#fff}
.main-nav a.active{color:var(--gold-light)}
.main-nav a.active::after{
  content:""; position:absolute; inset:auto 0 -2px 0; height:1px;
  background: var(--gold);
}

.brand-mark{
  justify-self:start;
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background: #fff;
  overflow:hidden;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.35),
              inset 0 0 0 1px color-mix(in oklab, var(--gold) 30%, transparent);
  transition: transform .3s var(--ease);
}
.brand-mark:hover{transform: scale(1.04)}
.brand-mark img{width:100%;height:100%;object-fit:cover;display:block}

/* ─────────── Hero (full-bleed image on visual-left) ─────────── */
.hero{
  /* warm dusty purple, slight orange-pink glow top, gold radial at bottom */
  background:
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--gold) 22%, transparent) 0%, transparent 60%),
    radial-gradient(60% 70% at 0% 100%, color-mix(in oklab, var(--purple-light) 35%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, #4a2270 0%, #3a1a5a 100%);
  color:var(--text-on-purple);
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.hero::before{display:none}
.hero-inner{
  max-width: none;        /* full-bleed */
  margin: 0;
  padding: 0;
  display:grid;
  grid-template-columns: 1.35fr 1fr;   /* copy gets more room; carousel narrower */
  gap: 0;
  align-items:stretch;
  min-height: 560px;
  position:relative;z-index:1;
}

/* visual-LEFT (end in RTL) = full-bleed photo */
.hero-photo-wrap{
  position:relative;
  align-self:stretch;
  padding:0;
  min-height: 560px;
}
.hero-photo{
  position:absolute;inset:0;
  width:100%;height:100%;
  border-radius:0;
  overflow:hidden;
  box-shadow: none;
  background: #2a1048;
}
/* Soft right-edge fade so the photo blends into the purple */
.hero-photo::after{
  content:"";position:absolute;inset:0 auto 0 0;width:120px;
  /* Right edge in RTL grid (end of image column) = LEFT in DOM terms because grid is reversed.
     Use logical "inset-inline-end" for safety. */
  inset-inline-end: 0; left:auto;
  background: linear-gradient(to right, transparent, #3a1a5a);
  pointer-events:none;
}
.hero-photo img{
  width:100%;height:100%;object-fit:cover;object-position:center 45%;display:block;
  background: #2a1048;
}

/* visual-RIGHT (start in RTL) = copy on purple */
.hero-copy{
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;
  padding: 72px clamp(28px, 5vw, 72px);
  width: 100%;          /* stretch in grid cell — flex container needs explicit width */
  max-width: 640px;
  margin: 0 auto;
  position:relative;z-index:2;
}
.hero-flourish-top{
  width: 44px;height: 44px;color: var(--gold-light);
  margin-bottom: 4px;
  opacity:.95;
}
.hero-flourish-top svg{width:100%;height:100%}
.placeholder-fountain{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 50% 35%, color-mix(in oklab, var(--purple-light) 35%, transparent), transparent 60%),
    radial-gradient(ellipse at 50% 100%, color-mix(in oklab, var(--gold) 22%, transparent), transparent 60%),
    repeating-linear-gradient(45deg,
      color-mix(in oklab, #fff 4%, transparent) 0 2px,
      transparent 2px 14px),
    linear-gradient(180deg, #2a1048, #1c0a2c 70%);
  display:flex;align-items:flex-end;justify-content:center;
  padding:24px;
}
.placeholder-fountain .tag{
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.18em;
  color: color-mix(in oklab, var(--gold-light) 80%, transparent);
  background: color-mix(in oklab, #000 35%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
}


.hero-headline{
  font-family:'Frank Ruhl Libre';
  font-weight:300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing:-.005em;
  margin: 14px 0 0;
  color:#fff;
  text-wrap: balance;
}
.hero-headline em{
  font-family:'Cormorant Garamond';
  font-style:italic;font-weight:300;
  color: var(--gold-light);
  letter-spacing:.01em;
}
.hero-eyebrow-below{
  display:inline-flex;align-items:center;gap:14px;
  font-family:'Heebo';font-weight:400;font-size:14px;
  letter-spacing:.22em;
  color: color-mix(in oklab, var(--gold-light) 90%, transparent);
  margin: 22px 0 0;
}
.hero-eyebrow-below::before,
.hero-eyebrow-below::after{
  content:""; width:28px;height:1px;
  background: color-mix(in oklab, var(--gold) 60%, transparent);
}
.hero-subline{
  font-family:'Heebo';font-weight:300;
  font-size: 16px;line-height:1.75;
  color: color-mix(in oklab, var(--text-on-purple) 78%, transparent);
  margin: 16px 0 32px;
  max-width: 420px;
  display:none; /* keep DNA close to mockup; eyebrow does the supporting work */
}
.hero-usps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin: 28px auto 36px;
  padding: 0;
  list-style: none;
  max-width: 520px;
  width: 100%;
}
.hero-usp{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;
}
.hero-usp-icon{
  width:46px;height:46px;border-radius:50%;
  border: 1px solid color-mix(in oklab, var(--gold) 55%, transparent);
  background: transparent;
  display:inline-flex;align-items:center;justify-content:center;
  color: var(--gold-light);
}
.hero-usp-icon svg{width:18px;height:18px;stroke-width:1.4}
.hero-usp-label{
  font-family:'Heebo';font-weight:300;font-size:11.5px;
  color: color-mix(in oklab, var(--text-on-purple) 78%, transparent);
  line-height:1.45;
  letter-spacing:.01em;
}

/* ─────────── Values ─────────── */
.values{
  background: var(--lavender-pale);
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
}
.values-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.value{
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.value-icon{
  width:64px;height:64px;
  color: var(--purple-light);
  margin-bottom: 22px;
}
.value-icon svg{width:100%;height:100%;stroke-width:1.4}
.value h3{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: 20px;
  color: var(--text-on-light);
  margin: 0 0 10px;
}
.value p{
  font-family:'Heebo';font-weight:300;
  font-size:14px;line-height:1.7;
  color: var(--text-muted);
  margin:0;
  max-width: 220px;
}

/* ─────────── Products ─────────── */
.products{
  background: var(--lavender-tint);
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
}
.products-head{
  text-align:center;
  max-width: 720px;margin: 0 auto 56px;
}
.products-title-row{
  display:inline-flex;align-items:center;gap:18px;
  margin-top: 10px;
}
.products-title-row .section-title{margin:0}

.products-grid{
  max-width: var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product{
  background: var(--cream-warm);
  border-radius: 28px;
  padding: 14px;
  display:flex;flex-direction:column;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 22px 40px -30px color-mix(in oklab, var(--purple-deep) 30%, transparent);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -28px color-mix(in oklab, var(--purple-deep) 40%, transparent);
}
.product-photo{
  border-radius: 18px;
  overflow:hidden;
  aspect-ratio: 1/1;
  background: #efe5db;
}
.product-photo img{width:100%;height:100%;object-fit:cover}
/* Portrait product shots (necklaces) — taller card, show the full branded pendant image */
.product-photo.portrait{ aspect-ratio: 2 / 3; }
.product-photo.portrait img{ object-position: center top; }
/* Contain — branded product photos that mustn't be cropped (logo, captions) */
.product-photo.contain,
.product-photo.landscape{
  /* aspect-ratio inherits from .product-photo (1/1) → same card height as the rest of the catalog */
  background: var(--cream-warm, #f5ede0);
}
.product-photo.contain img,
.product-photo.landscape img{ object-fit: contain; padding: 0; }
.product-body{
  padding: 22px 12px 14px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.product-name{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size:19px;
  color:var(--text-on-light);
  margin:0;
}
.product-price{
  display:inline-flex;align-items:center;gap:4px;
  font-family:'Frank Ruhl Libre';font-weight:500;font-size:21px;
  color: var(--gold-dark);
  letter-spacing:.02em;
  margin-bottom: 8px;
}
.product-price .currency{color: var(--gold);font-size: 16px}

/* Mobile fix (15/06): stop product cards forcing horizontal overflow → left column was
   getting clipped off-screen on narrow phones. Grid items default to min-width:auto
   (=min-content), so wide card content (e.g. fountain size chips) pushed the grid wider
   than the viewport; overflow-x:hidden then clipped the RTL left edge. */
.product{ min-width: 0; }
.product .variant-select,
.product [role="group"]{ flex-wrap: wrap; }
@media (max-width: 640px){
  .products-grid{ gap: 14px; }
}

.products-cta{
  display:flex;justify-content:center;margin-top: 44px;
}

/* ─────────── Story ─────────── */
.story{
  background: var(--lavender-pale);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
  position:relative;
  overflow:hidden;
}
.story-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  /* RTL: column 1 = visual right (deco), column 2 = middle (copy), column 3 = visual left (photo) */
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 56px;
  align-items:center;
}
.story-deco{order:1}
.story-copy{order:2}
.story-photo{order:3}
.story-photo{
  border-radius: 24px;
  overflow:hidden;
  aspect-ratio: 4/5;
  background:#e9dadd;
}
.story-photo img{width:100%;height:100%;object-fit:cover}
.story-copy{
  display:flex;flex-direction:column;align-items:flex-start;
  text-align:right;
}
.story-copy .section-title{margin: 12px 0 22px}
.story-copy p{
  font-family:'Heebo';font-weight:300;
  font-size:15.5px;line-height:1.85;
  color: var(--text-muted);
  margin: 0 0 14px;
  max-width: 460px;
}
.story-copy .btn-purple{margin-top:18px}

.story-deco{
  position:relative;
  aspect-ratio: 1/1;
  max-width: 360px;
  margin: 0 auto;
  display:flex;align-items:center;justify-content:center;
}
.story-deco svg{width:100%;height:100%;display:block}

/* ─────────── Trust bar ─────────── */
.trust{
  background: var(--purple-brand);
  color: var(--text-on-purple);
  padding: 28px var(--pad-x);
}
.trust-row{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  align-items:center;
}
.trust-item{
  display:flex;align-items:center;justify-content:center;
  gap: 14px;
  padding: 4px 12px;
  border-right: 1px solid color-mix(in oklab, var(--gold) 25%, transparent);
  font-family:'Heebo';font-weight:300;font-size:13.5px;
  color: color-mix(in oklab, #fff 88%, transparent);
  letter-spacing:.01em;
  line-height:1.4;
  text-align:right;
}
.trust-item:first-child{border-right:0}
.trust-item .ti-icon{
  width: 28px;height:28px;color: var(--gold);
  flex:0 0 auto;
}
.trust-item .ti-icon svg{width:100%;height:100%;stroke-width:1.4}

/* ─────────── Instagram ─────────── */
.insta{
  background: var(--lavender-tint);
  padding: clamp(72px, 9vw, 110px) var(--pad-x);
  text-align:center;
}
.insta-head{margin-bottom: 44px}
.insta-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.insta-tile{
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow:hidden;
  background:#e2d6e8;
  position:relative;
  transition: transform .4s var(--ease);
}
.insta-tile:hover{transform: translateY(-3px)}
.insta-tile img{width:100%;height:100%;object-fit:cover}
.insta-tile::after{
  content:"";position:absolute;inset:auto 0 0 0;height:50%;
  background: linear-gradient(to top, color-mix(in oklab, var(--purple-night) 30%, transparent), transparent);
  opacity:0; transition: opacity .3s var(--ease);
}
.insta-tile:hover::after{opacity:1}
.insta-cta{margin-top: 36px;display:inline-flex}

/* ─────────── Footer ─────────── */
.site-footer{
  background: var(--lavender-pale);
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  padding: clamp(56px, 7vw, 88px) var(--pad-x) 24px;
  color: var(--text-on-light);
}
.footer-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}
.footer-brand h3{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--text-on-light);
}
.footer-brand p{
  font-family:'Heebo';font-weight:300;
  font-size:14px;line-height:1.7;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 320px;
}
.footer-socials{
  display:flex;gap:10px;
}
.social{
  width:38px;height:38px;border-radius:50%;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--gold) 35%, transparent);
  color: var(--purple-deep);
  display:inline-flex;align-items:center;justify-content:center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.social:hover{background: var(--gold);color:#fff;border-color:var(--gold)}
.social svg{width:16px;height:16px;stroke-width:1.5}

.footer-col h4{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size:18px;margin:0 0 18px;
  color: var(--text-on-light);
}
.footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.footer-col a{
  font-family:'Heebo';font-weight:300;font-size:14px;
  color: var(--text-muted);
  transition: color .25s var(--ease);
}
.footer-col a:hover{color:var(--purple-light)}

.newsletter h4{margin-bottom: 12px}
.newsletter p{
  font-family:'Heebo';font-weight:300;font-size:13px;
  color: var(--text-muted);
  margin: 0 0 16px;line-height:1.6;
}
.newsletter-form{
  display:flex;flex-direction:column;gap:12px;
}
.newsletter-form input{
  font:inherit;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 14%, transparent);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--text-on-light);
  outline:none;
  transition: border-color .25s var(--ease);
}
.newsletter-form input:focus{border-color: var(--gold)}
.newsletter-form input::placeholder{color: var(--text-faint)}
.newsletter-form .btn-gold{justify-content:center}

.footer-image-note{
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
  font-family:'Heebo', sans-serif; font-weight: 300; font-size: 11.5px;
  color: color-mix(in oklab, var(--text-on-purple, #fff) 55%, transparent);
  letter-spacing: .02em;
  font-style: italic;
}
.footer-legal{
  max-width: var(--max);margin: 14px auto 0;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  display:flex;justify-content:center;
  font-family:'Heebo';font-weight:300;font-size:12px;
  color: var(--text-faint);
  letter-spacing:.02em;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px){
  .footer-grid{grid-template-columns: 1fr 1fr;gap: 40px}
  .insta-grid{grid-template-columns: repeat(5, 1fr)}
}
@media (max-width: 900px){
  .main-nav{display:none}
  /* Generous vertical padding so icons aren't cropped by the browser's status bar / notch */
  .header-inner{grid-template-columns: auto 1fr auto;justify-content:space-between;padding: 14px 14px;gap: 12px;min-height: 72px;overflow: visible}
  .header-icons{gap:6px;overflow:visible;align-items:center}
  .brand-mark{width:48px;height:48px}
  /* Icons MUST be high-contrast on the purple header.
     Override the 85%-transparent color we use on desktop, force solid stroke,
     bump stroke-width so the lines are visible even on dense displays. */
  .icon-btn{width:44px;height:44px;overflow:visible;color:#fff;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18)}
  .icon-btn:hover{background:rgba(255,255,255,0.18)}
  .icon-btn svg{width:26px;height:26px;overflow:visible;display:block}
  .icon-btn svg path{stroke-width:2.4;vector-effect:non-scaling-stroke}
  .hero-inner{grid-template-columns: 1fr;gap: 0;min-height: auto}
  .hero-photo-wrap{padding: 0;min-height: auto;aspect-ratio: 4/3}  /* fluid proportional carousel */
  .hero-photo img{min-height: 0;height: 100%}
  .hero-copy{padding: 48px 24px 56px}  /* tightened 4/8pt rhythm */
  .hero-usps{grid-template-columns: repeat(2, 1fr);max-width: 320px;gap: 16px;margin: 24px 0 32px}

  .values-grid{grid-template-columns: repeat(2, 1fr);gap:40px}
  .products-grid{grid-template-columns: repeat(2, 1fr)}
  .story-inner{grid-template-columns: 1fr;gap:36px}
  .story-deco{height: 200px}
  .trust-row{grid-template-columns: repeat(2, 1fr);gap: 18px 0}
  .trust-item{border-right:0;padding: 10px}
  .insta-grid{grid-template-columns: repeat(3, 1fr)}
  .insta-tile:nth-child(n+4){display:none}
  .footer-grid{grid-template-columns: 1fr;gap:36px}
}

/* ─────────── Mobile nav drawer ─────────── */
.nav-toggle{ display:none }
.nav-toggle svg{ width:22px;height:22px }

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex }

  /* Override the display:none above — turn .main-nav into a slide-down drawer */
  .main-nav{
    display:flex;
    flex-direction:column;
    position:fixed;
    top: 86px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;  /* clamp to actual viewport, not innerWidth */
    bottom: 0;
    background: var(--purple-brand);
    padding: 24px var(--pad-x) 40px;
    gap: 0;
    border-top: 1px solid color-mix(in oklab, var(--gold) 18%, transparent);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    z-index: 49;
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateY(0) }
  .main-nav a{
    font-family:'Frank Ruhl Libre';
    font-weight: 400;
    font-size: 22px;
    padding: 18px 0;
    border-bottom: 1px solid color-mix(in oklab, var(--gold) 14%, transparent);
    text-align:center;
    width:100%;
    color: var(--text-on-purple);
  }
  .main-nav a:last-child{ border-bottom:0 }
  .main-nav a.active::after{ display:none }
  body.nav-open{ overflow:hidden }
}

/* ─────────── Hero carousel ─────────── */
.hero-carousel{ position:absolute; inset:0; overflow:hidden }
.hero-track{ position:absolute; inset:0 }
.hero-slide{
  position:absolute; inset:0;
  margin:0;
  opacity:0;
  transition: opacity .9s var(--ease);
  pointer-events:none;
}
.hero-slide.is-active{ opacity:1; pointer-events:auto }
.hero-slide img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 45%;
  display:block;
  background: #2a1048;
}
.hero-slide-caption{
  position:absolute;
  bottom: 22px;
  right: 22px;
  font-family:'Frank Ruhl Libre'; font-weight:400;
  font-size: 14px;
  letter-spacing:.06em;
  color:#fff;
  background: rgba(0,0,0,.42);
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklab, #fff 18%, transparent);
}

.hero-arrow{
  position:absolute; top:50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,.42);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid color-mix(in oklab, #fff 22%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor:pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 3;
}
.hero-arrow:hover{ background: rgba(0,0,0,.7); transform: translateY(-50%) scale(1.06) }
.hero-arrow:focus-visible{ outline: 2px solid var(--gold-light); outline-offset: 2px }
.hero-arrow svg{ width:22px; height:22px }
.hero-arrow-prev{ right: 18px }   /* visual right = "previous" in RTL */
.hero-arrow-next{ left: 18px }    /* visual left = "next" in RTL */

.hero-dots{
  position:absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display:flex; gap: 10px;
  z-index: 3;
}
.hero-dot{
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), width .35s var(--ease), border-radius .35s var(--ease);
}
.hero-dot::before{
  /* Expand tap target to 44x44 per WCAG/HIG without changing visual size */
  content: "";
  position: absolute;
  inset: -18px;
}
.hero-dot:hover{ background: rgba(255,255,255,.85) }
.hero-dot.is-active{
  background: var(--gold-light);
  width: 26px;
  border-radius: 4px;
}

@media (max-width: 900px){
  .hero-arrow{ width: 44px; height: 44px }  /* WCAG/HIG min touch target */
  .hero-arrow svg{ width: 20px; height: 20px }
  .hero-arrow-prev{ right: 12px }
  .hero-arrow-next{ left: 12px }
  .hero-dots{ bottom: 16px; gap: 10px }
  .hero-slide-caption{ font-size: 13px; bottom: 16px; right: 16px; padding: 6px 14px }
}

/* ─────────── WhatsApp Floating Action Button ─────────── */
.wa-fab{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35), 0 2px 6px rgba(0,0,0,.18);
  z-index: 90;
  transition: transform .35s var(--ease), box-shadow .25s var(--ease), opacity .35s var(--ease);
  text-decoration: none;
}
.wa-fab:hover{
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,.45), 0 4px 8px rgba(0,0,0,.22);
}
.wa-fab:focus-visible{ outline: 3px solid #fff; outline-offset: 3px }
.wa-fab svg{ width: 32px; height: 32px }
.wa-fab::before{
  /* Subtle pulse to draw eye */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse{
  0%   { transform: scale(1);   opacity: .55 }
  80%  { transform: scale(1.6); opacity: 0 }
  100% { transform: scale(1.6); opacity: 0 }
}
@media (prefers-reduced-motion: reduce){
  .wa-fab::before{ animation: none }
}
@media (max-width: 900px){
  .wa-fab{ width: 54px; height: 54px; bottom: 16px; right: 16px }
  .wa-fab svg{ width: 28px; height: 28px }
}

/* ─────────── Cart Floating Action Button (mirror of WhatsApp on left) ─────────── */
.cart-fab{
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold, #c9a861);
  color: var(--purple-brand, #3d1953);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(61,25,83,.32), 0 2px 6px rgba(0,0,0,.18);
  z-index: 90;
  transition: transform .35s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.cart-fab:hover{
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(61,25,83,.42), 0 4px 8px rgba(0,0,0,.22);
}
.cart-fab:focus-visible{ outline: 3px solid var(--purple-brand, #3d1953); outline-offset: 3px }
.cart-fab svg{ width: 28px; height: 28px; stroke-width: 1.8 }
.cart-fab .cart-fab-badge{
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--purple-brand, #3d1953);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px){
  .cart-fab{ width: 52px; height: 52px; bottom: 16px; left: 16px }
  .cart-fab svg{ width: 26px; height: 26px }
}
/* Cart FAB always visible on every page (homepage + shop + product + everywhere).
   Previously hidden on desktop shop when sticky bar was active — now both can coexist,
   but the sticky bar is hidden so there is one clear cart entry point on the left. */

/* ─────────── Shop — category sections + placeholder cards ─────────── */
.category-title{
  font-family:'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--purple-deep);
  text-align: center;
  max-width: var(--max);
  margin: 56px auto 28px;
  padding-top: 36px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 10%, transparent);
  letter-spacing: -0.005em;
}
.category-title:first-of-type{
  border-top: 0;
  padding-top: 8px;
  margin-top: 24px;
}

/* Placeholder photo (no real image yet) */
.product-photo.placeholder{
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--lavender-soft) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.product-photo.placeholder::before{
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--gold) 18%, transparent), transparent 60%);
  pointer-events: none;
}
.ph-icon{
  font-size: 56px;
  line-height: 1;
  opacity: 0.55;
  filter: saturate(0.7);
  position: relative;
  z-index: 1;
}
.ph-label{
  font-family:'Heebo';
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  position: relative;
  z-index: 1;
}

/* Gift voucher — a designed brand card (a voucher IS a graphic, not a product photo) */
.product-photo.voucher{
  background: linear-gradient(150deg, #4a2273 0%, #3d1953 55%, #2c1140 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.product-photo.voucher::before{
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 30%, rgba(201,169,97,0.28), transparent 55%);
  pointer-events: none;
}
.product-photo.voucher::after{
  content: '';
  position: absolute;
  inset: 13px;
  border: 1.5px dashed rgba(224,200,120,0.5);
  border-radius: 12px;
  pointer-events: none;
}
.voucher-tag{
  position: relative; z-index: 1;
  font-family: 'Heebo';
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: #e0c878;
  opacity: 0.9;
  padding-inline-start: 0.34em;
}
.voucher-icon{
  position: relative; z-index: 1;
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.voucher-title{
  position: relative; z-index: 1;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 27px;
  color: #f3e8d0;
  letter-spacing: 0.01em;
}
.voucher-title::after{
  content: '';
  display: block;
  width: 40px; height: 2px;
  margin: 9px auto 0;
  background: linear-gradient(90deg, transparent, #c9a961, transparent);
}
.voucher-brand{
  position: relative; z-index: 1;
  font-family: 'Heebo';
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b59ad0;
  padding-inline-start: 0.3em;
}

/* Soft badge variant (for "coming soon") */
.product-badge.soft{
  background: rgba(255,255,255,0.85);
  color: var(--text-muted);
  border: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* Footer note */
.shop-foot-note{
  max-width: 720px;
  margin: 56px auto 0;
  padding: 18px 24px;
  background: color-mix(in oklab, var(--lavender-pale) 70%, #fff);
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  border-radius: 14px;
  font-family:'Heebo';
  font-weight: 300;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}
.shop-foot-note strong{ color: var(--purple-deep); font-weight: 500 }

/* Variant: product price showing only text (לפי משקל / החל מ-) */
.product-price{ flex-wrap: wrap; justify-content: center; }

/* ─────────── Blog ─────────── */
.blog-hub{
  background: var(--lavender-tint);
  padding: clamp(48px, 6vw, 88px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.blog-hub-inner{ max-width: 1180px; margin: 0 auto }
.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(28px, 3.6vw, 48px);
}
.blog-card{
  background: #fff;
  border-radius: 22px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 20px 40px -28px color-mix(in oklab, var(--purple-deep) 22%, transparent);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -28px color-mix(in oklab, var(--purple-deep) 35%, transparent);
}
.blog-card-cover{
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--lavender-pale), var(--lavender-tint));
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-deep);
  position: relative;
}
.blog-card-cover svg{ width: 56px; height: 56px; stroke-width: 1.2; opacity: .8 }
.blog-card-body{
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.blog-card-meta{
  font-family:'Heebo'; font-weight:400; font-size: 11.5px;
  letter-spacing: .12em; color: var(--text-muted);
}
.blog-card h3{
  font-family:'Frank Ruhl Libre'; font-weight:400;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--text-on-light);
  margin: 0;
}
.blog-card p{
  font-family:'Heebo'; font-weight:300; font-size: 14.5px;
  line-height: 1.7; color: var(--text-muted); margin: 0;
}
.blog-card-cta{
  margin-top: auto;
  padding-top: 14px;
  font-family:'Heebo'; font-weight:400; font-size: 13px;
  color: var(--purple-light);
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-card-cta svg{ width: 14px; height: 14px }

/* Blog article (single post) — extends .legal-inner */
.article-inner blockquote{
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--lavender-pale);
  border-inline-start: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-family:'Frank Ruhl Libre'; font-weight:400; font-style: italic;
  font-size: 17px; line-height: 1.6; color: var(--purple-deep);
}
.article-inner .lede{
  font-family:'Frank Ruhl Libre'; font-weight:300; font-style: italic;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--purple-deep);
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid color-mix(in oklab, var(--purple-deep) 10%, transparent);
}
.article-inner hr{
  border: 0;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  margin: 32px auto;
  max-width: 200px;
}
.article-byline{
  display: flex; align-items: center; gap: 12px;
  font-family:'Heebo'; font-weight:300; font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-byline .author{ color: var(--purple-deep); font-weight: 400 }
.article-byline .dot{ opacity: .4 }
.article-cta-box{
  margin: 36px 0 10px;
  padding: 24px 26px;
  background: linear-gradient(135deg, var(--lavender-pale), #fff);
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  text-align: center;
}
.article-cta-box p{
  font-family:'Frank Ruhl Libre'; font-weight:400;
  font-size: 16px; color: var(--purple-deep); margin: 0 0 14px;
}
.article-cta-box .btn-gold{ margin: 0 6px }

/* ─────────── Cart (header badge, toast, add-to-cart, cart page) ─────────── */
.cart-badge{
  position: absolute;
  top: 2px; inset-inline-start: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--purple-deep);
  font-family:'Heebo'; font-weight: 500; font-size: 11px;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  pointer-events: none;
  line-height: 1;
}
.cart-toast{
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  background: var(--purple-deep);
  color: #fff;
  font-family:'Heebo'; font-weight: 300; font-size: 14px;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 9999;
  pointer-events: none;
  max-width: 80vw;
}
.cart-toast.show{ opacity: 1; transform: translateY(0); }

.add-to-cart-btn{
  cursor: pointer;
  background: var(--purple-deep);
  color: #fff;
  border-color: var(--purple-deep);
}
/* כפתור "הוסף לסל" בכרטיס — רוחב אחיד, שורה אחת, ממורכז (פרופורציות יציבות) */
.product .add-to-cart-btn{ width:100%; justify-content:center; white-space:nowrap; }
.add-to-cart-btn:hover{
  background: var(--purple-light);
  border-color: var(--purple-light);
}
.add-to-cart-btn.pulse{
  animation: cart-pulse .6s var(--ease);
}
@keyframes cart-pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(.96); }
  100%{ transform: scale(1); }
}
.btn-secondary-cta{
  margin-top: 8px;
  opacity: .8;
  font-size: 13px;
}

/* Cart page */
.cart-page{
  background: var(--lavender-tint);
  padding: clamp(40px, 5vw, 72px) var(--pad-x) clamp(64px, 8vw, 110px);
}
.cart-page-inner{ max-width: 1180px; margin: 0 auto }
.cart-empty{
  background: #fff;
  border-radius: 22px;
  padding: clamp(40px, 6vw, 80px) 24px;
  text-align: center;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 20px 40px -28px color-mix(in oklab, var(--purple-deep) 22%, transparent);
}
.cart-empty-icon{
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--lavender-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-deep);
}
.cart-empty-icon svg{ width: 38px; height: 38px; }
.cart-empty h2{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text-on-light);
  margin: 0 0 8px;
}
.cart-empty p{
  font-family:'Heebo'; font-weight: 300;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.cart-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}
@media (max-width: 880px){
  .cart-layout{ grid-template-columns: 1fr }
}

.cart-lines{
  display: flex; flex-direction: column;
  gap: 14px;
}
.cart-line{
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 12px 28px -22px color-mix(in oklab, var(--purple-deep) 22%, transparent);
  align-items: center;
}
@media (max-width: 480px){
  .cart-line{ grid-template-columns: 72px 1fr; }
  .cart-line-total{ grid-column: 1 / -1; text-align: end; padding-top: 4px; border-top: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent); }
}
.cart-line-img{
  width: 96px; aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lavender-pale);
}
@media (max-width: 480px){ .cart-line-img{ width: 72px; } }
.cart-line-img img{ width: 100%; height: 100%; object-fit: cover; }
.cart-line-ph{
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--purple-deep);
}
.cart-line-body h3{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 17px;
  color: var(--text-on-light);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cart-line-price{
  font-family:'Heebo'; font-weight: 300; font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cart-line-controls{
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.qty-control{
  display: inline-flex; align-items: center;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 18%, transparent);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-btn{
  position: relative;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  font-size: 18px;
  color: var(--purple-deep);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit;
  transition: background .2s var(--ease);
}
/* Expand touch hit-area to 44x44 without changing visual size */
.qty-btn::before{
  content: ""; position: absolute;
  inset: -6px;
}
.qty-btn:hover{ background: var(--lavender-pale); }
.qty-value{
  min-width: 32px; text-align: center;
  font-family:'Heebo'; font-weight: 400; font-size: 14px;
  color: var(--text-on-light);
}
.cart-line-remove{
  position: relative;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family:'Heebo'; font-weight: 300; font-size: 13px;
  cursor: pointer;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
/* Expand touch hit-area to 44x44 without changing visual size */
.cart-line-remove::before{
  content: ""; position: absolute;
  inset: -6px -20px;
}
.cart-line-remove:hover{ color: var(--purple-deep); border-bottom-color: var(--purple-deep); }
.cart-line-total{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 18px;
  color: var(--purple-deep);
  white-space: nowrap;
}

.cart-summary{
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px 28px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 20px 40px -28px color-mix(in oklab, var(--purple-deep) 22%, transparent);
  position: sticky;
  top: 16px;
}
.cart-summary h3{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 19px;
  color: var(--text-on-light);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in oklab, var(--purple-deep) 10%, transparent);
}
.summary-row{
  display: flex; justify-content: space-between; align-items: baseline;
  font-family:'Heebo'; font-weight: 300; font-size: 14.5px;
  color: var(--text-on-light);
  margin: 0 0 10px;
}
.summary-row strong{ font-weight: 400; color: var(--purple-deep); }
/* הנחת קופון / מבצע-חג בסיכום העגלה — ירוק חיובי */
.summary-discount{ color: #2e7d5b; }
.summary-discount strong{ color: #2e7d5b; font-weight: 500; }
.summary-bundle{
  background: color-mix(in oklab, #2e7d5b 8%, transparent);
  border-radius: 9px; padding: 7px 10px; margin: 0 0 8px;
  font-size: 13.5px;
}
.summary-hint{
  background: var(--lavender-pale);
  color: var(--purple-deep);
  font-family:'Heebo'; font-weight: 300; font-size: 13px;
  padding: 8px 12px;
  border-radius: 10px;
  margin: 8px 0 14px;
  text-align: center;
}
.summary-hint.success{ background: color-mix(in oklab, var(--gold) 18%, transparent); }
.summary-hint strong{ font-weight: 500; }
.summary-divider{
  height: 1px;
  background: color-mix(in oklab, var(--purple-deep) 10%, transparent);
  margin: 14px 0;
}
.total-row{
  font-family:'Frank Ruhl Libre'; font-size: 19px;
}
.total-row strong{
  font-family:'Frank Ruhl Libre'; font-size: 24px;
}

.checkout-form{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 10%, transparent);
}
.checkout-form h4{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 16px;
  color: var(--text-on-light);
  margin: 0 0 14px;
}
.checkout-form .field{ margin-bottom: 12px; }
.checkout-btn{
  width: 100%; justify-content: center;
  margin-top: 8px;
}
.checkout-trust{
  margin-top: 12px;
  font-family:'Heebo'; font-weight: 300; font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ─────────── Wishlist heart on product card ─────────── */
.wishlist-heart{
  position: absolute;
  top: 14px; inset-inline-end: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  border-radius: 50%;
  color: var(--purple-mist);
  cursor: pointer;
  z-index: 4;
  transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.wishlist-heart::before{
  content: ""; position: absolute; inset: -6px;  /* hit area 48x48 */
}
.wishlist-heart svg{ width: 18px; height: 18px; stroke-width: 1.8; transition: fill .25s var(--ease); }
.wishlist-heart:hover{
  color: var(--gold);
  border-color: var(--gold);
}
.wishlist-heart[aria-pressed="true"]{
  color: var(--gold);
  background: #fff;
  border-color: var(--gold);
}
.wishlist-heart[aria-pressed="true"] svg{ fill: var(--gold); }
.wishlist-heart.heart-beat{ animation: heartBeat .42s var(--ease); }
@keyframes heartBeat{
  0%{ transform: scale(1); }
  35%{ transform: scale(1.28); }
  100%{ transform: scale(1); }
}

/* ─────────── Urgency badge (premium, not aggressive) ─────────── */
.urgency-badge{
  position: absolute;
  top: 14px; inset-inline-start: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--cream-warm);
  color: var(--purple-deep);
  border: 1px solid color-mix(in oklab, var(--gold) 55%, transparent);
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 400; font-size: 11px;
  letter-spacing: .04em;
  z-index: 3;
  box-shadow: 0 4px 14px -6px rgba(28, 10, 44, 0.15);
}
.urgency-badge svg{ width: 11px; height: 11px; stroke-width: 1.6; color: var(--gold-dark); }
.urgency-badge .urgency-strong{ font-weight: 500; color: var(--purple-deep); }

/* ─────────── Quick-View Modal ─────────── */
.qv-backdrop{
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--purple-night) 60%, transparent);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.qv-backdrop[data-open="true"]{
  opacity: 1;
  pointer-events: auto;
}
.qv-modal{
  position: fixed;
  top: 50%; inset-inline-start: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: var(--cream-warm);
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(28, 10, 44, 0.45);
  max-width: 720px;
  width: calc(100% - 32px);
  max-height: 88vh;
  overflow: hidden;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
/* In RTL, translate(50%, ...) keeps centered since transform isn't affected by direction */
html[dir="rtl"] .qv-modal{
  transform: translate(50%, -50%) scale(0.96);
}
.qv-backdrop[data-open="true"] + .qv-modal,
.qv-modal[data-open="true"]{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
html[dir="rtl"] .qv-backdrop[data-open="true"] + .qv-modal,
html[dir="rtl"] .qv-modal[data-open="true"]{
  transform: translate(50%, -50%) scale(1);
}
.qv-close{
  position: absolute;
  top: 14px; inset-inline-end: 14px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  border-radius: 50%;
  cursor: pointer;
  color: var(--purple-deep);
  z-index: 5;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.qv-close:hover{ background: #fff; transform: rotate(90deg); }
.qv-close svg{ width: 18px; height: 18px; stroke-width: 1.8; }
.qv-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 88vh;
  overflow-y: auto;
}
.qv-image{
  background: var(--cream-warm, #f5ede0);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  max-height: 75vh;
}
.qv-image img{ width: 100%; height: 100%; object-fit: contain; padding: 0; box-sizing: border-box; }
/* Portrait products (necklaces, mezuzot) — taller image area for full display */
.qv-image.qv-image--portrait{ aspect-ratio: 3 / 4; }
@media (max-width: 640px){
  .qv-image{ aspect-ratio: 4 / 3; }
  .qv-image.qv-image--portrait{ aspect-ratio: 3 / 4; }
}
.qv-image-note{
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family:'Heebo', sans-serif; font-weight: 300; font-size: 10.5px;
  color: var(--purple-light, #6b2fa0);
  background: color-mix(in oklab, #fff 85%, transparent);
  padding: 3px 11px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .02em;
}
.qv-image .qv-placeholder{
  font-size: 80px;
  opacity: .6;
}
.qv-body{
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}
.qv-eyebrow{
  font-family:'Heebo'; font-weight: 400; font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.qv-title{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--purple-deep);
  margin: 0;
}
.qv-price{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 26px;
  color: var(--purple-deep);
}
.qv-price .qv-currency{ color: var(--gold); font-size: 18px; margin-inline-end: 2px; }
.qv-desc{
  font-family:'Heebo'; font-weight: 300; font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-light);
  margin: 0;
}
.qv-actions{
  display: flex; gap: 12px; align-items: center;
  margin-top: 6px;
  flex-wrap: wrap;
}
.qv-add{
  flex: 1; min-width: 180px;
  background: var(--gold);
  color: var(--text-on-light);
  border: 0;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 500; font-size: 14.5px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.qv-add:hover{ background: var(--gold-light); }
.qv-add svg{ width: 16px; height: 16px; stroke-width: 1.8; }
@media (max-width: 720px){
  .qv-modal{
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    top: auto; bottom: 0;
    inset-inline-start: 0;
    transform: translateY(100%);
  }
  html[dir="rtl"] .qv-modal{ transform: translateY(100%); }
  .qv-backdrop[data-open="true"] + .qv-modal,
  .qv-modal[data-open="true"]{ transform: translateY(0); }
  html[dir="rtl"] .qv-backdrop[data-open="true"] + .qv-modal,
  html[dir="rtl"] .qv-modal[data-open="true"]{ transform: translateY(0); }
  .qv-grid{ grid-template-columns: 1fr; }
  /* Mobile: balanced image — fits screen with body+CTA visible, no scroll on most phones */
  .qv-image{ aspect-ratio: 4 / 3; max-height: 38vh; min-height: 200px; }
  .qv-image.qv-image--portrait{ aspect-ratio: 3 / 4; max-height: 45vh; min-height: 240px; }
  /* Compact thumbs row on mobile */
  .qv-thumbs{ gap: 8px; margin-top: 8px; }
  .qv-thumb{ width: 44px; height: 44px; }
  /* Tighter body spacing on mobile */
  .qv-body{ padding: 14px 18px 20px; gap: 8px; }
  .qv-title{ font-size: 20px; line-height: 1.2; }
  .qv-price{ font-size: 21px; }
  .qv-desc{ font-size: 13.5px; line-height: 1.55; }
  .qv-stone{ padding: 10px 12px; }
  .qv-stone-text{ font-size: 13px; line-height: 1.55; }
}
body.qv-open{ overflow: hidden; }

/* ─────────── Wishlist page ─────────── */
.wishlist-page{
  background: var(--lavender-tint);
  padding: clamp(48px, 6vw, 88px) var(--pad-x) clamp(72px, 9vw, 120px);
}
.wishlist-page-inner{ max-width: 1180px; margin: 0 auto }
.wishlist-empty{
  text-align: center;
  padding: 60px 20px;
  max-width: 460px; margin: 0 auto;
}
.wishlist-empty-icon{
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-mist);
}
.wishlist-empty-icon svg{ width: 32px; height: 32px; stroke-width: 1.3 }
.wishlist-empty h2{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--purple-deep);
  margin: 0 0 12px;
}
.wishlist-empty p{
  font-family:'Heebo'; font-weight: 300; font-size: 15px;
  line-height: 1.7; color: var(--text-muted);
  margin: 0 0 26px;
}
.wishlist-meta{
  font-family:'Heebo'; font-weight: 400; font-size: 13px;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 22px;
  text-align: center;
}
.wishlist-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.wishlist-card{
  background: #fff;
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 6%, transparent);
  box-shadow: 0 16px 38px -26px color-mix(in oklab, var(--purple-deep) 22%, transparent);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.wishlist-card-photo{
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--lavender-pale), var(--lavender-tint));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.wishlist-card-photo img{ width: 100%; height: 100%; object-fit: cover; display: block }
.wishlist-card-photo .wishlist-placeholder{ font-size: 56px; opacity: .55 }
.wishlist-card-body{
  padding: 22px 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.wishlist-card h3{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 17px; line-height: 1.35;
  color: var(--text-on-light);
  margin: 0;
}
.wishlist-card-price{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: 20px; color: var(--purple-deep);
}
.wishlist-card-price .currency{ color: var(--gold); font-size: 14px; margin-inline-end: 2px; }
.wishlist-card-actions{
  display: flex; gap: 8px; align-items: center;
  margin-top: auto;
  padding-top: 6px;
}
.wishlist-card .wl-add{
  flex: 1;
  padding: 11px 16px;
  font-size: 13.5px;
  min-height: 44px;
  box-sizing: border-box;
}
.wishlist-card .wl-remove{
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family:'Heebo'; font-weight: 300; font-size: 13px;
  cursor: pointer;
  padding: 6px 10px;
  min-height: 44px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.wishlist-card .wl-remove::before{ content: ""; position: absolute; inset: -6px; }
.wishlist-card .wl-remove:hover{ color: var(--purple-deep); border-bottom-color: var(--purple-deep) }

/* ─────────── Sticky cart bar (mobile shop) ─────────── */
.sticky-cart-bar{
  position: fixed;
  bottom: 0; inset-inline-start: 0; inset-inline-end: 0;
  background: var(--purple-deep);
  color: #fff;
  padding: 14px 18px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -12px 40px -10px rgba(28, 10, 44, 0.5);
  z-index: 90;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: stickyCartIn .3s var(--ease);
}

/* ─────────── Product description (shop cards) ─────────── */
.product-desc{
  font-family:'Heebo';font-weight:300;
  font-size:13px;line-height:1.55;
  color: var(--text-muted);
  margin: -4px 0 4px;
  padding: 0 4px;
  text-align:center;
  max-width: 28ch;
}

/* ─────────── Testimonials ─────────── */
.testimonials{
  background: var(--cream-warm);
  padding: clamp(64px, 8vw, 100px) var(--pad-x);
  position:relative;
  overflow:hidden;
}
.testimonials::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(60% 50% at 0% 0%, color-mix(in oklab, var(--gold) 10%, transparent) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, color-mix(in oklab, var(--purple-deep) 8%, transparent) 0%, transparent 60%);
}
.testimonials-head{
  max-width: var(--max);
  margin: 0 auto 48px;
  text-align:center;
  position:relative;
}
.testimonials-head .eyebrow{
  display:inline-block;
  font-family:'Heebo';font-weight:500;
  text-transform:uppercase;letter-spacing:.18em;
  font-size:12px;color: var(--gold-dark);
  margin-bottom: 12px;
}
.testimonials-head .section-title{
  font-family:'Frank Ruhl Libre';font-weight:400;
  font-size: clamp(28px, 4vw, 40px);
  line-height:1.2;color: var(--text-on-light);
  margin: 0 0 14px;
}
.testimonials-head .section-title em{
  font-style: italic; color: var(--gold-dark); font-weight: 400;
}
.testimonials-sub{
  font-family:'Heebo';font-weight:300;
  font-size:15px;color: var(--text-muted);
  max-width: 48ch; margin: 0 auto;
}
.testimonials-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position:relative;
}
.testimonial-card{
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px -28px color-mix(in oklab, var(--purple-deep) 25%, transparent);
  margin: 0;
  display:flex;flex-direction:column;gap:14px;
}
.testimonial-stars{
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
}
.testimonial-card blockquote{
  font-family:'Frank Ruhl Libre';font-weight:300;
  font-size: 16.5px;line-height:1.65;
  color: var(--text-on-light);
  margin:0;
  font-style: italic;
}
.testimonial-card figcaption{
  font-family:'Heebo';font-weight:300;
  font-size:13px;color: var(--text-muted);
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep) 8%, transparent);
}
.testimonial-card figcaption strong{
  font-weight: 500; color: var(--purple-deep);
}
.testimonials-foot{
  max-width: var(--max);
  margin: 36px auto 0;
  text-align:center;
  font-family:'Heebo';font-weight:300;
  font-size:14px;color: var(--text-muted);
}
.testimonials-foot a{
  color: var(--gold-dark); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 50%, transparent);
}
@media (max-width: 1024px){
  .testimonials-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 640px){
  .testimonials-grid{ grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .testimonials-head .section-title{ font-size: 26px; }
  .testimonial-card{ padding: 22px 20px; }
  .testimonial-card blockquote{ font-size: 15.5px; }
}

/* ─────────── Exit-intent popup ─────────── */
.exit-popup-backdrop{
  position: fixed; inset: 0;
  background: rgba(28, 10, 44, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 1000;
}
.exit-popup-backdrop[data-open="true"]{ opacity: 1; pointer-events: auto; }
.exit-popup{
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  width: min(92vw, 460px);
  background: var(--cream-warm);
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  border-radius: 22px;
  padding: 36px 28px 28px;
  box-shadow: 0 30px 80px -20px rgba(28, 10, 44, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  z-index: 1001;
  text-align: center;
}
.exit-popup[data-open="true"]{
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.exit-popup-close{
  position: absolute; top: 12px; left: 12px;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.exit-popup-close:hover{ background: color-mix(in oklab, var(--purple-deep) 8%, transparent); color: var(--purple-deep); }
.exit-popup-close svg{ width: 18px; height: 18px; stroke-width: 1.5; }
.exit-popup-deco{
  font-size: 34px; line-height: 1;
  margin-bottom: 8px;
}
.exit-popup-eyebrow{
  display: inline-block;
  font-family:'Heebo'; font-weight: 500;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: 11.5px; color: var(--gold-dark);
  margin-bottom: 10px;
}
.exit-popup h2{
  font-family:'Frank Ruhl Libre'; font-weight: 400;
  font-size: clamp(26px, 4.5vw, 34px); line-height: 1.2;
  color: var(--purple-deep);
  margin: 0 0 14px;
}
.exit-popup h2 em{
  font-style: italic; color: var(--gold-dark); font-weight: 400;
}
.exit-popup-text{
  font-family:'Heebo'; font-weight: 300;
  font-size: 14.5px; line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.exit-popup-form{
  display: flex; flex-direction: column; gap: 10px;
}
.exit-popup-form input{
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 18%, transparent);
  background: #fff;
  font-family:'Heebo'; font-size: 15px;
  color: var(--text-on-light);
  text-align: right; direction: rtl;
}
.exit-popup-form input:focus{
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 20%, transparent);
}
.exit-popup-form input[aria-invalid="true"]{
  border-color: #b54a4a;
  box-shadow: 0 0 0 3px rgba(181, 74, 74, .15);
}
.exit-popup-form .btn-gold{
  width: 100%;
  justify-content: center;
}
.exit-popup-success{
  font-family:'Heebo'; font-weight: 400;
  font-size: 15px; line-height: 1.6;
  color: var(--purple-deep);
  background: color-mix(in oklab, var(--gold) 12%, transparent);
  border-radius: 14px;
  padding: 16px;
  margin: 0 0 12px;
}
.exit-popup-success strong{
  color: var(--gold-dark); font-weight: 600;
  letter-spacing: .04em;
}
.exit-popup-foot{
  font-family:'Heebo'; font-weight: 300;
  font-size: 12px; color: var(--text-muted);
  margin: 14px 0 0;
}
body.exit-popup-open{ overflow: hidden; }
@media (max-width: 480px){
  .exit-popup{ padding: 30px 22px 22px; }
  .exit-popup h2{ font-size: 24px; }
}
.sticky-cart-bar[data-active="true"]{ display: flex; }
@keyframes stickyCartIn{
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sticky-cart-info{
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.3;
}
.sticky-cart-count{
  font-family:'Heebo'; font-weight: 300; font-size: 12px;
  color: color-mix(in oklab, #fff 75%, transparent);
  letter-spacing: .04em;
}
.sticky-cart-total{
  font-family:'Frank Ruhl Libre'; font-weight: 400; font-size: 19px;
  color: var(--gold-light);
}
.sticky-cart-cta{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--text-on-light);
  padding: 11px 22px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  text-decoration: none;
  font-family:'Heebo'; font-weight: 500; font-size: 14.5px;
  letter-spacing: .02em;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.sticky-cart-cta:hover{
  background: var(--gold-light);
  transform: translateX(-2px);
}
.sticky-cart-cta svg{ width: 16px; height: 16px; stroke-width: 1.8; }
/* Reserve bottom space so sticky bar doesn't cover content */
body.has-sticky-cart{ padding-bottom: 90px; }
/* Lift WhatsApp FAB above sticky cart bar so they don't overlap */
body.has-sticky-cart:not(.wa-fab-placed) .wa-fab{ bottom: 108px; }
/* When the sticky cart bar shows on mobile, hide the cart FAB — keep only the bar (13/06) */
@media (max-width: 900px){
  body.has-sticky-cart .cart-fab{ display: none !important; }
}
/* Hide on desktop — desktop has cart icon in header */
@media (min-width: 901px){
  .sticky-cart-bar{ display: none !important; }
  body.has-sticky-cart{ padding-bottom: 0; }
  body.has-sticky-cart:not(.wa-fab-placed) .wa-fab{ bottom: 20px; }
}

/* ─────────── Accessibility — skip link + reduced motion ─────────── */
.skip-link{
  position: absolute;
  top: -100px; inset-inline-start: 12px;
  background: var(--purple-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-family:'Heebo'; font-weight: 400; font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus{
  top: 12px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Global keyboard-focus indicator — shows only for keyboard users, low specificity so components can override */
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─────────── Size selector (small / large on fountains) ─────────── */
.size-select{ display:flex; gap:8px; margin:10px 0 4px; flex-wrap:wrap; }
.size-opt{
  font-family:'Heebo'; font-size:12.5px; font-weight:400;
  padding:8px 12px; min-height:40px;
  border-radius:999px;
  border:1px solid color-mix(in oklab, var(--purple-light, #6b2fa0) 35%, transparent);
  background:#fff; color:var(--text-on-light, #2a1048);
  cursor:pointer; transition:background .2s, color .2s, border-color .2s;
  flex:1 1 auto; white-space:nowrap;
}
.size-opt:hover{ border-color: var(--purple-light, #6b2fa0); }
.size-opt.is-active{ background: var(--purple-light, #6b2fa0); color:#fff; border-color: var(--purple-light, #6b2fa0); }

/* ── Compact fountain cards on mobile — shorter + aligned proportions (13/06) ── */
@media (max-width: 480px){
  .product[data-category="fountains"] .product-body{ padding: 14px 8px 12px; gap: 5px; }
  .product[data-category="fountains"] .product-name{
    font-size: 16px; line-height: 1.22; min-height: 2.4em;
    display: flex; align-items: center; justify-content: center; text-align: center;
  }
  .product[data-category="fountains"] .product-price{ font-size: 18px; margin-bottom: 2px; }
  .product[data-category="fountains"] .product-desc{
    font-size: 11.5px; line-height: 1.45; margin: 0 0 2px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .product[data-category="fountains"] .size-select{ gap: 6px; flex-wrap: nowrap; margin: 6px 0 2px; width: 100%; }
  .product[data-category="fountains"] .size-opt{ font-size: 11px; padding: 6px 2px; min-height: 32px; flex: 1 1 0; min-width: 0; }
  .product[data-category="fountains"] .btn-pill-outline{ padding: 9px 10px; min-height: 36px; font-size: 12px; gap: 4px; white-space: nowrap; }
}

/* Quick-View text variant options (finish, bowl color) — synced with card.variant-select */
.qv-options{ display:flex; flex-direction:column; gap:10px; margin:6px 0 4px; }
.qv-option-group{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.qv-option-label{ font-family:'Heebo'; font-size:13px; font-weight:500; color: var(--text-on-light, #2a1048); }
.qv-option-buttons{ display:flex; gap:6px; flex-wrap:wrap; }
.qv-option-btn{
  font-family:'Heebo'; font-size:13px; font-weight:400;
  padding:8px 14px; min-height:38px;
  border-radius:999px;
  border:1px solid color-mix(in oklab, var(--purple-light, #6b2fa0) 35%, transparent);
  background:#fff; color:var(--text-on-light, #2a1048);
  cursor:pointer; transition:background .2s, color .2s, border-color .2s;
  white-space:nowrap;
}
.qv-option-btn:hover{ border-color: var(--purple-light, #6b2fa0); }
.qv-option-btn.is-active{ background: var(--purple-light, #6b2fa0); color:#fff; border-color: var(--purple-light, #6b2fa0); }

/* Variant selectors (finish, bowl color) — same style as size-opt */
.variant-select{ display:flex; align-items:center; gap:6px; margin:8px 0 4px; flex-wrap:wrap; }
/* גימור (זהב/כסף) — שתי האפשרויות באותה שורה, זו לצד זו (לא אחת מתחת לשנייה) */
.product .variant-select{ flex-wrap:nowrap; width:100%; }
.variant-label{ font-family:'Heebo'; font-size:12px; font-weight:500; color: var(--text-on-light, #2a1048); margin-inline-end:2px; flex:0 0 auto; white-space:nowrap; }
.variant-opt{
  font-family:'Heebo'; font-size:12px; font-weight:400;
  padding:6px 8px; min-height:34px;
  border-radius:999px;
  border:1px solid color-mix(in oklab, var(--purple-light, #6b2fa0) 35%, transparent);
  background:#fff; color:var(--text-on-light, #2a1048);
  cursor:pointer; transition:background .2s, color .2s, border-color .2s;
  white-space:nowrap; flex:1 1 0; min-width:0;
}
.variant-opt:hover{ border-color: var(--purple-light, #6b2fa0); }
.variant-opt.is-active{ background: var(--purple-light, #6b2fa0); color:#fff; border-color: var(--purple-light, #6b2fa0); }

/* Bowl color swatch — for individual product pages (.pp-*) */
.pp-bowl-colors{ display:flex; gap:10px; flex-wrap:wrap; }
.pp-color-swatch{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  background:#fff; border:2px solid transparent; border-radius:12px;
  padding:6px 10px 8px; cursor:pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  font-family:'Heebo';
}
.pp-color-swatch:hover{ border-color:#b87fdc; }
.pp-color-swatch.sel{
  border-color:#6b2fa0;
  box-shadow:0 2px 10px rgba(107,47,160,.18);
  transform: translateY(-1px);
}
.pp-color-circle{
  display:block; width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: inset 0 1px 3px rgba(255,255,255,.4), inset 0 -1px 3px rgba(0,0,0,.08);
}
.pp-color-name{
  font-size:12px; font-weight:500; line-height:1.2;
  color:#5a4470; white-space:nowrap;
}

/* Inventory — sold-out & low-stock states (bowl colors, fed by /api/inventory) */
.pp-color-chip.oos{ opacity:.45; filter:grayscale(.5); cursor:not-allowed; }
.pp-color-chip.oos .pp-color-name{ text-decoration:line-through; }
.pp-color-left{
  display:block; font-size:11px; font-weight:700; line-height:1.1;
  color:#b07a1f; white-space:nowrap;
}
.pp-buy:disabled{ background:#a99bb8; cursor:not-allowed; box-shadow:none; transform:none; }

/* Treatments — custom (contact-for-price) */
.price.price-custom{ font-size:15px; font-weight:400; color: var(--purple-light, #6b2fa0); }

/* Quick-View gallery thumbnails (main image + 2nd image) */
.qv-thumbs{ display:flex; gap:10px; margin-top:12px; justify-content:center; flex-wrap:wrap; }
.qv-thumb{
  width:56px; height:56px; padding:0;
  border-radius:12px; overflow:hidden;
  border:2px solid transparent; background:#fff;
  cursor:pointer; transition:border-color .2s;
}
.qv-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.qv-thumb.is-active{ border-color: var(--gold, #c9a961); }
.qv-thumb:hover{ border-color: color-mix(in oklab, var(--gold, #c9a961) 60%, transparent); }

/* Quick-View — stone explanation block */
.qv-stone{
  margin:6px 0 4px;
  padding:12px 14px;
  border-radius:14px;
  background: var(--lavender-tint, #faf4fb);
  border:1px solid color-mix(in oklab, var(--purple-light, #6b2fa0) 14%, transparent);
}
.qv-stone-label{
  display:block;
  font-family:'Heebo'; font-weight:500; font-size:12.5px;
  letter-spacing:.06em;
  color: var(--purple-light, #6b2fa0);
  margin-bottom:4px;
}
.qv-stone-text{
  font-family:'Heebo'; font-weight:300; font-size:14px; line-height:1.65;
  color: var(--text-on-light, #2a1048);
  margin:0;
}

/* Quick-View — variants selector (e.g. ring stones) */
.qv-variants{
  margin: 14px 0 8px;
}
.qv-variants-label{
  display:block;
  font-family:'Heebo'; font-weight:500; font-size:13px;
  letter-spacing:.06em;
  color: var(--purple-light, #6b2fa0);
  margin-bottom: 10px;
}
.qv-variants-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.qv-variant{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  padding: 6px 4px 8px;
  background: #fff;
  border: 2px solid color-mix(in oklab, var(--purple-light, #6b2fa0) 12%, transparent);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.qv-variant img{
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 10px; display:block;
}
.qv-variant-name{
  font-family:'Heebo'; font-weight:400; font-size:12.5px;
  color: var(--text-on-light, #2a1048);
  line-height:1.25;
  text-align:center;
}
.qv-variant:hover{
  border-color: color-mix(in oklab, var(--gold, #c9a961) 60%, transparent);
  transform: translateY(-1px);
}
.qv-variant.is-active{
  border-color: var(--gold, #c9a961);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--gold, #c9a961) 25%, transparent);
}
@media (max-width: 480px){
  .qv-variants-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
  .qv-variant-name{ font-size: 12px; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-carousel{ /* keep carousel static on reduced-motion preference */ }
  .wa-fab svg{ animation: none !important; }
}

/* ─────────── Catalog search bar (shop.html) ─────────── */
.visually-hidden{
  position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.shop-search{
  max-width: var(--max, 1180px);
  margin: 0 auto 18px;
  padding: 0 4px;
}
.search-wrap{
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.shop-search .search-icon{
  position:absolute; top:50%; transform: translateY(-50%);
  right: 16px;
  width: 18px; height: 18px;
  color: var(--purple-brand, #3d1953);
  pointer-events: none;
  opacity: .65;
}
#catalog-search{
  width: 100%;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-on-light, #2a1048);
  padding: 13px 46px 13px 42px;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep, #2a1048) 14%, transparent);
  border-radius: 999px;
  box-shadow: 0 6px 18px -10px color-mix(in oklab, var(--purple-deep, #2a1048) 28%, transparent);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-align: right;
  direction: rtl;
}
#catalog-search::placeholder{
  color: color-mix(in oklab, var(--purple-deep, #2a1048) 45%, transparent);
  font-weight: 300;
}
#catalog-search:focus{
  border-color: var(--gold, #c9a861);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold, #c9a861) 22%, transparent),
              0 6px 18px -10px color-mix(in oklab, var(--purple-deep, #2a1048) 35%, transparent);
}
.search-clear{
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 12px;
  width: 26px; height: 26px;
  border: none;
  border-radius: 50%;
  background: color-mix(in oklab, var(--purple-brand, #3d1953) 10%, transparent);
  color: var(--purple-brand, #3d1953);
  font-size: 20px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
  transition: background .2s;
}
.search-clear:hover{ background: color-mix(in oklab, var(--gold, #c9a861) 30%, transparent); }
.search-empty{
  max-width: 480px;
  margin: 12px auto 0;
  text-align: center;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  color: color-mix(in oklab, var(--purple-deep, #2a1048) 70%, transparent);
  background: color-mix(in oklab, var(--cream-warm, #f5ede0) 60%, #fff);
  border: 1px dashed color-mix(in oklab, var(--gold, #c9a861) 40%, transparent);
  border-radius: 12px;
  padding: 12px 16px;
}
.search-empty em{
  font-style: normal;
  color: var(--gold-dark, #8c6d2d);
  font-weight: 500;
}
@media (max-width: 480px){
  .shop-search{ margin-bottom: 14px; }
  #catalog-search{ font-size: 14.5px; padding: 12px 42px 12px 38px; }
}

/* ─────────── Recently viewed strip (shop.html) ─────────── */
.recently-viewed{
  max-width: var(--max, 1180px);
  margin: 56px auto 0;
  padding: 24px 4px 8px;
  border-top: 1px solid color-mix(in oklab, var(--purple-deep, #2a1048) 10%, transparent);
}
.rv-title{
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--purple-brand, #3d1953);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: .02em;
}
.rv-strip{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(110px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.rv-strip::-webkit-scrollbar{ height: 6px; }
.rv-strip::-webkit-scrollbar-thumb{
  background: color-mix(in oklab, var(--gold, #c9a861) 60%, transparent);
  border-radius: 3px;
}
.rv-card{
  scroll-snap-align: start;
  width: 110px;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep, #2a1048) 8%, transparent);
  border-radius: 12px;
  padding: 6px;
  cursor: pointer;
  text-align: center;
  font-family: 'Heebo', sans-serif;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rv-card:hover{
  transform: translateY(-2px);
  border-color: var(--gold, #c9a861);
  box-shadow: 0 12px 24px -16px color-mix(in oklab, var(--purple-deep, #2a1048) 40%, transparent);
}
.rv-photo{
  width: 100%;
  height: 100px;
  border-radius: 8px;
  background: var(--lavender-tint, #efe7f5);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rv-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-placeholder{ font-size: 28px; opacity: .5; }
.rv-name{
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-on-light, #2a1048);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}
.rv-price{
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold-dark, #8c6d2d);
}
.rv-price .currency{ font-size: 10.5px; opacity: .85; }
@media (min-width: 720px){
  .rv-strip{
    grid-auto-columns: minmax(140px, 1fr);
    gap: 16px;
  }
  .rv-card{ width: 140px; }
  .rv-photo{ height: 130px; }
  .rv-name{ font-size: 12.5px; }
}

/* ─────────── Wishlist share button (wishlist.html) ─────────── */
.wishlist-share-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .55);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.wishlist-share-btn:hover{
  transform: translateY(-2px);
  background: #20bf5b;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, .7);
}
.wishlist-share-btn:focus-visible{
  outline: 3px solid color-mix(in oklab, #25d366 50%, #fff);
  outline-offset: 3px;
}
.wishlist-share-btn svg{ width: 20px; height: 20px; }
.wishlist-page-inner{ text-align: center; }
.wishlist-page-inner > * { text-align: initial; }
.wishlist-page-inner > .wishlist-share-btn { text-align: center; }

/* ─── Checkout Trust Signals ─── */
.checkout-trust-block{
  margin: 18px 0 10px;
  padding: 16px 14px;
  background: color-mix(in oklab, var(--cream-warm, #fdf6ff) 70%, #fff);
  border: 1px solid color-mix(in oklab, var(--purple-deep, #6b2fa0) 10%, transparent);
  border-radius: 14px;
  box-shadow: 0 8px 22px -18px color-mix(in oklab, var(--purple-deep, #6b2fa0) 45%, transparent);
}
.checkout-pay-icons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed color-mix(in oklab, var(--purple-deep, #6b2fa0) 14%, transparent);
  color: color-mix(in oklab, var(--purple-deep, #6b2fa0) 55%, #6e6878);
}
.checkout-pay-icons svg{ height: 18px; width: auto; opacity: .85; }
.checkout-trust-list{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-position: inside;
}
.checkout-trust-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 13.5px;
  color: color-mix(in oklab, var(--purple-deep, #6b2fa0) 78%, #2b1640);
  line-height: 1.5;
}
.checkout-trust-list .ct-ico{
  flex: 0 0 22px;
  text-align: center;
  font-size: 15px;
}
.checkout-testimonial{
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #fff;
  border-right: 3px solid var(--gold, #d4a843);
  border-radius: 10px;
  font-family: 'Frank Ruhl Libre', serif;
  color: color-mix(in oklab, var(--purple-deep, #6b2fa0) 82%, #2b1640);
  box-shadow: 0 4px 14px -10px color-mix(in oklab, var(--purple-deep, #6b2fa0) 50%, transparent);
}
.checkout-testimonial p{ margin: 0 0 6px; font-size: 14.5px; line-height: 1.5; }
.checkout-testimonial em{ font-style: italic; }
.checkout-testimonial footer{
  font-family: 'Heebo', sans-serif;
  font-size: 12.5px;
  color: color-mix(in oklab, var(--gold-dark, #a67c1f) 75%, #6e6878);
  font-weight: 500;
}
@media (max-width: 600px){
  .checkout-trust-block{ padding: 12px 10px; margin: 14px 0 8px; border-radius: 12px; }
  .checkout-pay-icons{ gap: 8px; padding-bottom: 10px; }
  .checkout-pay-icons svg{ height: 15px; }
  .checkout-trust-list li{ font-size: 12.5px; }
  .checkout-testimonial{ padding: 10px 12px; }
  .checkout-testimonial p{ font-size: 13px; }
  .checkout-testimonial footer{ font-size: 11.5px; }
}

/* ─────────── Hero dual CTA row (added 05/06) ─────────── */
.hero-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-cta-row .btn-pill-outline{ min-height: 48px }
@media (max-width: 560px){
  .hero-cta-row{ flex-direction: column; align-items: stretch; gap: 10px }
  .hero-cta-row .btn-gold,
  .hero-cta-row .btn-pill-outline{ justify-content: center; width: 100% }
}

/* ─────────── FAB offset when sticky cart bar active (added 05/06) ─────────── */
/* :not(.wa-fab-placed) — once the user drags the WhatsApp button, stop auto-moving it (13/06) */
body:has(.sticky-cart-bar[data-active="true"]):not(.wa-fab-placed) .wa-fab{
  transform: translateY(-64px) !important;
  transition: transform .25s var(--ease);
}
@media (max-width: 900px){
  body:has(.sticky-cart-bar[data-active="true"]):not(.wa-fab-placed) .wa-fab{
    transform: translateY(-72px) !important;
  }
}



/* ─── Shop sort + price filter (added 05/06) ─── */
.shop-tools{
  max-width: var(--max); margin: -16px auto 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 20px; flex-wrap: wrap;
  font-family:'Heebo';
}
.shop-sort-wrap, .shop-price-wrap{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.shop-sort-wrap label, .shop-price-label{
  font-size: 13.5px; font-weight: 400;
  color: var(--text-on-light);
  letter-spacing:.02em;
}
.shop-sort{
  appearance: none; -webkit-appearance: none;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  color: var(--text-on-light);
  padding: 10px 36px 10px 16px;
  min-height: 44px;
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 400; font-size: 13.5px;
  letter-spacing:.02em;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%237a5cb8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 12px 8px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.shop-sort:hover{ border-color: var(--gold); }
.shop-sort:focus-visible{
  outline: none;
  border-color: var(--purple-brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--purple-brand) 18%, transparent);
}
.price-inputs{
  display:flex; align-items:center; gap:8px;
}
.price-input{
  width: 78px;
  background:#fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 12%, transparent);
  color: var(--text-on-light);
  padding: 10px 12px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 400; font-size: 13.5px;
  text-align: center;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  -moz-appearance: textfield;
}
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.price-input::placeholder{ color: var(--text-muted); opacity: .7; }
.price-input:hover{ border-color: var(--gold); }
.price-input:focus-visible{
  outline: none;
  border-color: var(--purple-brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--purple-brand) 18%, transparent);
}
.price-dash{ color: var(--text-muted); font-weight: 300; }
.price-reset{
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--purple-deep) 14%, transparent);
  color: var(--text-on-light);
  padding: 9px 16px;
  min-height: 40px;
  border-radius: 999px;
  font-family:'Heebo'; font-weight: 400; font-size: 12.5px;
  letter-spacing:.02em;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.price-reset:hover{
  background: color-mix(in oklab, var(--purple-brand) 8%, #fff);
  border-color: var(--purple-brand);
  color: var(--purple-brand);
}
/* Price filter — must beat inline display:'' from chip/search handlers */
.product.is-hidden-by-price{ display: none !important; }
.product.is-hidden-by-search{ display: none !important; }
.product.is-hidden-by-category{ display: none !important; }
@media (max-width: 700px){
  .shop-tools{ gap: 14px; justify-content: flex-start; }
  .shop-sort-wrap, .shop-price-wrap{ width: 100%; }
  .price-input{ width: 72px; }
}

/* ─────────── Shop search-plus (08/06) — dual-thumb slider, mobile collapse, unified empty ─────────── */

/* Dual-thumb range slider */
.price-slider{
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 36px;
  display: flex;
  align-items: center;
  margin-inline-start: 4px;
}
.price-slider-track{
  position: absolute;
  inset: auto 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: color-mix(in oklab, var(--purple-deep, #2a1048) 14%, transparent);
  border-radius: 999px;
  pointer-events: none;
}
.price-slider-range{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #c9a661), var(--purple-brand, #3d1953));
  border-radius: 999px;
  pointer-events: none;
}
.price-slider input[type="range"]{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 36px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
.price-slider input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--purple-brand, #3d1953);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 8px -2px color-mix(in oklab, var(--purple-deep, #2a1048) 40%, transparent);
  transition: transform .15s var(--ease, ease), box-shadow .15s var(--ease, ease);
}
.price-slider input[type="range"]::-webkit-slider-thumb:hover{
  transform: scale(1.1);
  box-shadow: 0 4px 12px -2px color-mix(in oklab, var(--purple-deep, #2a1048) 50%, transparent);
}
.price-slider input[type="range"]::-moz-range-thumb{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--purple-brand, #3d1953);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 8px -2px color-mix(in oklab, var(--purple-deep, #2a1048) 40%, transparent);
}
.price-slider input[type="range"]::-webkit-slider-runnable-track{ background: transparent; height: 36px; }
.price-slider input[type="range"]::-moz-range-track{ background: transparent; height: 36px; }
.shop-price-display{
  font-weight: 500;
  color: var(--purple-brand, #3d1953);
  margin-inline-start: 4px;
}

/* Mobile collapse toggle (hidden on desktop) */
.shop-filters-toggle{
  display: none;
  max-width: var(--max);
  margin: 0 auto 16px;
  width: 100%;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--purple-deep, #2a1048) 14%, transparent);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--purple-brand, #3d1953);
  cursor: pointer;
  min-height: 48px;
  box-shadow: 0 6px 18px -10px color-mix(in oklab, var(--purple-deep, #2a1048) 28%, transparent);
  transition: border-color .2s, box-shadow .2s;
}
.shop-filters-toggle:hover{ border-color: var(--gold, #c9a661); }
.shop-filters-toggle svg{ width: 18px; height: 18px; flex-shrink: 0; }
.shop-filters-toggle-chev{
  margin-inline-start: auto;
  transition: transform .25s var(--ease, ease);
}
.shop-filters-toggle[aria-expanded="true"] .shop-filters-toggle-chev{ transform: rotate(180deg); }
.shop-filters-toggle-badge{
  background: var(--purple-brand, #3d1953);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  margin-inline-start: 4px;
}

/* Unified empty state */
.shop-empty-unified{
  max-width: 480px;
  margin: 32px auto;
  text-align: center;
  background: #fff;
  border: 1px dashed color-mix(in oklab, var(--gold, #c9a661) 50%, transparent);
  border-radius: 16px;
  padding: 36px 24px;
  box-shadow: 0 8px 24px -16px color-mix(in oklab, var(--purple-deep, #2a1048) 35%, transparent);
}
.shop-empty-icon{
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--lavender-tint, #f3edff) 80%, #fff);
  border-radius: 50%;
  color: var(--purple-brand, #3d1953);
}
.shop-empty-icon svg{ width: 28px; height: 28px; }
.shop-empty-unified h3{
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--purple-deep, #2a1048);
  margin: 0 0 8px;
}
.shop-empty-unified p{
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted, #6a5a7c);
  margin: 0 0 20px;
  line-height: 1.55;
}
.shop-empty-reset{
  padding: 12px 28px;
  font-size: 14px;
  min-height: 44px;
}

/* Mobile: collapse the filter panel */
@media (max-width: 760px){
  .shop-filters-toggle{ display: inline-flex; }
  .shop-filters-panel{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s var(--ease, ease), opacity .25s var(--ease, ease), margin .25s var(--ease, ease);
    margin-bottom: 0;
  }
  .shop-filters-panel.is-open{
    max-height: 1200px;
    opacity: 1;
    margin-bottom: 24px;
  }
  .price-slider{ max-width: 100%; }
  .shop-filter{ margin-bottom: 18px; }
}

/* ─── Free shipping progress bar (added 05/06) ─── */
.shipping-progress{margin:16px 0 14px;padding:14px 16px;display:flex;flex-direction:column;gap:10px;background:linear-gradient(135deg,#fdf6ff,#f5eeff);border:1px solid rgba(168,85,212,.18);border-radius:14px;box-shadow:0 4px 16px rgba(107,47,160,.08)}
.shipping-progress-label{font-size:15px;color:var(--text-on-light,#3a2f4a);text-align:center;line-height:1.4;font-weight:500;transition:color .35s var(--ease,ease)}
.shipping-progress-label strong{color:var(--purple-deep,#4a2c6d);font-weight:800;font-size:17px}
.shipping-progress-track{position:relative;width:100%;height:12px;background:var(--lavender,#e9def5);border-radius:999px;overflow:hidden;box-shadow:inset 0 1px 3px rgba(74,44,109,.18)}
.shipping-progress-fill{position:absolute;inset:0 auto 0 0;height:100%;width:0;background:linear-gradient(90deg,var(--gold,#c9a661) 0%,#e6c987 50%,var(--gold,#c9a661) 100%);border-radius:999px;transition:width .6s var(--ease,cubic-bezier(.4,0,.2,1));box-shadow:0 0 12px rgba(201,166,97,.5)}
.shipping-progress.is-complete{background:linear-gradient(135deg,#fef9ed,#fdf3d8);border-color:rgba(212,168,67,.4);box-shadow:0 4px 18px rgba(212,168,67,.2)}
.shipping-progress.is-complete .shipping-progress-fill{background:linear-gradient(90deg,#d4af6a 0%,#f0d894 50%,#d4af6a 100%);box-shadow:0 0 16px rgba(201,166,97,.65)}
.shipping-progress.is-complete .shipping-progress-label{color:var(--purple-deep,#4a2c6d);font-weight:700;font-size:16px}
html[dir="rtl"] .shipping-progress-fill{inset:0 0 0 auto}
@media (prefers-reduced-motion: reduce){.shipping-progress-fill{transition:none}}

/* ─── Homepage category grid (added 05/06) ─── */
.categories{background:var(--cream-warm);padding:clamp(72px,9vw,120px) var(--pad-x)}
.categories-head{text-align:center;max-width:720px;margin:0 auto 56px}
.categories-head .eyebrow{display:block;margin-bottom:10px}
.categories-head .section-title{margin:0 0 14px}
.categories-head .section-sub{color:var(--text-muted);font-family:'Heebo';font-weight:300;font-size:15px;line-height:1.7;margin:0}
.categories-grid{max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.category-card{position:relative;display:flex;flex-direction:column;align-items:flex-start;text-align:right;background:#fff;border-radius:24px;padding:32px 28px 26px;border:1px solid color-mix(in oklab,var(--purple-deep) 8%,transparent);box-shadow:0 22px 40px -30px color-mix(in oklab,var(--purple-deep) 30%,transparent);text-decoration:none;color:inherit;overflow:hidden;transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease)}
.category-card::before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,color-mix(in oklab,var(--purple-light) 14%,transparent) 0%,transparent 55%);opacity:0;transition:opacity .35s var(--ease);pointer-events:none}
.category-card:hover,.category-card:focus-visible{transform:translateY(-6px);box-shadow:0 34px 56px -28px color-mix(in oklab,var(--purple-deep) 42%,transparent);border-color:color-mix(in oklab,var(--gold) 50%,transparent);outline:none}
.category-card:hover::before,.category-card:focus-visible::before{opacity:1}
.category-icon{width:56px;height:56px;color:var(--purple-light);margin-bottom:18px;display:flex;align-items:center;justify-content:center;background:color-mix(in oklab,var(--purple-light) 10%,transparent);border-radius:16px;padding:12px;transition:color .35s var(--ease),background .35s var(--ease)}
.category-icon svg{width:100%;height:100%;stroke-width:1.5}
.category-card:hover .category-icon{color:var(--gold);background:color-mix(in oklab,var(--gold) 14%,transparent)}
.category-name{font-family:'Frank Ruhl Libre';font-weight:400;font-size:21px;color:var(--text-on-light);margin:0 0 8px}
.category-sub{font-family:'Heebo';font-weight:300;font-size:14px;line-height:1.65;color:var(--text-muted);margin:0 0 22px;flex:1}
.category-cta{display:inline-flex;align-items:center;gap:6px;font-family:'Heebo';font-weight:500;font-size:14px;color:var(--purple-deep);letter-spacing:.02em;transition:color .35s var(--ease),gap .35s var(--ease)}
.category-cta svg{width:14px;height:14px;stroke-width:2;transition:transform .35s var(--ease)}
.category-card:hover .category-cta{color:var(--gold);gap:10px}
.category-card:hover .category-cta svg{transform:translateX(-3px)}
.category-card--accent{background:linear-gradient(150deg,color-mix(in oklab,var(--purple-light) 8%,#fff) 0%,#fff 60%)}
.category-card--accent .category-icon{color:var(--gold);background:color-mix(in oklab,var(--gold) 12%,transparent)}
@media (max-width:900px){.categories-grid{grid-template-columns:repeat(2,1fr);gap:20px}.category-card{padding:26px 22px 22px;border-radius:20px}.category-icon{width:48px;height:48px;padding:10px;margin-bottom:14px}.category-name{font-size:18px}.category-sub{font-size:13px;margin-bottom:16px}}
@media (max-width:560px){.categories-grid{grid-template-columns:1fr;gap:16px}.category-card{flex-direction:row;align-items:center;flex-wrap:wrap;padding:20px 22px;gap:16px}.category-icon{margin-bottom:0;flex-shrink:0}.category-card>h3,.category-card>p,.category-card>.category-cta{flex-basis:calc(100% - 72px)}.category-name{margin:0}.category-sub{margin:4px 0 8px}}

/* ─── Cart improvements: shell + upsell + coupon (added 05/06) ─── */

/* ── Cart empty state CTA (HTML shell) ── */
.cart-empty .btn-gold{margin-top:18px;display:inline-flex;align-items:center;gap:8px}
.cart-empty p{margin:6px 0 0;color:var(--text-on-light,#3a2f4a);opacity:.78;font-size:15px}

/* ── Upsell rail ── */
.upsell-rail{margin:0 0 18px;padding:14px 12px 16px;background:linear-gradient(135deg,#faf5ec 0%,#f5ecdb 100%);border:1px solid rgba(201,166,97,.22);border-radius:14px;box-shadow:0 1px 3px rgba(74,44,109,.05)}
.upsell-rail-title{font-family:"Frank Ruhl Libre",serif;font-size:15px;font-weight:500;color:var(--purple-deep,#4a2c6d);margin:0 0 12px;text-align:center;letter-spacing:.02em}
.upsell-rail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.upsell-card{appearance:none;background:#fff;border:1px solid rgba(74,44,109,.1);border-radius:10px;padding:8px 6px 10px;display:flex;flex-direction:column;align-items:center;gap:4px;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;font-family:inherit;text-align:center}
.upsell-card:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(74,44,109,.12);border-color:rgba(201,166,97,.5)}
.upsell-card:focus-visible{outline:2px solid var(--gold,#c9a661);outline-offset:2px}
.upsell-photo{width:100%;aspect-ratio:1/1;border-radius:8px;overflow:hidden;background:#f7f0e3;display:block}
.upsell-photo img{width:100%;height:100%;object-fit:cover;display:block}
.upsell-name{font-size:12px;font-weight:500;color:var(--purple-deep,#4a2c6d);line-height:1.25;min-height:30px;display:flex;align-items:center;justify-content:center;padding:0 2px}
.upsell-price{font-size:14px;font-weight:600;color:var(--purple-deep,#4a2c6d)}
.upsell-price .currency{font-size:11px;opacity:.7;margin-left:1px}
.upsell-add{font-size:11px;color:var(--gold,#c9a661);font-weight:500;margin-top:2px}
@media (max-width:480px){.upsell-rail{padding:12px 8px}.upsell-rail-grid{gap:6px}.upsell-name{font-size:11px;min-height:28px}.upsell-price{font-size:13px}.upsell-card{padding:6px 4px 8px}}

/* ── Coupon block ── */
.coupon-block{margin:14px 0 4px}
.coupon-toggle{appearance:none;width:100%;background:transparent;border:1px dashed rgba(74,44,109,.28);border-radius:10px;padding:11px 14px;display:flex;align-items:center;justify-content:center;gap:8px;cursor:pointer;font-family:inherit;font-size:14px;color:var(--purple-deep,#4a2c6d);transition:background .18s ease,border-color .18s ease}
.coupon-toggle:hover{background:rgba(245,236,219,.5);border-color:var(--gold,#c9a661)}
.coupon-toggle:focus-visible{outline:2px solid var(--gold,#c9a661);outline-offset:2px}
.coupon-toggle-ico{font-size:16px}
.coupon-toggle-chev{font-size:12px;opacity:.6;transition:transform .2s ease}
.coupon-toggle[aria-expanded="true"] .coupon-toggle-chev{transform:rotate(180deg)}
.coupon-form{margin-top:10px;display:flex;gap:6px;flex-wrap:wrap;align-items:stretch}
.coupon-form input{flex:1;min-width:0;padding:10px 12px;border:1px solid rgba(74,44,109,.2);border-radius:8px;background:#fff;font-family:inherit;font-size:14px;color:var(--purple-deep,#4a2c6d);text-align:center;letter-spacing:.05em}
.coupon-form input:focus{outline:none;border-color:var(--gold,#c9a661);box-shadow:0 0 0 3px rgba(201,166,97,.18)}
.coupon-apply{appearance:none;background:var(--purple-deep,#4a2c6d);color:#fff;border:0;padding:10px 18px;border-radius:8px;font-family:inherit;font-size:14px;font-weight:500;cursor:pointer;transition:background .18s ease}
.coupon-apply:hover{background:#3a2358}
.coupon-msg{width:100%;margin:6px 0 0;font-size:13px;text-align:center;min-height:18px}
.coupon-msg.is-success{color:#2f7a4a;font-weight:500}
.coupon-msg.is-error{color:#b03a3a}
.coupon-applied{display:flex;align-items:center;gap:8px;background:rgba(47,122,74,.08);border:1px solid rgba(47,122,74,.25);border-radius:10px;padding:10px 14px;font-size:14px;color:#2f7a4a}
.coupon-applied-ico{width:22px;height:22px;border-radius:50%;background:#2f7a4a;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0}
.coupon-applied-text{flex:1;color:var(--purple-deep,#4a2c6d)}
.coupon-applied-text strong{color:#2f7a4a}
.coupon-remove{appearance:none;background:transparent;border:0;color:#b03a3a;font-family:inherit;font-size:13px;cursor:pointer;padding:4px 8px;text-decoration:underline;text-underline-offset:2px}
.coupon-remove:hover{color:#7a2828}


/* ─── Header cart count badge (added 05/06) ─── */
.cart-link{ position: relative; }
.header-cart-count{
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold, #c5a361);
  color: #2a1048;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
  pointer-events: none;
}
.header-cart-count[hidden]{ display: none; }

/* ─── crystalGlossary (added 05/06) ─── */
/* ── Crystals dictionary page ── */
.crystals-page .crystals-intro{font-size:1.05rem;line-height:1.9;color:var(--text-on-light);margin:0 0 2.5rem;padding:1.5rem 1.75rem;background:linear-gradient(135deg,rgba(212,175,55,.06),rgba(232,213,232,.18));border-right:3px solid var(--gold);border-radius:.5rem}
.stones-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem;margin:2rem 0 3rem}
.stone-card{background:#fff;border:1px solid rgba(212,175,55,.25);border-radius:.75rem;padding:1.5rem 1.4rem;transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);scroll-margin-top:6rem}
.stone-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(61,25,83,.08);border-color:var(--gold)}
.stone-card h3{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:400;color:var(--purple-deep);margin:0 0 .75rem;padding-bottom:.6rem;border-bottom:1px solid rgba(212,175,55,.3)}
.stone-card p{font-size:.98rem;line-height:1.75;color:var(--text-on-light);margin:0 0 .9rem}
.stone-card .stone-products{font-size:.9rem;color:#6b5b73;margin-top:1rem;padding-top:.85rem;border-top:1px dashed rgba(212,175,55,.35)}
.stone-card .stone-products a{color:var(--gold-dark);text-decoration:none;font-weight:500;border-bottom:1px solid transparent;transition:border-color .25s var(--ease)}
.stone-card .stone-products a:hover{border-bottom-color:var(--gold)}
.crystals-cta{margin:3rem 0 1rem;padding:2.5rem 1.75rem;text-align:center;background:linear-gradient(135deg,var(--lavender,#e8d5e8),var(--cream,#faf7f2));border-radius:.75rem}
.crystals-cta h2{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:400;color:var(--purple-deep);margin:0 0 .75rem;border:0;padding:0}
.crystals-cta p{font-size:1.05rem;line-height:1.7;color:var(--text-on-light);margin:0 0 1.25rem}
.crystals-cta .btn-gold{display:inline-flex;text-decoration:none}
@media(max-width:640px){.stones-grid{grid-template-columns:1fr;gap:1.25rem}.stone-card{padding:1.25rem 1.15rem}.crystals-cta{padding:2rem 1.25rem}.crystals-cta h2{font-size:1.6rem}}

/* ─── testimonialsAvatars (added 05/06) ─── */
/* ── Testimonial card redesign (avatar + verified pill + tonal variation) ── */
.testimonial-head{
  display:flex;align-items:center;gap:12px;
  margin-bottom:2px;
}
.testimonial-avatar{
  flex-shrink:0;
  width:46px;height:46px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Frank Ruhl Libre',serif;
  font-weight:500;
  font-size:22px;
  color:#fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--gold-dark) 60%, transparent),
              inset 0 1px 0 rgba(255,255,255,0.35);
  letter-spacing:0;
  line-height:1;
}
.testimonial-meta{
  display:flex;flex-direction:column;gap:4px;
  min-width:0;
}
.testimonial-meta .testimonial-stars{
  font-size:15px;
  letter-spacing:1.5px;
  line-height:1;
}
.testimonial-verified{
  display:inline-flex;align-items:center;gap:5px;
  align-self:flex-start;
  font-family:'Heebo',sans-serif;
  font-weight:500;
  font-size:11px;
  color: var(--gold-dark);
  background: color-mix(in oklab, var(--gold) 14%, #fff);
  border: 1px solid color-mix(in oklab, var(--gold) 35%, transparent);
  padding: 3px 9px 3px 8px;
  border-radius: 999px;
  line-height:1.4;
  white-space:nowrap;
}
.testimonial-verified span{
  font-size:10px;
  font-weight:700;
}
/* Subtle per-card tonal variation — keeps brand harmony */
.testimonial-card.tc-tone-a{
  background: linear-gradient(180deg, color-mix(in oklab, var(--lavender) 18%, #fff) 0%, #fff 70%);
}
.testimonial-card.tc-tone-b{
  background: linear-gradient(180deg, color-mix(in oklab, var(--cream) 55%, #fff) 0%, #fff 70%);
}
.testimonial-card.tc-tone-c{
  background: linear-gradient(180deg, color-mix(in oklab, var(--gold-light) 14%, #fff) 0%, #fff 70%);
}
.testimonial-card.tc-tone-b .testimonial-avatar{
  background: linear-gradient(135deg, var(--lavender) 0%, var(--purple-deep) 100%);
}
.testimonial-card.tc-tone-c .testimonial-avatar{
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--purple-deep);
}
@media (max-width: 640px){
  .testimonial-avatar{ width:42px;height:42px;font-size:20px; }
  .testimonial-verified{ font-size:10.5px;padding:2px 8px; }
}


/* ─── pinterestPin (added 05/06) ─── */
/* Pinterest "Save" hover button — appears on product card hover (desktop), always visible on touch */
.product-photo { position: relative; }
.pinterest-pin-overlay{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #E60023;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px) scale(.92);
  transition: opacity .25s var(--ease, ease), transform .25s var(--ease, ease), background .2s ease;
  box-shadow: 0 6px 14px -4px rgba(230, 0, 35, .55), 0 2px 6px rgba(0,0,0,.18);
  z-index: 3;
}
.pinterest-pin-overlay svg{ width: 20px; height: 20px; display: block; }
.product:hover .pinterest-pin-overlay,
.product:focus-within .pinterest-pin-overlay{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pinterest-pin-overlay:hover{ background: #ad081b; }
.pinterest-pin-overlay:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
  opacity: 1;
  transform: none;
}
@media (hover: none){
  .pinterest-pin-overlay{ opacity: 1; transform: none; }
}


/* ─── tawkChat (added 05/06) ─── */
/* Tawk.to live chat — z-index hygiene vs .wa-fab / .cart-fab
   WhatsApp FAB stays bottom-right (top), Tawk widget sits bottom-left. */
.wa-fab { z-index: 9998; }
.cart-fab { z-index: 9998; }
/* Tawk iframe containers — keep below our FABs on overlap, above page chrome */
iframe[title*="chat" i],
iframe[src*="tawk.to"],
iframe[id^="tawk"] {
  z-index: 9997 !important;
}
/* On small screens, lift Tawk launcher a bit so it never overlaps the sticky cart bar */
@media (max-width: 640px) {
  iframe[title*="chat" i],
  iframe[src*="tawk.to"],
  iframe[id^="tawk"] {
    bottom: 70px !important;
  }
}


/* ─── seasonalBanner (added 05/06) ─── */
/* ─────────── Seasonal Banner (top-of-page holiday strip) ─────────── */
.seasonal-banner{
  width:100%;
  background: linear-gradient(90deg, var(--purple-deep) 0%, color-mix(in oklab, var(--purple-deep) 65%, var(--gold) 35%) 100%);
  color:#fff;
  font-family:'Heebo', sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:1.3;
  border-bottom:1px solid color-mix(in oklab, var(--gold) 55%, transparent);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  position:relative;
  z-index: 50;
}
.seasonal-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  min-height: 32px;
  padding: 6px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}
.seasonal-banner__label{
  color: var(--gold-light, #f5d98a);
  letter-spacing: .01em;
  text-align:center;
}
.seasonal-banner__cta{
  color:#fff;
  text-decoration: none;
  font-weight:600;
  padding: 3px 12px;
  border: 1px solid var(--gold-light, #f5d98a);
  border-radius: 999px;
  background: color-mix(in oklab, var(--gold) 18%, transparent);
  transition: background .2s var(--ease, ease), color .2s var(--ease, ease);
  white-space: nowrap;
}
.seasonal-banner__cta:hover,
.seasonal-banner__cta:focus-visible{
  background: var(--gold, #c9a14a);
  color: var(--purple-deep, #3a1a5a);
  outline: none;
}
.seasonal-banner__close{
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--gold-light, #f5d98a);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s var(--ease, ease), background .2s var(--ease, ease);
}
.seasonal-banner__close:hover,
.seasonal-banner__close:focus-visible{
  color:#fff;
  background: rgba(255,255,255,.08);
  outline: none;
}
@media (max-width: 560px){
  .seasonal-banner{ font-size: 12px; }
  .seasonal-banner__inner{
    padding: 6px 36px 6px 36px;
    gap: 8px;
  }
  .seasonal-banner__label{ flex-basis: 100%; }
  .seasonal-banner__cta{ font-size: 12px; padding: 2px 10px; }
}


/* ─── thankYouCTAs (added 05/06) ─── */
.thanks-extras{ position:relative; z-index:1; max-width:1080px; width:100%; margin:32px auto 16px; padding:0 8px; color:#fff; }
.extras-heading{ font-family:'Frank Ruhl Libre',serif; font-weight:400; font-size:28px; text-align:center; margin:0 0 8px; color:#fff; letter-spacing:0.01em; }
.extras-sub{ text-align:center; font-size:15px; color:rgba(255,255,255,0.78); margin:0 0 28px; line-height:1.6; }
.extras-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:36px; }
.extra-card{ background:#fff; color:var(--card-text); border-radius:22px; padding:28px 24px 26px; text-align:center; box-shadow:0 20px 50px rgba(107,47,160,0.28); display:flex; flex-direction:column; align-items:center; gap:10px; }
.extra-card h3{ font-family:'Frank Ruhl Libre',serif; font-weight:400; font-size:20px; line-height:1.3; color:var(--card-text); margin:4px 0 2px; }
.extra-card p{ font-size:14px; line-height:1.6; color:var(--card-sub); margin:0 0 12px; }
.extra-icon{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; box-shadow:0 8px 22px rgba(107,47,160,0.25); }
.extra-icon svg{ width:28px; height:28px; }
.ig-icon{ background:linear-gradient(135deg,#feda77 0%,#f58529 25%,#dd2a7b 55%,#8134af 80%,#515bd4 100%); }
.gift-icon{ background:linear-gradient(135deg,var(--gold) 0%,#e6c068 100%); color:#fff; }
.btn-ig{ background:linear-gradient(135deg,#feda77 0%,#f58529 25%,#dd2a7b 55%,#8134af 80%,#515bd4 100%); color:#fff; box-shadow:0 8px 22px rgba(221,42,123,0.3); margin-top:auto; }
.btn-ig:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(221,42,123,0.4); }
.btn-ig svg{ width:18px; height:18px; }
.coupon-row{ display:flex; align-items:stretch; gap:10px; width:100%; margin-top:6px; }
.coupon-box{ flex:1; background:linear-gradient(135deg,#faf3ff,#fff7e6); border:2px dashed var(--gold); border-radius:14px; padding:10px 14px; display:flex; flex-direction:column; align-items:center; gap:2px; }
.coupon-label{ font-size:11px; letter-spacing:0.08em; color:var(--card-sub); text-transform:uppercase; }
.coupon-code{ font-family:'Heebo',sans-serif; font-weight:500; font-size:22px; color:var(--violet); letter-spacing:0.15em; direction:ltr; }
.btn-copy{ background:#fff; border:1.5px solid var(--violet); color:var(--violet); font-family:'Heebo'; font-weight:500; font-size:13.5px; padding:0 16px; border-radius:14px; cursor:pointer; transition:background 0.2s,color 0.2s,transform 0.2s; min-width:108px; }
.btn-copy:hover{ background:var(--violet); color:#fff; transform:translateY(-1px); }
.btn-copy.copied{ background:#3aa856; border-color:#3aa856; color:#fff; }
.share-buttons{ display:flex; gap:8px; width:100%; margin-top:12px; }
.share-btn{ flex:1; display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:11px 12px; border-radius:999px; font-family:'Heebo'; font-weight:500; font-size:13.5px; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s; }
.share-btn svg{ width:16px; height:16px; }
.share-wa{ background:#25D366; color:#fff; }
.share-fb{ background:#1877F2; color:#fff; }
.share-btn:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(0,0,0,0.15); }
.upsell-strip{ background:rgba(255,255,255,0.05); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.08); border-radius:22px; padding:28px 22px 26px; margin-bottom:24px; }
.upsell-heading{ font-family:'Frank Ruhl Libre',serif; font-weight:400; font-size:22px; text-align:center; color:#fff; margin:0 0 6px; }
.upsell-sub{ text-align:center; font-size:14px; color:rgba(255,255,255,0.7); margin:0 0 22px; line-height:1.55; }
.upsell-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.upsell-card{ background:#fff; color:var(--card-text); border-radius:18px; overflow:hidden; text-decoration:none; display:flex; flex-direction:column; box-shadow:0 14px 34px rgba(107,47,160,0.22); transition:transform 0.25s ease, box-shadow 0.25s ease; }
.upsell-card:hover{ transform:translateY(-4px); box-shadow:0 22px 48px rgba(107,47,160,0.32); }
.upsell-photo{ aspect-ratio:1/1; overflow:hidden; background:#faf3ff; }
.upsell-photo img{ width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.upsell-card:hover .upsell-photo img{ transform:scale(1.05); }
.upsell-body{ padding:14px 12px 16px; display:flex; flex-direction:column; align-items:center; gap:3px; text-align:center; }
.upsell-name{ font-family:'Frank Ruhl Libre',serif; font-weight:400; font-size:16px; color:var(--card-text); }
.upsell-note{ font-size:12px; color:var(--card-sub); }
.upsell-price{ font-family:'Heebo'; font-weight:500; font-size:15px; color:var(--violet); margin-top:4px; }
.extras-foot{ text-align:center; font-size:12.5px; color:rgba(255,255,255,0.6); line-height:1.6; margin:8px 0 0; }
@media (max-width:720px){
  .extras-grid{ grid-template-columns:1fr; gap:14px; }
  .upsell-grid{ grid-template-columns:repeat(3,1fr); gap:8px; }
  .upsell-body{ padding:10px 6px 12px; }
  .upsell-name{ font-size:13.5px; }
  .upsell-note{ font-size:11px; }
  .upsell-price{ font-size:13.5px; }
  .extras-heading{ font-size:24px; }
  .extras-sub{ font-size:14px; }
  .coupon-row{ flex-direction:column; gap:8px; }
  .btn-copy{ padding:10px 16px; }
}
@media (max-width:380px){
  .upsell-name{ font-size:12.5px; }
  .upsell-note{ display:none; }
  .share-btn{ font-size:12px; padding:10px 8px; }
}

