/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 184, 75, 0.2);
  transition: all 0.4s ease;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 72px;
  width: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'EB Garamond', serif;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--honey-dark); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--honey);
  color: var(--warm-brown);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-cta:hover {
  background: var(--honey);
  color: white;
}

/* Cart button in nav */
.cart-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--warm-brown); transition: color 0.3s; }
.cart-btn:hover { color: var(--honey-dark); }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--honey); color: white; font-family: 'Cinzel', serif; font-size: 0.6rem; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: scale(0.7); }
.cart-count.visible { opacity: 1; transform: scale(1); }


/* ─── MOBILE HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--warm-brown);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
