/* =========================================================
REMME-LOS CUSTOM DONATION FORM
Blue & White Design
========================================================= */

.rld-donation-form {
position: relative;
max-width: 760px;
margin: 0 auto;
padding: 32px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0, 64, 77, 0.10);
box-sizing: border-box;
color: #00404d;
}

/* =========================================================
PROGRESS BAR
========================================================= */

.rld-progress {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 6px;
margin-bottom: 32px;
}

.rld-progress-step {
padding: 11px 5px;
text-align: center;
font-size: 12px;
font-weight: 700;
color: #00404d;
background: #eaf4f7;
border-radius: 5px;
transition: all 0.2s ease;
}

.rld-progress-step.active {
background: #06667c;
color: #ffffff;
}

.rld-progress-step.complete {
background: #208da1;
color: #ffffff;
}

/* =========================================================
STEPS
========================================================= */

.rld-step {
display: none;
}

.rld-step.active {
display: block;
}

.rld-step h3 {
margin: 0 0 24px;
color: #00404d;
font-size: 26px;
line-height: 1.25;
}

/* =========================================================
LABELS & FORM FIELDS
========================================================= */

.rld-label {
display: block;
margin: 0 0 7px;
font-weight: 700;
color: #00404d;
}

.rld-field {
width: 100%;
min-height: 48px;
margin: 0 0 20px;
padding: 12px 14px;
border: 1px solid #c9dfe4;
border-radius: 5px;
background: #ffffff;
color: #00404d;
box-sizing: border-box;
font-size: 16px;
outline: none;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rld-field:focus {
border-color: #06667c;
box-shadow: 0 0 0 2px rgba(6, 102, 124, 0.12);
}

textarea.rld-field {
min-height: 110px;
resize: vertical;
}

/* =========================================================
DONATION AMOUNTS
========================================================= */

.rld-amounts {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-bottom: 20px;
}

.rld-amounts button {
min-height: 52px;
padding: 10px;
border: 2px solid #06667c;
border-radius: 5px;
background: #ffffff;
color: #06667c;
font-weight: 700;
cursor: pointer;
font-size: 16px;
transition: all 0.2s ease;
}

.rld-amounts button:hover,
.rld-amounts button:focus,
.rld-amounts button.selected {
background: #06667c;
color: #ffffff;
border-color: #06667c;
outline: none;
}

.rld-amounts button:active {
transform: translateY(1px);
}

/* =========================================================
PAYMENT OPTIONS
========================================================= */

.rld-payment-options {
display: grid;
gap: 12px;
margin-bottom: 24px;
}

.rld-payment-option {
display: flex;
gap: 14px;
align-items: flex-start;
padding: 18px;
border: 2px solid #c9dfe4;
border-radius: 8px;
background: #ffffff;
cursor: pointer;
transition: all 0.2s ease;
}

.rld-payment-option:hover {
border-color: #06667c;
}

.rld-payment-option:has(input:checked) {
border-color: #06667c;
background: #eef8fa;
}

.rld-payment-option input {
margin-top: 4px;
accent-color: #06667c;
}

.rld-payment-option strong {
display: block;
color: #00404d;
}

.rld-payment-option small {
display: block;
margin-top: 4px;
color: #4f6b72;
line-height: 1.4;
}

/* =========================================================
CHECKBOX
========================================================= */

.rld-checkbox {
display: flex;
gap: 9px;
align-items: center;
margin: 0 0 24px;
color: #00404d;
font-weight: 600;
}

.rld-checkbox input {
width: 18px;
height: 18px;
margin: 0;
accent-color: #06667c;
}

/* =========================================================
BUTTONS
========================================================= */

.rld-buttons {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
margin-top: 24px;
}

.rld-primary,
.rld-back {
min-height: 50px;
padding: 12px 24px;
border-radius: 5px;
font-weight: 700;
cursor: pointer;
font-size: 16px;
transition: all 0.2s ease;
box-sizing: border-box;
}

/* Continue / Primary button */

.rld-primary {
border: 2px solid #06667c;
background: #06667c;
color: #ffffff;
}

.rld-primary:hover,
.rld-primary:focus {
border-color: #00404d;
background: #00404d;
color: #ffffff;
outline: none;
}

.rld-primary:active {
transform: translateY(1px);
}

.rld-primary:disabled {
opacity: 0.6;
cursor: wait;
}

/* Back button */

.rld-back {
border: 2px solid #06667c;
background: #ffffff;
color: #06667c;
}

.rld-back:hover,
.rld-back:focus {
border-color: #06667c;
background: #eaf4f7;
color: #00404d;
outline: none;
}

.rld-back:active {
transform: translateY(1px);
}

/* =========================================================
REVIEW
========================================================= */

.rld-review {
border: 1px solid #c9dfe4;
border-radius: 8px;
overflow: hidden;
background: #ffffff;
}

.rld-review > div {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 15px 16px;
border-bottom: 1px solid #e2eef1;
}

.rld-review > div:last-child {
border-bottom: 0;
}

.rld-review span {
color: #4f6b72;
}

.rld-review strong {
color: #00404d;
text-align: right;
}

/* =========================================================
ERROR MESSAGE
========================================================= */

.rld-error {
min-height: 20px;
margin-top: 15px;
color: #b32d2e;
font-weight: 600;
line-height: 1.4;
}

/* =========================================================
HIDDEN ELEMENTS
========================================================= */

.rld-hidden {
display: none !important;
}

/* =========================================================
SUCCESS
========================================================= */

.rld-success {
padding: 30px;
text-align: center;
background: #eef8fa;
border: 1px solid #c9dfe4;
border-radius: 8px;
}

.rld-success h3 {
margin-bottom: 10px;
color: #00404d;
}

.rld-success p {
color: #00404d;
line-height: 1.6;
}

/* =========================================================
HONEYPOT
========================================================= */

.rld-honeypot {
position: absolute !important;
left: -9999px !important;
width: 1px !important;
height: 1px !important;
overflow: hidden !important;
}

/* =========================================================
LOADING OVERLAY
========================================================= */

.rld-loading {
display: none;
position: absolute;
inset: 0;
align-items: center;
justify-content: center;
gap: 12px;
flex-direction: column;
background: rgba(255, 255, 255, 0.95);
z-index: 10;
border-radius: 12px;
color: #00404d;
font-weight: 700;
}

.rld-donation-form.is-loading .rld-loading {
display: flex;
}

/* =========================================================
LOADING SPINNER
========================================================= */

.rld-spinner {
width: 36px;
height: 36px;
border: 4px solid #dcebed;
border-top-color: #06667c;
border-radius: 50%;
animation: rldspin 0.8s linear infinite;
}

@keyframes rldspin {
to {
transform: rotate(360deg);
}
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

```
.rld-donation-form {
    padding: 20px;
    border-radius: 8px;
}

.rld-progress {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
}

.rld-progress-step {
    display: none;
}

.rld-progress-step.active,
.rld-progress-step.complete {
    display: block;
}

.rld-step h3 {
    font-size: 23px;
}

.rld-amounts {
    grid-template-columns: repeat(2, 1fr);
}

.rld-buttons {
    flex-direction: column-reverse;
    align-items: stretch;
}

.rld-primary,
.rld-back {
    width: 100%;
}

.rld-review > div {
    flex-direction: column;
    gap: 5px;
}

.rld-review strong {
    text-align: left;
}
```

}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

```
.rld-donation-form {
    padding: 16px;
}

.rld-amounts {
    grid-template-columns: 1fr;
}

.rld-amounts button {
    width: 100%;
}
```

}
