/* EXPLORE YOUR OPTIONS WIDGET CSS */
.eyo-b0a0f047-root-container {
    max-width: 900px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #353535;
    box-sizing: border-box;
}

.eyo-b0a0f047-card-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border: none;
}

/* Stable Question Area Height Constraint for Calm Transitions */
.eyo-b0a0f047-question-stage {
    min-height: 440px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Typography & Visual Hierarchy */
.eyo-b0a0f047-heading-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0065BD;
    margin-top: 0;
    margin-bottom: 12px;
}

.eyo-b0a0f047-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #555555;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.4;
}

.eyo-b0a0f047-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4A4A4A;
}

.eyo-b0a0f047-duration {
    font-weight: 600;
    margin-top: 24px;
    color: #0065BD;
}

/* Conversational Heading (Primary Heading) */
.eyo-b0a0f047-step-label {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0065BD;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.25;
}

/* Semantic Legend styled cleanly as secondary heading */
.eyo-b0a0f047-question-heading {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.35;
    color: #353535;
    outline: none;
    margin-bottom: 10px;
    margin-top: 0;
    border: none;
    padding: 0;
    display: block;
    width: 100%;
}

.eyo-b0a0f047-sub-legend {
    font-size: 1.25rem;
    font-weight: 600;
    color: #353535;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    display: block;
}

.eyo-b0a0f047-question-hint {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 0;
    margin-bottom: 30px;
    font-style: italic;
}

.eyo-b0a0f047-helper-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin-top: 20px;
    background: #F4F7FA;
    padding: 12px 16px;
    border-radius: 6px;
}

/* Fieldset Reset - Removes default browser border lines */
.eyo-b0a0f047-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Step Conditional Section styling */
.eyo-b0a0f047-followup-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed #E5E9F0;
}

/* Polished Button Styling */
.eyo-b0a0f047-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 48px;
    min-width: 160px;
    box-sizing: border-box;
    outline-offset: 3px;
}

.eyo-b0a0f047-btn-primary {
    background-color: #0065BD;
    color: #FFFFFF;
}

.eyo-b0a0f047-btn-primary:hover {
    background-color: #004A8C;
}

.eyo-b0a0f047-btn-primary:focus-visible {
    background-color: #004A8C;
    outline: 3px solid #69BE28;
}

.eyo-b0a0f047-btn-secondary {
    background-color: #F4F7FA;
    color: #353535;
}

.eyo-b0a0f047-btn-secondary:hover {
    background-color: #E2E8F0;
}

.eyo-b0a0f047-btn-secondary:focus-visible {
    background-color: #E2E8F0;
    outline: 3px solid #69BE28;
}

.eyo-b0a0f047-action-row {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.quiz-nav {
    justify-content: flex-end;
    border-top: 1px solid #ECECEC;
    padding-top: 25px;
    margin-top: 35px;
}

/* Progress Header & Tracker Track styling */
.eyo-b0a0f047-progress-container {
    margin-bottom: 35px;
}

.eyo-b0a0f047-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.eyo-b0a0f047-step-indicator {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0065BD;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eyo-b0a0f047-progress-bar-bg {
    height: 8px;
    background-color: #E5E9F0;
    border-radius: 99px;
    overflow: hidden;
}

.eyo-b0a0f047-progress-bar-fill {
    height: 100%;
    background-color: #0065BD;
    border-radius: 99px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selectable Cards Grid - 2 columns desktop, 1 column mobile */
.eyo-b0a0f047-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.eyo-b0a0f047-answer-card {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border: 2px solid #DCE3EB;
    border-radius: 10px;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-sizing: border-box;
    min-height: 64px;
}

.eyo-b0a0f047-answer-card input[type="radio"],
.eyo-b0a0f047-answer-card input[type="checkbox"] {
    margin-right: 14px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0065BD;
    position: relative;
    z-index: 2;
}

.eyo-b0a0f047-answer-card .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #353535;
    line-height: 1.4;
    padding-right: 25px; /* Spacing for custom checkmark overlay */
}

/* Checked, Hover & Accessible Keyboard Focus States */
.eyo-b0a0f047-answer-card:has(input:checked) {
    border-color: #0065BD;
    background-color: #F0F7FD;
    box-shadow: 0 4px 12px rgba(0, 101, 189, 0.08);
}

/* Custom Check Indicator styled accessibly */
.eyo-b0a0f047-answer-card:has(input:checked)::after {
    content: "✓";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: #0065BD;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    z-index: 1;
}

.eyo-b0a0f047-answer-card:hover {
    border-color: #90B6E2;
    background-color: #FAFCFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Accessible Keyboard Outline */
.eyo-b0a0f047-answer-card:focus-within,
.eyo-b0a0f047-answer-card:has(input:focus-visible) {
    outline: 3px solid #69BE28;
    outline-offset: 2px;
}

/* Error messages */
.eyo-b0a0f047-error-msg {
    background-color: #FFF0F2;
    border-left: 4px solid #D10074;
    color: #8C004C;
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1rem;
}

/* Dynamic Results Layout Styling */
.eyo-b0a0f047-results-title {
    font-size: 2.25rem;
    color: #0065BD;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    outline: none;
    line-height: 1.2;
}

.eyo-b0a0f047-results-subtitle {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.eyo-b0a0f047-results-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.eyo-b0a0f047-rec-card {
    border: 2px solid #E5E9F0;
    border-radius: 12px;
    padding: 30px;
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    box-sizing: border-box;
}

/* Badges */
.eyo-b0a0f047-match-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eyo-b0a0f047-badge-best {
    background-color: #69BE28;
    color: #FFFFFF;
}

.eyo-b0a0f047-badge-also {
    background-color: #E2ECF7;
    color: #0065BD;
}

.eyo-b0a0f047-rec-title {
    font-size: 1.65rem;
    color: #0065BD;
    font-weight: 700;
    line-height: 1.3;
}

.eyo-b0a0f047-rec-section {
    margin-bottom: 24px;
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 18px;
}

.eyo-b0a0f047-rec-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.eyo-b0a0f047-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #353535;
    margin: 0 0 8px 0;
    text-transform: none;
}

.eyo-b0a0f047-section-content {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
}

.eyo-b0a0f047-rec-why {
    background: #F0F7FD;
    padding: 16px 20px;
    border-left: 4px solid #0065BD;
    border-radius: 0 8px 8px 0;
}

.eyo-b0a0f047-rec-why .eyo-b0a0f047-section-heading {
    color: #0065BD;
}

.eyo-b0a0f047-age-warning {
    margin-top: 12px;
    font-size: 0.9rem;
    padding: 8px 14px;
    background: #FFF9E6;
    border-left: 3px solid #EBB700;
    color: #665200;
    border-radius: 0 6px 6px 0;
}

.eyo-b0a0f047-info-callout {
    margin-top: 12px;
    font-size: 0.9rem;
    padding: 10px 16px;
    background: #EBF3FC;
    border-left: 3px solid #0065BD;
    color: #004A8C;
    border-radius: 0 6px 6px 0;
}

.eyo-b0a0f047-rec-actions {
    margin-top: 25px;
}

/* Consolidated Global Footer styling */
.eyo-b0a0f047-results-footer-actions {
    border-top: 2px solid #ECECEC;
    padding-top: 40px;
    margin-top: 40px;
    box-sizing: border-box;
}

.eyo-b0a0f047-contact-box {
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    border: 1px solid #ECECEC;
    margin-bottom: 30px;
}

.eyo-b0a0f047-contact-heading {
    font-size: 1.65rem;
    color: #0065BD;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.eyo-b0a0f047-contact-text {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 24px auto;
}

.eyo-b0a0f047-contact-btn-wrapper {
    display: flex;
    justify-content: center;
}

/* Transition Loader Spinner styling */
.eyo-b0a0f047-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E2E8F0;
    border-top-color: #0065BD;
    border-radius: 50%;
    animation: eyo-spinner-spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes eyo-spinner-spin {
    to { transform: rotate(360deg); }
}

/* Responsive Grid Adjustments */
@media screen and (max-width: 768px) {
    .eyo-b0a0f047-card-container {
        padding: 24px;
    }
    .eyo-b0a0f047-cards-grid {
        grid-template-columns: 1fr;
    }
    .eyo-b0a0f047-action-row {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .eyo-b0a0f047-btn {
        width: 100%;
    }
    .eyo-b0a0f047-step-label {
        font-size: 1.65rem;
    }
    .eyo-b0a0f047-contact-box {
        padding: 25px 20px;
    }
    .eyo-b0a0f047-rec-card {
        padding: 20px;
    }
    .eyo-b0a0f047-card-header-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
}
