/* ===== Registrace – statické styly ===== */
.reg-type-switch { margin-bottom: 25px; }
.reg-type-option {
    display: block;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
    height: 100%;
    margin: 0;
}
.reg-type-option input[type="radio"] { margin-right: 10px; }
.reg-type-option:hover { border-color: #c7c9cc; }
.reg-type-option:has(input[type="radio"]:checked) {
    border-color: #ff5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, .12);
}
.reg-type-label { display: inline-block; vertical-align: middle; }
.reg-type-title { display: block; margin: 0; }
.reg-type-desc { display: block; font-size: 13px; color: #6b7280; }

.reg-section { margin-top: 10px; }
.reg-section-title { margin: 20px 0 15px; }

.reg-consent { background: #f9fafb; border-radius: 6px; padding: 12px 15px; }
.reg-consent-label { display: flex; align-items: flex-start; gap: 10px; margin: 0; cursor: pointer; }
.reg-consent-label input[type="checkbox"] { margin-top: 4px; }

.reg-payment-list .list-item { margin-bottom: 18px; }
.reg-payment-label { font-size: 13px; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; }
.reg-payment-value { margin: 2px 0 0; }
.reg-payment-info { background: #f9fafb; border-radius: 8px; padding: 20px; }
.reg-payment-info ol { padding-left: 20px; margin: 0; }
.reg-payment-info li { margin-bottom: 8px; }

#registrationForm .text-red-500 { color: #ef4444; }

#registrationForm .form-control::placeholder { color: #b0b4ba; opacity: 1; font-style: italic; font-weight: 400; }
#registrationForm .form-control::-webkit-input-placeholder { color: #b0b4ba; font-style: italic; font-weight: 400; }
#registrationForm .form-control::-moz-placeholder { color: #b0b4ba; opacity: 1; font-style: italic; font-weight: 400; }
#registrationForm .form-control:-ms-input-placeholder { color: #b0b4ba; font-style: italic; font-weight: 400; }
#registrationForm .form-control::-ms-input-placeholder { color: #b0b4ba; font-style: italic; font-weight: 400; }
#registrationForm .form-control:focus::placeholder { color: #d1d5db; }
#registrationForm .form-control { font-style: normal; }

.reg-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.reg-header-row .box-form-text { flex: 1 1 auto; margin: 0; }

.reg-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 16px;
    background: #fff5f0;
    border: 1px solid #ffd9c8;
    border-radius: 999px;
    color: #ff5722;
    flex: 0 0 auto;
    white-space: nowrap;
}
.reg-price-badge-label { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.reg-price-badge-value { font-size: 20px; font-weight: 700; }

.reg-price-inline { font-size: 15px; }
.reg-price-inline-label { color: #6b7280; margin-right: 6px; }
.reg-price-inline-value { font-weight: 700; font-size: 18px; color: #111827; }
@media (max-width: 575px) {
    .reg-submit-row .text-right { text-align: left !important; margin-top: 12px; }
}
