.navbar {
  width: 100%;
  height: 82px;
  padding: 0 8%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--black);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--beige-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-button {
  position: relative;
  border: none;
  background: var(--black);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--beige-dark);
  color: var(--black);
  width: 21px;
  height: 21px;
  font-size: 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}