.cc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  z-index: 9999;
  overflow-y: auto; /* 👈 CLAVE */
  -webkit-overflow-scrolling: touch; /* 👈 iOS FIX */
}

.cc-modal.open {
  display: block;
}

.cc-modal-content {
  background: #fff;
  max-width: 600px;
  margin: 40px auto;
  padding: 40px 30px; /* 👈 más aire */
  border-radius: 10px;
  position: relative;
}

.cc-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px!important; /* 👈 MÁS GRANDE */
  font-weight: bold;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.cc-close:hover {
  color: #000;
}

.cc-toggle {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}



/* CONTENEDOR MODAL */
.rcp_form {
    max-width: 500px;
    margin: auto;
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    font-family: system-ui, sans-serif;
}

/* TITULOS */
.rcp_form h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* OPCIONES SUSCRIPCIÓN */
.rcp_subscription_level {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rcp_subscription_level:hover {
    border-color: #0073aa;
    background: #f8fbff;
}

/* RADIO BONITOS */
.rcp_subscription_level input[type="radio"] {
    accent-color: #0073aa;
}

/* SELECCIONADO */
.rcp_subscription_level input[type="radio"]:checked + label {
    font-weight: bold;
}

/* BOTÓN */
.rcp_form input[type="submit"] {
    width: 100%;
    background: #0073aa;
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.rcp_form input[type="submit"]:hover {
    background: #005f8d;
}

/* CHECKBOXES */
.rcp_form input[type="checkbox"] {
    accent-color: #0073aa;
}





/* RADIO BUTTONS */
.cc-modal input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.cc-modal input[type="radio"]:checked {
    border-color: #0073aa;
    background: #0073aa;
}

.cc-modal input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* CHECKBOX */
.cc-modal input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-modal input[type="checkbox"]:checked {
    background: #0073aa;
    border-color: #0073aa;
}

.cc-modal input[type="checkbox"]:checked::after {
    content: "✔";
    color: white;
    font-size: 12px;
    line-height: 1;
}