.nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.9rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.nav-item:hover { background: rgba(255,255,255,0.08); }
.nav-item.active { background: rgba(255,255,255,0.14); color: #fff; }

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.68rem;
  color: #8B948E;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  min-width: 60px;
}
.bottom-nav-item.active { color: #0F6B4C; font-weight: 600; }

.card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(22,36,29,0.06);
}

.stat-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(22,36,29,0.06);
  padding: 1rem 1.1rem;
}

.qty-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  background: #F1EEE7;
  user-select: none;
}

#mic-btn.mic-active {
  background: #F8E2DF;
  color: #C1443C;
  animation: pulse-mic 1.1s ease-in-out infinite;
}

@keyframes pulse-mic {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,68,60,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(193,68,60,0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
