/* ============================================
   VIVID FUSION — CANONICAL NAV STYLES
   nav.css — linked from every page
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

#site-nav {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 36px !important;
  z-index: 99999 !important;
  isolation: isolate !important;
  pointer-events: all !important;
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-sizing: border-box !important;
  transform: translateZ(0) !important; /* force GPU layer — always on top */
  cursor: default !important;
}

/* Logo */
#site-nav .nav-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}
#site-nav .nav-logo img {
  height: 38px !important;
  width: auto !important;
  display: block !important;
  background: transparent !important;
  mix-blend-mode: screen !important;
}

/* Link list — remove any nav-right wrapper effect */
#site-nav .nav-right {
  display: contents !important; /* collapses the wrapper, children go into nav flex */
}

#site-nav .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#site-nav .nav-links li {
  margin: 0 !important;
  padding: 0 !important;
}

#site-nav .nav-links a {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0em !important;
  text-transform: none !important;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  transition: color 0.18s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  pointer-events: all !important;
  position: relative !important;
  z-index: 99999 !important;
}

#site-nav .nav-links a:hover {
  color: rgba(255,255,255,0.9) !important;
  text-transform: none !important;
}

#site-nav .nav-links a.active {
  color: #fff !important;
  text-transform: none !important;
  font-weight: 500 !important;
  border-bottom: 1.5px solid rgba(255,255,255,0.5) !important;
  padding-bottom: 2px !important;
}

/* Cart icon */
#site-nav .nav-cart,
#site-nav .cart-btn,
#site-nav #cart-btn,
#site-nav #cart-nav-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

#site-nav .nav-cart svg,
#site-nav .cart-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #fff !important;
  fill: none !important;
  stroke-width: 1.8px !important;
  display: block !important;
}

/* Cart badge */
#site-nav .cart-badge,
#site-nav .badge {
  position: absolute !important;
  top: -5px !important;
  right: -7px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #c8ff00 !important;
  color: #000 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
/* Badge only shows when the cart has items (JS toggles .visible). */
#site-nav .cart-badge.visible,
#site-nav .badge.visible { display: flex !important; }

/* ==============================================
   CURSOR — always rides ON TOP of header & links
   Custom cursor dot/ring sit above the nav (z 99999)
   ============================================== */
#cursor-dot,
#cursor-ring {
  z-index: 2147483647 !important;
  pointer-events: none !important;
}

/* Pointer cursor on every interactive nav element so the OS
   cursor also shows when the page hides it via cursor:none */
#site-nav .nav-logo,
#site-nav .nav-logo img,
#site-nav .nav-links a,
#site-nav .nav-cart,
#site-nav .cart-btn,
#site-nav #cart-btn,
#site-nav #cart-nav-btn,
#site-nav #cartLink,
#site-nav #cart-link {
  cursor: pointer !important;
}

/* ==============================================
   ACCESSIBILITY — visually-hidden, skip-link, focus
   ============================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 2147483646;
  background: #c8ff00;
  color: #000;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

#site-nav .nav-links a:focus-visible,
#site-nav .cart-btn:focus-visible,
#site-nav .nav-logo:focus-visible {
  outline: 2px solid #c8ff00 !important;
  outline-offset: 4px !important;
  border-radius: 3px !important;
}

/* ==============================================
   FOOTER NEWSLETTER — sleek email capture
   ============================================== */
.site-footer .footer-newsletter {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.site-footer .fn-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,255,0,0.85);
  margin-bottom: 6px;
}
.site-footer .fn-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.site-footer .fn-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.site-footer .fn-row {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
.site-footer .fn-row input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: border-color 0.18s, background 0.18s;
}
.site-footer .fn-row input:focus {
  outline: none;
  border-color: rgba(200,255,0,0.5);
  background: rgba(255,255,255,0.06);
}
.site-footer .fn-row input::placeholder { color: rgba(255,255,255,0.3); }
.site-footer .fn-row button {
  padding: 0 22px;
  background: #c8ff00;
  border: none;
  border-radius: 8px;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.site-footer .fn-row button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(200,255,0,0.32);
}
.site-footer .fn-row button:disabled { opacity: 0.6; cursor: default; }
.site-footer .fn-msg {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-height: 16px;
  transition: color 0.2s;
}
@media (max-width: 540px) {
  .site-footer .fn-row { flex-direction: column; }
  .site-footer .fn-row button { padding: 14px; }
}

/* ==============================================
   SITE FOOTER — minimal, sleek, sitewide
   ============================================== */
.site-footer {
  position: relative;
  z-index: 5;
  padding: 56px 36px 32px;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: rgba(255,255,255,0.55);
}
.site-footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px 40px;
  align-items: start;
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.site-footer .footer-brand img {
  height: 32px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.18s ease;
}
.site-footer .footer-links a:hover { color: rgba(255,255,255,0.9); }
.site-footer .footer-meta {
  grid-column: 1 / -1;
  text-align: left;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.site-footer .footer-meta a { color: inherit; text-decoration: none; }
.site-footer .footer-meta a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 860px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   MOBILE NAV — desktop ≥860px keeps current design
   Below 860px: hamburger drawer with full-screen menu
   ============================================== */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  z-index: 100002;
}
.nav-hamburger span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), top 0.32s, opacity 0.18s;
}
.nav-hamburger span:nth-child(1) { top: 13px; }
.nav-hamburger span:nth-child(2) { top: 19px; }
.nav-hamburger span:nth-child(3) { top: 25px; }
.nav-hamburger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 100001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.32s cubic-bezier(0.16,1,0.3,1), transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; text-align: center; }
.mobile-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
  display: inline-block;
}
.mobile-drawer a:hover, .mobile-drawer a.active { color: #c8ff00; transform: translateY(-2px); }
.mobile-drawer .md-cart {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-block;
}
.mobile-drawer .md-cart:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

@media (max-width: 860px) {
  #site-nav { padding: 0 20px !important; }
  #site-nav .nav-right > .nav-links { display: none !important; }
  #site-nav .nav-hamburger { display: block; }
}
body.no-scroll { overflow: hidden; }

/* Footer "Shop by color" column */
.footer-colors .fc-head { opacity:.5; font-size:10px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:8px; color:rgba(255,255,255,.5); }
.footer-colors li { margin:2px 0; }
