.product-button-group__button--with-icon {
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #333;
  padding: 12px 24px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  transition: all 100ms ease-in-out;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  background: transparent;
}
.product-button-group__button--with-icon i {
  align-content: center;
}
.product-button-group__button--with-icon:hover {
  background: #333;
  color: #fff;
  box-shadow: none;
}
.product-button-group__button--with-icon:hover span {
  color: #fff;
}
.product-button-group__button--with-icon:hover i {
  color: #fff;
}

.product-button-group__button--with-icon.is-primary {
  background: #FF9A26;
  color: #fff;
  box-shadow: none;
}
.product-button-group__button--with-icon.is-primary span {
  color: #fff;
}
.product-button-group__button--with-icon.is-primary i {
  color: #fff;
}
.product-button-group__button--with-icon.is-primary:hover {
  background: transparent;
  color: #333;
  box-shadow: inset 0 0 0 2px #333;
}
.product-button-group__button--with-icon.is-primary:hover span {
  color: #333;
}
.product-button-group__button--with-icon.is-primary:hover i {
  color: #333;
}

.product-button-group__button--with-icon.has-wawi-gradient {
  color: #333;
  box-shadow: none;
  background-image: linear-gradient(64deg, #FF9A26 0%, #FFC935 100%);
  background-color: #FF9A26;
  transition: none;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.product-button-group__button--with-icon.has-wawi-gradient span {
  color: #333;
}
.product-button-group__button--with-icon.has-wawi-gradient i {
  color: #333;
}

.product-button-group__button--with-icon.has-wawi-gradient:hover {
  background: linear-gradient(64deg, #FFC935 0%, #FF9A26 100%);
}

.product-button-group__button--with-icon.is-inverted {
  box-shadow: inset 0 0 0 2px #fff;
  background: #fff;
}
.product-button-group__button--with-icon.is-inverted:hover {
  background: transparent;
}

.product-button-group__button--with-icon.has-no-hover.is-inverted:hover {
  box-shadow: inset 0 0 0 2px #fff;
  color: inherit;
  background: #fff;
  transition-delay: 0ms;
}
.product-button-group__button--with-icon.has-no-hover.is-inverted:hover span {
  color: #333;
}

.product-button-group__button--with-icon.has-dark-hover:hover {
  background: #142830;
}

@media (max-width: 991px) {
  .product-button-group__button--with-icon {
    font-size: 14px;
    padding: 12px 16px;
  }
}
