.qty-control {
  display: grid;
  grid-template-columns: 46px minmax(70px, 1fr) 46px;
  align-items: center;
  gap: 9px;
}

.qty-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px #70202a26;
  touch-action: manipulation;
  transition: transform .12s ease, background .12s ease;
}

.qty-button:hover {
  background: var(--wine);
}

.qty-button:active {
  transform: scale(.94);
}

.qty-button:focus-visible {
  outline: 3px solid #d69a4266;
  outline-offset: 3px;
}

.qty-input {
  height: 46px;
  padding: 8px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 560px) {
  .qty-control {
    grid-template-columns: 48px minmax(80px, 1fr) 48px;
    gap: 12px;
  }

  .qty-button {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .qty-input {
    height: 48px;
  }
}
