.btn {
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
}

.chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip.active {
  background: var(--red);
  color: var(--text-primary);
  border-color: var(--red);
}

.menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red), 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--border-gold);
}

.carousel-hint {
  display: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: -0.5rem 0 0.9rem;
}

.menu-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
}

.menu-card h3 {
  font-family: "Playfair Display", serif;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
}

.menu-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.add-item-btn {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  font-size: 1.2rem;
}

.special-badge {
  align-self: start;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(204, 17, 17, 0.2);
  color: #ff8c8c;
  border: 1px solid rgba(204, 17, 17, 0.5);
}

.formule-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(212, 160, 23, 0.05);
  text-align: center;
}

.formule-card.featured {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  padding: 1.2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.field input,
.field textarea,
.field select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  padding: 0.7rem 0.8rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 0.9rem;
}

.stat-number {
  font-family: "Bebas Neue", sans-serif;
  color: var(--gold);
  font-size: 2rem;
}
