
.checkout-box {
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  max-width:480px;
  width:100%;
  padding:30px 35px;
  text-align:center;
}
.checkout-logo {
  width:80px;
  margin-bottom:10px;
}
.checkout-header h2 {
  color:#111;
  margin:5px 0;
}
.checkout-header p {
  color:#555;
  font-size:14px;
  margin-bottom:20px;
}
.pago-metodo {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 14px 15px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.pago-metodo label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pago-metodo input[type="radio"]:checked + label,
.pago-metodo label:has(input:checked) {
  border-color: #1ebe5d;
  background: #e9f9ef;
  color: #111;
}

.pago-metodo label:hover {
  border-color: #1ebe5d;
  background: #f0fff5;
}

form label {
  display:block;
  text-align:left;
  margin-bottom:12px;
  color:#333;
  font-weight:500;
}

.btn-pagar {
  background:#1ebe5d;
  color:#fff;
  border:none;
  padding:14px 22px;
  width:100%;
  border-radius:50px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
}
.btn-pagar:hover {
  background:#169b4a;
}

.datos-cuenta {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  margin-top: 10px;
  color: #333;
  font-size: 14px;
  text-align: left;
  display: none; /* se oculta hasta que seleccionen la opción */
}

.datos-cuenta p {
  margin: 4px 0;
}


