/* Checkout + gift card payment method buttons */

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 4px 4px;
}

.payment-methods-label {
  margin: 0 0 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-method-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: #8A49A3;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.payment-method-btn:hover,
.payment-method-btn:focus {
  color: #fff;
  outline: none;
  background: #7a3d94;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 40, 100, 0.22);
}

.payment-method-btn:active {
  transform: translateY(0);
  background: #6d3684;
}

.payment-method-btn__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.payment-method-btn__hint {
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.payment-method-btn--balance,
.payment-method-btn--mobile,
.payment-method-btn--paypal,
.payment-method-btn--card {
  background: #8A49A3;
}

/* Gift card page — same single brand color + uniform size */
.gift-card-pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.gift-card-pay-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  line-height: 1.25;
  white-space: normal;
  text-align: left;
  background: #8A49A3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.gift-card-pay-btn small {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.gift-card-pay-btn--lenco,
.gift-card-pay-btn--paypal,
.gift-card-pay-btn--stripe {
  background: #8A49A3;
}

.gift-card-pay-btn:hover,
.gift-card-pay-btn:focus {
  color: #fff;
  background: #7a3d94;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 40, 100, 0.22);
}

#payment-tbl-billing td.payment-methods-cell {
  border: 0 !important;
  padding: 10px 8px 4px !important;
  background: transparent !important;
}

@media (max-width: 576px) {
  .payment-method-btn,
  .gift-card-pay-btn {
    padding: 13px 14px;
  }

  .payment-method-btn__title,
  .gift-card-pay-btn {
    font-size: 0.95rem;
  }
}
