.product-form__buttons {
  display: flex;
  align-items: center;
  gap: 20px;

  @media screen and (max-width: 768px) {
    gap: 5px;
  }

  .product-form__submit {
    border-radius: 9999px;
    color: white;
    font-weight: bold;
    margin: 0;
    width: 250px;
    height: 50px;

    &::after {
      border-radius: 9999px;
    }

    @media screen and (max-width: 768px) {
      width: 200px;
      font-size: 14px;
    }
  }
}

.shopify-payment-button {
  border-radius: 9999px;
  height: 50px;
  background-color: black;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    font-size: 14px;
  }

  .wallet-button-fade-in {
    height: 100%;
  }

  .shopify-payment-button__button {
    height: 100%;
    padding: 0 10px;

    @media screen and (max-width: 768px) {
      font-size: 14px;
    }
  }
}

.mymoods-buy-buttons__cart-icon {
  display: block;
  margin-right: 20px;

  svg {
    width: 14px;
    display: block;
    object-fit: contain;
  }
}