/* ════════════════════════════════════════════════════════════
   Chelsea's Products — Shared design system
   Warm boutique luxury: ivory, plum, rose gold, champagne
   ════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --ivory:        #FBF6F0;
  --cream:        #F5EBDF;
  --blush:        #F4DDD2;
  --blush-soft:   #FBEAE3;
  --pearl:        #FFFFFF;
  /* Text */
  --ink:          #2D1B22;
  --plum:         #5A3344;
  --plum-deep:    #3D1F2A;
  --cocoa:        #5C4438;
  --muted:        #8A6F66;
  --hairline:     rgba(45,27,34,0.10);
  --hairline-lt:  rgba(45,27,34,0.06);
  /* Metals */
  --rose-gold:    #C28872;
  --rose-gold-lt: #E0B5A2;
  --rose-dust:    #D89B8C;
  --gold:         #C9A961;
  --gold-deep:    #A8884A;
  --pink-soft:    #E89AA8;
  /* Gradients */
  --grd-rose:     linear-gradient(135deg, #C28872 0%, #D89B8C 50%, #C9A961 100%);
  --grd-plum:     linear-gradient(135deg, #3D1F2A 0%, #5A3344 100%);
  --grd-cream:    linear-gradient(180deg, #FBF6F0 0%, #F5EBDF 100%);
  --grd-blush:    linear-gradient(135deg, #FBEAE3 0%, #F4DDD2 100%);
  --grd-pearl:    linear-gradient(180deg, #FFFFFF 0%, #FBF6F0 100%);
  /* Shadows */
  --shadow-soft:   0 4px 24px rgba(93,51,68,0.06);
  --shadow-card:   0 12px 36px rgba(93,51,68,0.10);
  --shadow-lift:   0 24px 60px rgba(93,51,68,0.16);
  --shadow-glow:   0 12px 40px rgba(194,136,114,0.25);
  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cocoa);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
::selection { background: var(--rose-gold-lt); color: var(--ink); }
h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--grd-plum);
  color: var(--ivory);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.announce-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  align-items: center;
  padding: 0 1rem;
}
.announce-track span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251,246,240,0.86);
  flex-shrink: 0;
}
.announce-track span strong { color: var(--rose-gold-lt); font-weight: 700; letter-spacing: 0.1em; }
.announce-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose-gold); opacity: 0.7; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(251,246,240,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--hairline-lt), 0 8px 24px rgba(93,51,68,0.04);
  padding: 0.7rem 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.nav-logo-text em { font-style: italic; font-weight: 400; color: var(--rose-gold); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--cocoa);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.is-care { color: var(--plum); font-style: italic; }
.nav-right { display: flex; align-items: center; gap: 0.85rem; }
.btn-text-us {
  background: var(--grd-rose);
  color: var(--pearl);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(194,136,114,0.25);
}
.btn-text-us:hover { transform: translateY(-1.5px); box-shadow: 0 10px 28px rgba(194,136,114,0.35); filter: brightness(1.04); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span { display: block; width: 22px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  padding: 4rem 2rem;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, var(--blush-soft) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.mobile-menu a:hover { color: var(--rose-gold); }
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none; border: none;
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 2;
}
.mobile-menu .mob-text-us {
  margin-top: 1.25rem;
  background: var(--grd-rose);
  color: var(--pearl);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grd-rose);
  color: var(--pearl);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.25s;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  box-shadow: 0 8px 22px rgba(194,136,114,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(194,136,114,0.4); filter: brightness(1.04); }
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pearl);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  min-height: 50px;
  box-shadow: 0 4px 14px rgba(93,51,68,0.04);
}
.btn-soft:hover { border-color: var(--rose-gold); color: var(--rose-gold); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(93,51,68,0.08); }
.btn-soft svg { transition: transform 0.3s var(--ease); }
.btn-soft:hover svg { transform: translateX(3px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  min-height: 48px;
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--plum);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.btn-care-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  min-height: 50px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-care-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.btn-care-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(251,246,240,0.4);
  min-height: 48px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-care-outline:hover { border-color: var(--ivory); background: rgba(251,246,240,0.08); }
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%,-50%) scale(0);
  top: var(--ry, 50%); left: var(--rx, 50%);
  pointer-events: none;
}
.btn-ripple.rippling::after { animation: ripple 0.6s ease-out forwards; }
@keyframes ripple { to { transform: translate(-50%,-50%) scale(3); opacity: 0; } }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ─── SECTION BASE ─── */
.section { padding: 6.5rem 2rem; }
.section.tight { padding: 4.5rem 2rem; }
.section.cream { background: var(--cream); }
.section.blush { background: var(--grd-blush); }
.section.pearl { background: var(--grd-pearl); }
.section.deep { background: var(--grd-plum); color: var(--ivory); }
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 920px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--rose-gold); opacity: 0.7; }
.section.deep .section-eyebrow { color: var(--rose-gold-lt); }
.section.deep .section-eyebrow::before, .section.deep .section-eyebrow::after { background: var(--rose-gold-lt); }
.section-headline {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section.deep .section-headline { color: var(--ivory); }
.section-headline em { font-style: italic; font-weight: 400; color: var(--rose-gold); }
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.section.deep .section-sub { color: rgba(251,246,240,0.78); }

/* ─── SMS SIGNUP ─── */
.sms-signup {
  padding: 4rem 2rem;
  background: var(--grd-rose);
  text-align: center;
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.sms-signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(45,27,34,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.sms-signup-card { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.sms-signup-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; opacity: 0.95; margin-bottom: 0.9rem; }
.sms-signup-title { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 500; margin-bottom: 0.7rem; color: var(--pearl); line-height: 1.15; letter-spacing: -0.01em; }
.sms-signup-title em { font-style: italic; }
.sms-signup-sub { font-size: 1.02rem; opacity: 0.95; margin-bottom: 1.6rem; line-height: 1.6; }
.sms-signup-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--ivory); color: var(--ink); padding: 1rem 2rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 12px 30px rgba(45,27,34,0.18); transition: transform 0.3s, box-shadow 0.3s; }
.sms-signup-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(45,27,34,0.25); }
.sms-signup-fine { font-size: 0.74rem; opacity: 0.82; margin-top: 1.1rem; letter-spacing: 0.02em; }

/* ─── FOOTER ─── */
footer {
  background: #1A0F13;
  color: rgba(251,246,240,0.7);
  padding: 5rem 2rem 2rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-gold) 50%, transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.footer-brand .logo-wrap img { height: 42px; }
.footer-brand-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--ivory); }
.footer-brand-text em { font-style: italic; font-weight: 400; color: var(--rose-gold-lt); }
.footer-tagline { font-family: 'Dancing Script', cursive; font-size: 1.4rem; color: var(--rose-gold-lt); margin-bottom: 1.1rem; display: block; }
.footer-brand p { color: rgba(251,246,240,0.6); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.4rem; max-width: 380px; }
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251,246,240,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,246,240,0.7);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-link:hover { border-color: var(--rose-gold); color: var(--rose-gold-lt); background: rgba(194,136,114,0.08); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-lt);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: rgba(251,246,240,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--ivory); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.85rem; font-size: 0.9rem; color: rgba(251,246,240,0.7); }
.footer-contact-item a { color: rgba(251,246,240,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--rose-gold-lt); }
.footer-contact-item svg { color: var(--rose-gold); flex-shrink: 0; }
.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(251,246,240,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar p { color: rgba(251,246,240,0.45); font-size: 0.8rem; }
.footer-bar p a { color: var(--rose-gold-lt); text-decoration: none; border-bottom: 1px dotted rgba(224,181,162,0.4); }
.footer-bar-links { display: flex; gap: 1.5rem; }
.footer-bar-links a { color: rgba(251,246,240,0.45); font-size: 0.78rem; transition: color 0.2s; }
.footer-bar-links a:hover { color: var(--rose-gold-lt); }

/* ─── MOBILE BOTTOM BAR ─── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(251,246,240,0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline-lt);
  padding: 0.6rem 1rem;
  gap: 0.6rem;
}
.mobile-bar a, .mobile-bar button {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem;
  border-radius: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
}
.mobile-bar .mb-text { background: var(--grd-rose); color: var(--pearl); box-shadow: 0 6px 18px rgba(194,136,114,0.25); }
.mobile-bar .mb-wa { background: #25D366; color: var(--pearl); }
.mobile-bar .mb-cart { background: var(--blush-soft); color: var(--plum); border: 1px solid var(--blush); position: relative; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .btn-text-us { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer-bar { flex-direction: column; text-align: center; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .section { padding: 4.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .nav { padding: 0.85rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }
}


/* ── Shop dropdown (added 2026-05-14) ─────────────────────────────────── */
.nav-links li.nav-has-dropdown { position: relative; display: inline-flex; }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown summary {
  color: var(--cocoa);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links .nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-links .nav-dropdown summary::after {
  content: '\25BE';
  font-size: 0.65rem;
  margin-left: 0.15rem;
  transition: transform 0.2s ease;
}
.nav-links .nav-dropdown[open] summary::after { transform: rotate(180deg); }
.nav-links .nav-dropdown summary:hover { color: var(--ink); }
.nav-links .nav-dropdown summary.active { color: var(--ink); }
.nav-links .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 0.45rem;
  min-width: 200px;
  list-style: none;
  margin: 0;
  z-index: 200;
}
.nav-links .nav-dropdown-menu li { width: 100%; }
.nav-links .nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links .nav-dropdown-menu a::after { display: none; }
.nav-links .nav-dropdown-menu a:hover { background: var(--cream); color: var(--ink); }
/* Click-outside hint: a transparent overlay is created by the open state */
.nav-links .nav-dropdown[open]::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 199;
  background: transparent;
}

/* Mobile-menu Shop group */
.mobile-menu details.mobile-nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mobile-menu .mobile-nav-group summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu .mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-menu .mobile-nav-group summary::after {
  content: '\25BE';
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.mobile-menu .mobile-nav-group[open] summary::after { transform: rotate(180deg); }
.mobile-menu .mobile-nav-group a {
  font-size: 1.5rem;
  padding: 0.4rem 1rem;
}
