/* Announcement Strip — dark editorial marquee */
.strip {
  background: #0c0d0a;
  border-top: 1px solid rgba(244,241,233,.07);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  position: relative;
}
.strip::before,
.strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0;  background: linear-gradient(90deg,  #0c0d0a, transparent); }
.strip::after  { right: 0; background: linear-gradient(270deg, #0c0d0a, transparent); }
.strip__track {
  display: inline-flex;
  animation: marquee 34s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-60);
  display: inline-flex;
  align-items: center;
}
.strip__sep { margin: 0 28px; color: var(--sage); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar — noir luxury */
.navbar {
  height: 62px;
  background: rgba(13,13,13,0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 500;
  gap: 0;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__main {
  font-family: var(--f-lux);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: var(--ivory);
  line-height: 1;
}
.nav-logo__sub {
  font-family: var(--fb);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: var(--sage);
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.nav-link {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-60);
  padding: 0 16px;
  height: 62px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-link:hover { color: var(--ivory); }
.nav-link.active { color: var(--ivory); border-bottom: 1px solid var(--sage); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-icon {
  width: 38px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-60);
  font-size: 18px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  background: none;
  border: none;
  transition: color 0.25s ease;
}
.nav-icon:hover { color: var(--ivory); }
.cart-badge {
  position: absolute;
  top: 13px;
  right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--noir);
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  width: 38px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: var(--ivory-60);
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
}
.nav-hamburger:hover { color: #fff; }

/* Mobile nav dropdown — hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair);
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 498;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.22s ease;
  opacity: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.mobile-nav.open {
  max-height: 400px;
  opacity: 1;
}
.mobile-nav a {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 13px 22px;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mobile-nav a.active { color: var(--ivory); border-left: 2px solid var(--sage); padding-left: 20px; }
.mobile-nav a:last-child { border-bottom: none; }

/* Mobile: full-width cart */
@media (max-width: 480px) {
  .cart-sidebar { width: 100%; right: -100%; }
  .cart-sidebar.open { right: 0; }

  /* Tighten the bar so the logo + icon cluster + hamburger fit a 320px viewport
     (previously overflowed by ~26px, causing site-wide horizontal scroll). */
  .navbar { padding: 0 14px; }
  .nav-icon, .nav-hamburger { width: 34px; }
  .nav-logo__sub { letter-spacing: 0.22em; }
}

/* Mobile breakpoint — show hamburger, hide desktop nav links */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* Search overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 28px;
  z-index: 499;
  border-top: 1px solid var(--hair);
}
.search-overlay.active { display: block; }
.search-overlay form { display: flex; gap: 0; }
.search-overlay input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--ivory-20);
  border-right: none;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: var(--fb);
  outline: none;
}
.search-overlay input::placeholder { color: var(--ivory-40); }
.search-overlay input:focus { border-color: var(--sage); }
.search-overlay button {
  padding: 12px 18px;
  background: var(--sage);
  color: var(--noir);
  border: none;
  font-size: 14px;
}
