.product-detail__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail__form .form__error-message {
  display: flex;
  gap: 4px;
  align-items: center;
  color: rgb(var(--color-tag-background));
}

.product-detail__form .form__error-message::after {
  content: attr(data-message);
}

.product-detail__form .form__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

theme-product-form theme-input-number button{
  padding:0;
}

theme-product-form theme-input-number button:not([disabled]){
  cursor: pointer;
}

theme-product-form theme-input-number{
  border-radius:60px ;
  overflow: hidden;
 border:1px solid rgb(var(--color-entry-line));
}
theme-product-form theme-input-number::after,
theme-product-form theme-input-number::before{
  display: none;
}

theme-product-form .product-add-to-cart-button{
  border:1px solid rgb(var(--color-entry-line));
}

theme-product-form .product-button-group{
  display: flex;
  gap:10px;
}
theme-product-form .pay-button-common-item{
  height:auto !important;
  line-height: var(--button-line-height) !important;
  margin:0 !important;
}
[data-pay-button-layout="column"], [data-pay-button-layout="buyNowRow"]{
  margin: 0 !important;
}
@media(max-width:959px){
  theme-product-form theme-input-number,
  theme-product-form .product-add-to-cart-button{
    width:50%;
  }
}