/* ============================================
   BOUTONS
   ============================================ */

.btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn.accent {
  background: linear-gradient(135deg, var(--accent), #e14e52);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 90, 95, 0.3);
}

.btn.accent:hover {
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
  transform: translateY(-2px);
}

.btn.accent[type="submit"] {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.btn-counter {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-counter:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}
.btn-counter:active {
  transform: scale(0.95);
}