.product-form--style2 .product-form__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;

  &.quantity-selector-wrap {
    justify-content: flex-end;
  }
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 45px;
  overflow: hidden;
}

.quantity-button {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
}
@media (max-width: 959px) {
  .quantity-button {
    width: 33px;
  }
}

.quantity-button:hover {
  background: #f5f5f5;
}

.quantity-input {
  width: 40px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
}

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

.product-form__submit {
  min-height: 36px;
  background: var(--theme-color);
  color: white;
  border: none;
  border-radius: 45px;
  cursor: pointer;
  padding-left: 40px;
  padding-right: 40px;
}

.product-form__submit:hover {
  background: var(--theme-color);
}

.product-form__submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-form__submit .button-text-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  .button-text{
    text-transform: uppercase;
  }
}

.product-form__submit .button-text-wrapper img {
  width: 21px;
  height: 21px;
}
