/* ======================== */
/* Nav bar */

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  height: 56px;

  position: sticky;
  top: 0;
  z-index: 100;

  background-color: #0c0c0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Brand / logo link sits on the left */
nav a.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-right: 16px;
  letter-spacing: 0.03em;
}

/* Regular nav links */
nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background-color 0.15s, color 0.15s;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Push user info + cart to the right */
nav .nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav .nav-user {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
  nav {
    gap: 2px;
    padding: 0;
  }
}

/* Cart icon + counter */
nav .nav-cart {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background-color 0.15s;
}

nav .nav-cart:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

nav .cart-icon {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

nav turbo-frame p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
