/* Базовые стили для десктопа и мобильных */
.quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.quantity-input {
  text-align: center;
  margin: 0 5px;
  -moz-appearance: textfield; /* Скрыть стрелки в Firefox */
}

/* Скрыть стрелки в Chrome/Safari */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Стили кнопок */
.quantity-minus, .quantity-plus {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

/* Мобильные стили */
@media (max-width: 768px) {
  .quantity-selector {
    max-width: 100%;
  }

  .quantity-minus, .quantity-plus {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .quantity-input {
    height: 44px;
    font-size: 16px;
  }
}
