.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  align-items: center;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  min-width: 70px;
  height: 40px;
  border: 1px solid #30363d;
  background: #ffffff;
  color: #0d1117;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.badge-visa {
  background: #1a1f71;
  color: #f7b600;
  font-style: italic;
}

.badge-mastercard {
  background: #ffffff;
  color: #eb001b;
  position: relative;
  padding-left: 36px;
}
.badge-mastercard::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #eb001b;
  border-radius: 50%;
  box-shadow: 10px 0 0 #f79e1b;
}

.badge-mir {
  background: #00a04e;
  color: #ffffff;
}

.badge-sbp {
  background: linear-gradient(135deg, #5b57a1 0%, #2dabe2 100%);
  color: #ffffff;
}

.badge-tpay {
  background: #ffdd2d;
  color: #000000;
}

.badge-tbank {
  background: #ffdd2d;
  color: #000000;
  font-weight: 700;
}
.badge-tbank::before {
  content: "T";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #000000;
  color: #ffdd2d;
  border-radius: 4px;
  margin-right: 8px;
  text-align: center;
  line-height: 22px;
  font-weight: 900;
}
