/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--yellow);
  box-shadow: 0 2px 20px rgba(255,224,0,0.1);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(226, 204, 76, 0.6));
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--yellow);
  line-height: 1;
}

.nav-logo .logo-text span {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--yellow);
  background: rgba(255,224,0,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-wsp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-wsp:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.btn-wsp svg { width: 18px; height: 18px; }

.btn-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: var(--transition);
}

.btn-cart:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-cart svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--yellow);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.btn-menu {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}

.btn-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 14px 16px;
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-mobile a:hover { color: var(--yellow); padding-left: 24px; }

.nav-mobile .btn-wsp {
  margin-top: 16px;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-wsp .wsp-text { display: none; }
  .btn-menu { display: flex; }
}

@media (max-width: 480px) {
  .nav-logo .logo-text { font-size: 18px; }
}
