/*
 * Файл сформирован из assets/css/style.css.
 * Исходные диапазоны строк: 875-920.
 */

/* ===== СЕЛЕКТОР КОЛИЧЕСТВА В КОРЗИНЕ ===== */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-qty {
  background: linear-gradient(145deg, var(--accent-olive), #4a6532) !important;
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-sm);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-qty:hover {
  background: var(--accent-olive-light) !important;
  transform: scale(1.05);
}

.btn-qty:active {
  transform: scale(0.95);
}

.qty-display {
  width: 60px;
  height: 38px;
  text-align: center;
  background-color: #1e261e !important;
  border: 2px solid var(--accent-olive) !important;
  border-radius: var(--border-radius-sm);
  color: white !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
}
