.Step_Preview .last_step_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 16px 0;
}

.Step_Preview .last_step_container .status_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fcf8f5;
    color: #bd7e43;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.Step_Preview .last_step_container h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.Step_Preview .last_step_container .sub_text {
    font-size: 0.9rem;
    color: #4a5568;
    max-width: 320px;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.Step_Preview .last_step_container .final_price_card {
    width: 100%;
    background: #fcf8f5;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: self-end;
    gap: 6px;
}

.Step_Preview .last_step_container .price_details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.Step_Preview .last_step_container .price_label {
    font-weight: 600;
    color: #2d3748;
}

.Step_Preview .last_step_container .price_value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #bd7e43;
}

.Step_Preview .last_step_container .savings_tag {
    font-size: 0.78rem;
    color: #fff;
    background-color: #1f2a44;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 5px;
}


@media (min-width:1200px) and (max-width:1399px) {
    .Step_Preview .last_step_container {
        padding: 20px 10px;
    }

    .Step_Preview .last_step_container h2 {
        font-size: 17px;
    }


    .Step_Preview .last_step_container .final_price_card {
        padding: 10px;
    }

    .Step_Preview .last_step_container .price_value {
        font-size: 18px;
    }

    .Step_Preview .last_step_container .savings_tag {
        font-size: 11px;
        padding: 4px 6px;
    }

    .Step_Preview .last_step_container .price_label {
        font-size: 14px;
    }
}