/* Stripe Buy Button */
a.stripe-buy-btn {
  display: flex;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  margin: 0;
  border: none;
  border-radius: 0;
  background-color: #363636;
  color: #f0f0f0 !important;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

a.stripe-buy-btn:hover {
  background-color: #f0f0f0;
  color: #363636 !important;
  transform: scale(1.01);
}

a.stripe-buy-btn:focus-visible {
  outline: 2px solid #363636;
  outline-offset: 3px;
}

a.stripe-buy-btn:active {
  transform: scale(.99);
}

/* Buttons in WooCommerce shop grids */
a.stripe-buy-btn.sbb-loop {
  margin-top: 10px;
  min-height: 44px;
  font-size: 15px;
}

@media (max-width: 767px) {
  a.stripe-buy-btn {
    min-height: 48px;
    padding: 12px 10px;
  }
}
