.Ro_compare_section_top_content {
    margin-top: 60px;
}
.Ro_compare_cars_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}
.Ro_compare_bg_divider {
    content: '';
    width: 100%;
    height: 620px;
    background-color: #F8F8F8;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.Ro_global_main_content{
    position: relative;
}
.Ro_compare_section_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 910px;
    padding-bottom: 40px;
}
.Ro_compare_car_column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.Ro_input_main_form {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.Ro_input_form_row {
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.Ro_input_form_group {
    display: flex;
    flex-direction: column;
    position: relative;
}
select.Ro_input_form {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 20px 15px 20px 15px;
    border: 1px solid rgba(151, 160, 175, 0.29);
    border-radius: 8px;
    font-size: 16px;
    color: #2f2f2f;
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: normal;
    background-color: transparent;
}
.Ro_input_form:focus {
    border-color: #2f2f2f;
    box-shadow: none;
    outline: none;
}
.Ro_compare_car_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.Ro_compare_vs_text {
    font-size: 130px;
    font-weight: 800;
    color: #D9D9D9;
    line-height: 1;
    text-align: center;
    user-select: none;
    opacity: 30%;
    margin-top: 70px;
}

.Ro_compare_section_bottom_content {
    display: flex;
    justify-content: end;
}
.Ro_compare_button {
    background-color: var(--btn-color);
    font-size: var(--text-small-size);
    font-weight: bold;
    padding: 14px 60px;
    border: 1px solid #303030;
}
.Ro_compare_button:hover {
    background-color: var(--btn-hover-color);
}

/* Compare Details Section Styles */
.Ro_compare_details_section {
    padding-top: 40px;
    display: flex;
}
.Ro_compare_details_right {
    width: 140px;
    margin-left: 15px;
}
.Ro_compare_details_left {
    display: flex;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 12px;
}
.Ro_compare_filter_card {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 350px;
}
.Ro_compare_filter_options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Ro_compare_radio_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.Ro_compare_radio_option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.Ro_compare_radio_input {
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff;
    transition: all 0.3s ease;
}
.Ro_compare_radio_input:checked {
    background: #000000;
    border-color: #000000;
}
.Ro_compare_radio_input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}
.Ro_compare_radio_text {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}
.Ro_compare_car_card {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ccc;
    position: relative;
    flex: 1;
}
.Ro_compare_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.Ro_compare_card_actions {
    display: flex;
    gap: 8px;
}
.Ro_compare_card_controls  {
    width: 130px;
}
.Ro_compare_card_controls select.Ro_input_form {
    padding: 12px 15px 12px 15px;
    font-size: 15px;
    font-weight: 500;
}
.Ro_compare_action_button {
    border: none;
    color: #6c757d;
    background-color: transparent;
    font-size: 14px;
}
.Ro_compare_card_button {
    background-color: #303030;
    border: 1px solid #303030;
    font-weight: 600;
    padding: 0px 0px;
    font-size: 13px;
    width: 130px;
    height: 40px;
    border-radius: 8px;
}
button.Ro_compare_card_button.outline_button {
    background-color: transparent;
}
.Ro_compare_card_button a {
    color: #fff;
}
button.Ro_compare_card_button.outline_button a {
    color: #303030;
}
.Ro_compare_card_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}
.Ro_compare_card_img {
    max-width: 190px;
    height: auto;
    object-fit: contain;
}
.Ro_compare_card_image {
    position: absolute;
    bottom: -30px;
    right: 15px;
}
.Ro_compare_add_car_content {
    border: 2px dashed #d6d9dc;
    border-radius: 16px;
    background: #fafbfc;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.Ro_add_new_car_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

/* Toggle Section Styles */
.Ro_compare_tab_indicator {
    padding: 80px 0 40px 0;
}
.Ro_compare_toggle_section {
    display: flex;
    align-items: center;
    gap: 40px;
}
.Ro_compare_toggle_input {
    width: 48px !important;
    height: 24px;
    border-color: #303030;
}
.Ro_compare_toggle_item {
    min-height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}
.Ro_compare_toggle_input:checked {
    background-color: #fff;
    border-color: #303030;
}
.Ro_compare_toggle_input:focus {
    border-color: #303030 !important;
    outline: 0 !important;
    box-shadow: none !important;
}
.Ro_compare_toggle_item .Ro_compare_toggle_input {
    background-image: url(../images/form-switch-bg.svg);
    background-position: 5% center;
    cursor: pointer;
}

/* Compare Table Styles */
.Ro_compare_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 1px solid #E5E5E5;
}
.Ro_compare_table_cell {
    padding: 20px 10px;
    vertical-align: middle;
    position: relative;
}
.Ro_compare_label_cell {
    width: 336px;
    background: #ffffff;
}
.Ro_compare_data_cell {
    width: 592px;
    background: #ffffff;
}
.Ro_compare_data_cell:last-child {
    width: 594px;
}
.Ro_compare_table_row.even .Ro_compare_table_cell {
    background: #ffffff;
}
.Ro_compare_table_row.odd .Ro_compare_table_cell {
    background: #F8F8F8;
}
.Ro_compare_table_cell {
    border-left: 1px solid #E5E5E5;
}
.Ro_compare_rating_content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_compare_rating_stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.Ro_star_filled {
    color: #303030;
    font-size: 13px;
}
/* Features Accordion Styles */
.Ro_compare_features_details_content {
    margin-top: 40px;
}
.Ro_compare_features_details_content .accordion {
    border: none;
    background: transparent;
}
.Ro_features_accordion_item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.Ro_features_accordion_item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.Ro_features_accordion_button {
    border: none;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    border-radius: 0;
}
.Ro_features_accordion_button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: inherit;
}
.Ro_features_accordion_button:focus {
    border: none;
    box-shadow: none;
}
.Ro_features_accordion_button span {
    flex: 1;
    text-align: left;
    font-weight: 400;
    color: #000000;
}
.Ro_features_accordion_body {
    padding: 0px 20px 20px 15px;
}
.Ro_feature_content_item {
    margin-bottom: 30px;
}
.Ro_feature_content_item p {
    margin: 0;
    margin-top: 10px;
    color: #97A0AE;
}
.Ro_feature_content_item:last-child {
    margin-bottom: 0;
}