.payment-methods-list {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin-bottom: 32px;
  overflow: hidden;
}
.payment-method-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid #eee;
  font-size: 1.08em;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  position: relative;
}
.payment-method-row:last-child {
  border-bottom: none;
}
.payment-method-row:hover, .payment-method-row input[type="radio"]:checked ~ .payment-method-name {
  background: #f7f7f7;
}
.payment-method-row input[type="radio"] {
  display: none;
}
.custom-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #bbb;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-right: 12px;
  flex-shrink: 0;
}
.payment-method-row input[type="radio"]:checked + .custom-radio {
  border-color: #F26522;
}
.payment-method-row input[type="radio"]:checked + .custom-radio::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #F26522;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}
.payment-method-logo {
  height: 32px;
  width: auto;
  margin-left: 18px;
  display: inline-block;
}
.payment-method-name {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-method-free {
  color: #bbb;
  font-size: 0.95em;
  font-weight: 400;
  margin-left: 6px;
}
.payment-info-block {
  background: #FAFAFA;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin-bottom: 32px;
  padding: 28px 24px 18px 24px;
}
.payment-info-block h3 {
  font-size: 1.18em;
  font-weight: bold;
  margin-bottom: 18px;
}
.payment-addresses {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.address-block {
  margin-bottom: 0;
}
.address-title {
  font-weight: bold;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.address-edit {
  color: #78A59A;
  text-decoration: underline;
  font-size: 1em;
  font-weight: bold;
  margin-left: 8px;
  transition: color 0.2s;
}
.address-edit:hover {
  color: #F26522;
}
.btn-primary.payment-btn {
  width: 320px;
  max-width: 100%;
  margin: 32px auto 0 auto;
  display: block;
  font-size: 1.15em;
  padding: 18px 0;
  border-radius: 30px;
}
.payment-disclaimer {
  color: #bbb;
  font-size: 0.98em;
  text-align: center;
  margin-top: 18px;
}
.payment-disclaimer a {
  color: #78A59A;
  text-decoration: underline;
}
.payment-info-block + .payment-info-block {
  margin-top: 24px;
}
