/* Registration2027.css
   Extends the MemberCategoryDemo (.mcd) design system for the full production
   registration form. Requires css/MemberCategoryDemo.css to be linked first —
   this only adds what that page didn't need: a page hero, radio/checkbox price
   rows, a running summary box, and a couple of highlight/agreement patterns. */

.mcd-hero {
    text-align: center;
    margin-bottom: 36px;
}

.mcd-hero h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--mcd-navy);
    margin: 0 0 8px;
    line-height: 1.4;
}

.mcd-hero p {
    font-size: 14px;
    color: #5a5a72;
    margin: 0;
}

.mcd-section-gap {
    margin-bottom: 26px;
}

/* ---------- Highlighted field (voucher codes, membership lookup) ---------- */

.mcd-highlight-box {
    border: 1px dashed var(--mcd-gold);
    background: var(--mcd-cream);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 18px;
}

.mcd-highlight-box .mcd-label {
    margin-bottom: 8px;
}

.mcd-hint-text {
    font-size: 12.5px;
    font-weight: 500;
    color: #6a6a80;
}

.mcd-lookup-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mcd-lookup-row .mcd-input {
    flex: 1;
    min-width: 200px;
}

.mcd-lookup-row .mcd-btn {
    width: auto;
    white-space: nowrap;
    padding: 0 22px;
}

@media (max-width: 480px) {
    .mcd-lookup-row .mcd-btn {
        width: 100%;
    }
}

.mcd-lookup-message {
    display: block;
    margin-top: 8px;
    font-size: 13.5px;
    font-weight: 700;
}

/* ---------- Price option rows (Hotel Stay / Conference + Food) ---------- */

.mcd-option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--mcd-line);
    border-radius: 8px;
    padding: 13px 14px;
    margin-bottom: 10px;
    background: #fff;
}

.mcd-option-row:last-child {
    margin-bottom: 0;
}

.mcd-option-row label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    color: var(--mcd-navy);
    font-size: 14.5px;
    margin: 0;
    cursor: pointer;
}

.mcd-option-row input[type="radio"],
.mcd-option-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--mcd-gold-deep);
    flex-shrink: 0;
}

.mcd-option-price {
    font-weight: 700;
    color: var(--mcd-gold-deep);
    font-size: 14.5px;
    white-space: nowrap;
}

/* ---------- Running summary (subtotal / deposit / total) ---------- */

.mcd-summary-box {
    background: var(--mcd-cream);
    border: 1px solid var(--mcd-gold);
    border-radius: 10px;
    padding: 22px;
}

.mcd-summary-box p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 10px;
    font-size: 14.5px;
    color: #3a3a52;
}

.mcd-summary-box p .mcd-hint-text {
    display: block;
    margin-top: 2px;
}

.mcd-summary-box p:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px dashed var(--mcd-gold);
    font-size: 17px;
    font-weight: 800;
    color: var(--mcd-navy);
}

/* ---------- Bank details ---------- */

.mcd-card .bkdetails {
    padding-left: 20px;
    margin: 0;
}

.mcd-card .bkdetails li {
    font-size: 14.5px;
    line-height: 1.8;
    color: #3a3a52;
}

/* ---------- Agreement + submit ---------- */

.mcd-agree-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #3a3a52;
    margin: 20px 0 6px;
}

.mcd-agree-row input[type="checkbox"] {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    accent-color: var(--mcd-gold-deep);
    flex-shrink: 0;
}

.mcd-invite-note {
    color: var(--mcd-red);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}
