/**
 * Стили для элементов управления корзиной в списке товаров
 */

/* Контейнер для элементов управления корзиной */
.cart-controls-container {
  display: flex;
  align-items: center;
}

/* Стили для элементов управления количеством в списке товаров */
.base-card__footer .product__quantity-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  border-radius: 8px;
  background-color: #f5f5f5;
  padding: 0 8px;
}

.base-card__footer .product__quantity-decrease,
.base-card__footer .product__quantity-increase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 0;
}

.base-card__footer .product__quantity-value {
  display: inline-block;
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

/* Стили при наведении */
.base-card__footer .product__quantity-decrease:hover,
.base-card__footer .product__quantity-increase:hover {
  color: #0066cc;
}

/* Стили для активного состояния */
.base-card__footer .product__quantity-decrease:active,
.base-card__footer .product__quantity-increase:active {
  transform: scale(0.95);
}
