.assessment-modal {
    border-radius: 24px;
    min-height: 520px;
    padding: 20px 0;
}

/* ---------- Screen 1 ----------- */

.assessment-hero {
    position: relative;
    width: 230px;
    height: 260px;
    margin: auto;
}

.red-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid #e40813;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.assessment-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 210px;
}

.info-badge {
    position: absolute;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.info-badge.calories {
    top: 30px;
    left: -15px;
}

.info-badge.time {
    top: 115px;
    right: -15px;
}

.assessment-title {
    font-weight: 800;
    font-size: 22px;
}

.assessment-text {
    font-size: 15px;
    color: #666;
}

.assessment-btn-main {
    background: #e40813;
    color: #fff;
    border-radius: 30px;
    height: 50px;
    padding: 0 50px;
    font-weight: 700;
    border: none;
}

.assessment-note {
    font-size: 12px;
    color: #777;
}

/* ---------- Screen 2 : Gender ----------- */

.assessment-progress {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.assessment-progress span {
    width: 12%;
    height: 100%;
    background: #e40813;
    display: block;
}

.gender-options {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.gender-card {
    width: 180px;
    height: 110px;
    border-radius: 16px;
    border: 2px solid #e40813;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e40813;
    font-weight: 700;
}

.gender-card.active {
    background: #ffe6e6;
}

.gender-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.gender-prev-btn {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 30px;
    padding: 10px 25px;
}

.gender-next-btn {
    border: none;
    background: #e40813;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
}

.main-text {
    height: 310px;
}


/* ========= AGE SCREEN ========= */

.age-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 6px;
}

.age-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.age-item span {
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 50%;
}

.age-item.active {
    background: #e40813;
    color: #fff;
    border-color: #e40813;
}

.age-item.active span {
    border-color: #fff;
    background: #e40813;
}

/* ========= WEIGHT SCREEN ========= */

.weight-picker {
    text-align: center;
}

.weight-item {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
    color: #999;
}

.weight-item.medium {
    font-size: 19px;
    color: #666;
}

.weight-item.light {
    font-size: 18px;
    color: #bbb;
}

.weight-item.active {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.weight-divider {
    height: 2px;
    background: #ddd;
    margin: 6px 0;
}

.weight-divider.dark {
    background: #111;
}

/* ========= FITNESS EXPERIENCE SCREEN ========= */

.fitness-list {
    max-width: 520px;
    margin: auto;
}

.fitness-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 600;
    margin-bottom: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fitness-item span {
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 50%;
}

.fitness-item.active {
    background: #e40813;
    color: #fff;
    border-color: #e40813;
}

.fitness-item.active span {
    border-color: #fff;
    background: #e40813;
}

/* ========= PROGRESS INFO SCREEN ========= */

.progress-image-wrap {
    width: 100%;
    max-width: 620px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
}

.progress-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.progress-text {
    max-width: 620px;
    margin: auto;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}

/* ========= PRE-EXISTING INJURIES SCREEN ========= */

.injury-list {
    max-width: 520px;
    margin: auto;
}

.injury-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 600;
    margin-bottom: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.injury-item span {
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 50%;
}

.injury-item.active {
    background: #e40813;
    color: #fff;
    border-color: #e40813;
}

.injury-item.active span {
    border-color: #fff;
    background: #e40813;
}

/* ========= YOUR GOAL SCREEN ========= */

.goal-list {
    max-width: 520px;
    margin: auto;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
}

.goal-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.goal-item .check {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
}

.goal-item.active {
    background: #e40813;
    color: #fff;
    border-color: #e40813;
}

.goal-item.active .check {
    background: #fff;
    border-color: #fff;
    position: relative;
}

.goal-item.active .check::after {
    content: "✓";
    color: #e40813;
    font-size: 13px;
    font-weight: 800;
    position: absolute;
    left: 3px;
    top: -1px;
}

/* ========= FINAL RECOMMENDATION SCREEN ========= */

.final-title {
    font-size: 16px;
    font-weight: 600;
    max-width: 620px;
    margin: auto;
    line-height: 1.4;
    color: #222;
}

.final-carousel {
    max-width: 620px;
    margin: auto;
}

.final-slide {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #eee;
    position: relative;
}

.final-slide::before {
    content: "“";
    font-size: 60px;
    color: #e40813;
    position: absolute;
    top: 10px;
    left: 18px;
}

.final-slide::after {
    content: "”";
    font-size: 60px;
    color: #e40813;
    position: absolute;
    bottom: 10px;
    right: 18px;
}

.quote-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-slide .top-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px !important;
    z-index: 0;
}

.final-slide .bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px !important;
    z-index: 0;
}

/* ========= FINAL PROGRAM SCREEN ========= */

.final-program-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.program-card {
    background: #fff;
    border-radius: 16px;
    padding-bottom: 5px;
    box-shadow: 0 0 6px 1px #cfcfcf;
    margin: 10px;
}

.program-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.program-image {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

#screenProgram .owl-dots {
    display: none;
}

#screenProgram .owl-nav {
    position: absolute;
    top: 28%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#screenProgram .owl-nav button {
    background: #00000087 !important;
    COLOR: #FFF !important;
}

.program-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.program-nav.left {
    left: 10px;
}

.program-nav.right {
    right: 10px;
}

.program-badge {
    position: absolute;
    top: 0;
    right: 0px;
    width: 55px;
}

.program-name {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.program-note {
    font-size: 12px;
    color: #666;
    max-width: 640px;
    margin: auto;
    text-align: center;
    line-height: 1.5;
}

.program-save-btn {
    background: #e40813;
    color: #fff;
    border-radius: 30px;
    height: 52px;
    padding: 0 60px;
    font-weight: 700;
    border: none;
}

.final-input {
    width: 100%;
    padding: 15px 20px 40px;
    border-radius: 14px;
    border: 1px solid #eee;
    font-size: 16px;
    outline: none;
    margin-top: 20px;
}

.final-input::placeholder {
    color: #999;
}

.modal-content .close-btn {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 18px;
}

.detail-des .nav-link.active {
    color: #ed1a24 !important;
    font-size: 20px;
    border-bottom: 3px solid #ed1a24 !important;
}

.detail-des .nav-link {
    color: #707070 !important;
    font-size: 20px;
}