/* ============================================================
   MANIFEST WITH DANA — Shared Nav + Banner
   Included by all product pages
   ============================================================ */

/* ── Variables (matching styles.css) ─────────────────────── */
:root {
  --rose: #e8b4bc;
  --bordeaux: #7a2535;
  --dark: #1a0a0e;
  --creme: #faf4f0;
}

/* ── Banner ──────────────────────────────────────────────── */
.site-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(122,37,53,0.92); backdrop-filter: blur(12px);
  padding: 10px 0; overflow: hidden; height: 36px;
  display: flex; align-items: center;
}
.site-banner .marquee {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.site-banner .marquee-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  animation: siteMarquee 40s linear infinite;
  padding-left: 48px;
}
.site-banner .marquee span {
  display: inline-block; flex-shrink: 0;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.site-banner .marquee span::before { content: '✦  '; opacity: 0.6; color: var(--rose); }
@keyframes siteMarquee { from {transform: translateX(0);} to {transform: translateX(-50%);} }

/* ── Site Nav ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 199;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(26,10,14,0.55); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .3s;
}
.site-nav__logo {
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 1px;
  flex-shrink: 0;
}
.site-nav__logo strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--creme);
  letter-spacing: 0.04em; display: block;
}
.site-nav__logo small {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.site-nav__links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.site-nav__links a {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: color .3s;
  white-space: nowrap;
}
.site-nav__links a:hover { color: rgba(255,255,255,0.95); }
.site-nav__right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.site-nav__cta {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: 9px 20px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.site-nav__cta:hover { background: rgba(255,255,255,0.2); }

/* ── Cart icon in site-nav ───────────────────────────────── */
.site-nav .mwd-cart-icon-btn {
  color: rgba(255,255,255,0.6);
}
.site-nav .mwd-cart-icon-btn:hover { color: var(--rose); }

/* ── Hero offset (accounts for banner 36px + nav ~56px) ──── */
.site-nav-spacer {
  height: 92px;
}

/* ── HAMBURGER BURGER (mobile uniquement) ────────────────── */
.nav-burger {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid rgba(232,180,188,0.25);
  border-radius: 100px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: rgba(232,180,188,0.55); }
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: rgba(250,244,240,0.85);
  transition: transform .3s, opacity .3s;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── DRAWER MOBILE ───────────────────────────────────────── */
.nav-drawer-backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
body.nav-open .nav-drawer-backdrop {
  opacity: 1; pointer-events: auto;
}
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 78%; max-width: 340px;
  background: linear-gradient(180deg, #1a0a0e 0%, #0d0508 100%);
  border-left: 1px solid rgba(232,180,188,0.12);
  z-index: 999;
  padding: 80px 32px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  font-size: 30px; font-weight: 200;
  color: rgba(250,244,240,0.5);
  cursor: pointer; line-height: 1;
  width: 36px; height: 36px;
  transition: color .2s;
}
.nav-drawer__close:hover { color: var(--rose); }
.nav-drawer__logo {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232,180,188,0.1);
  margin-bottom: 24px;
}
.nav-drawer__logo strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--creme); letter-spacing: 0.04em;
}
.nav-drawer__logo small {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.nav-drawer__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.nav-drawer__links a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  color: rgba(250,244,240,0.85);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,180,188,0.06);
  transition: color .2s, padding-left .2s;
}
.nav-drawer__links a:hover {
  color: var(--rose);
  padding-left: 8px;
}
.nav-drawer__cta {
  display: block;
  margin-top: 28px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #9b3347, var(--bordeaux));
  color: var(--creme);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(122,37,53,0.4);
}
body.nav-open { overflow: hidden; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav__links { display: none; }
  .site-nav { padding: 12px 24px; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .site-nav__cta { display: none; }
}
