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

.product-button-group__button.is-white {
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
}
.product-button-group__button.is-white:hover {
  background: #fff;
  color: #333333;
}
.product-button-group__button.is-white:hover span {
  color: #333333;
}

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

.product-button-group__button.has-wawi-gradient {
  color: #333333;
  box-shadow: none;
  background: transparent;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
}
.product-button-group__button.has-wawi-gradient::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(64deg, #FFC935 0%, #FF9A26 100%);
  display: block;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  margin-left: 0 !important;
}
.product-button-group__button.has-wawi-gradient::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(64deg, #FF9A26 0%, #FFC935 100%);
  display: block;
}
.product-button-group__button.has-wawi-gradient:hover::after {
  opacity: 1;
  margin-left: 0 !important;
}
.product-button-group__button.has-wawi-gradient span {
  color: #333333;
}

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

.product-button-group__button.has-no-hover.is-inverted:hover {
  box-shadow: inset 0 0 0 2px #fff;
  color: inherit;
  background: #fff;
}

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

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