
/* Base Header Styles */
.Ro_menu_mobile_toggle {
    display: none;
}
.Ro_mobile_menu {
    display: none;
}
.Ro_header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 30px 0;
}
.Ro_header.sticky {
    position: fixed;
    background-color: #000;
    padding: 10px 0;
}
.Ro_header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo Section */
.Ro_logo_section {
    flex-shrink: 0;
}
.Ro_logo {
    display: block;
    text-decoration: none;
}
.Ro_logo_img {
    width: 171px;
    height: 22.875px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
/* Navigation Section */
.Ro_nav_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.Ro_nav_section {
    display: flex;
    align-items: center;
    gap: 40px;
}
.Ro_nav_item {
    margin: 0;
}
.Ro_nav_link {
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
/* Right Section */
.Ro_right_section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}
.Ro_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_user_icon {
    font-size: 16px;
    color: #ffffff;
}
.Ro_vertical_line {
    width: 1px;
    height: 35px;
    background-color: #ffffff;
    opacity: 0.3;
}
.Ro_button_wrapper {
    display: flex;
    align-items: center;
    padding-left: 30px;
    border-left: 1px solid #fff;
}
.Ro_signup_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 43px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.Ro_signup_btn:hover {
    background-color: #ffffff;
    color: #000000;
}
/* Mobile Toggle */
.Ro_mobile_toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    width: 18px;
}
.Ro_mobile_toggle:focus {
    outline: none;
}
.Ro_mobile_nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Ro_mobile_nav_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_mobile_nav_item {
    margin: 0;
}
.Ro_mobile_nav_link {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.Ro_mobile_nav_link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.Ro_mobile_actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.Ro_mobile_signup_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}
.Ro_mobile_signup_btn:hover {
    background-color: #ffffff;
    color: #000000;
}
/* Hero Section */
.Ro_hero_section {
    background-image: url(../images/Hero-bg.png);
    padding: 285px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.Ro_car_buying_tabs_wrapper_inner_title {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}
.Ro_car_buying_tabs_wrapper_inner_description {
    font-size: 24px;
    color: #fff;
}
/* Car Buying Section */
.Ro_car_buying {
    padding-bottom: 80px;
    background-color: #f8f9fa;
}
.Ro_car_buying_tabs_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -250px;
}
.Ro_car_buying_tabs {
    border: none;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-around;
    gap: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.Ro_car_buying_tabs .nav-item {
    flex: 1;
}
.Ro_tab_button {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 0 !important;
    background-color: rgb(233 233 233 / 34%) !important;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 1px solid #575656 !important;
}
.Ro_tab_button.active {
    background-color: #fff !important;
    color: #303030 !important;
    border-radius: 0;
    border: 0;
}
.Ro_tab_button.active img,
.Ro_tab_button:hover img  {
    filter: invert(1);
}
#buy-new-tab {
    border-top-left-radius: 10px !important;
}
#financing-tab {
    border-top-right-radius: 10px !important;
}
.Ro_tab_button:hover {
    background-color: #fff !important;
    color: #303030;
}
.Ro_tab_button.active:hover {
    background-color: #fff;
    color: #303030;
}
.Ro_tab_icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_tab_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
.Ro_tab_content {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.Ro_tab_panel {
    padding: 60px 40px;
}
.Ro_tab_title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}
.Ro_tab_description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}
.Ro_features_list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.Ro_features_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}
.Ro_features_list li i {
    color: #28a745;
    font-size: 14px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_cta_button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.Ro_cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: #fff;
}
.Ro_tab_image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}
.Ro_tab_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Buy New Inner Tabs */
.Ro_buy_new_content {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 100px rgba(6, 23, 67, 0.08);
}
.Ro_inner_tabs_wrapper {
    margin-bottom: 30px;
}
.Ro_inner_tabs {
    border: none;
    gap: 20px;
    justify-content: flex-start;
}
.Ro_inner_tab_button {
    background-color: transparent;
    color: #959595;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: normal;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #959595;
    border-radius: 8px !important;
    line-height: normal;
}
.Ro_inner_tab_button.active {
    background-color: #303030 !important;
    color: #fff !important;
    border-color: #303030 !important;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: normal;
}
.Ro_inner_tab_button:hover {
    color: #303030;
}
.Ro_inner_tab_button.active:hover {
    background-color: #303030;
    color: #fff;
}
.Ro_inner_tab_content {
    background: transparent;
    border: none;
    box-shadow: none;
}
/* Make Model Content */
.Ro_make_model_content {
    background: transparent;
}
.Ro_dropdowns_section {
    margin-bottom: 30px;
}
.Ro_dropdown_wrapper {
    margin-bottom: 20px;
    position: relative;
}
.Ro_dropdown_input {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 25px 20px 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #303030;
    height: 60px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23303030' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 30px;
    margin-bottom: 15px;
}
.Ro_dropdown_input:focus {
    border-color: #303030;
    box-shadow: none;
    outline: none;
}
/* Popular Makes Section */
.Ro_section_title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.Ro_makes_grid {
    position: relative;
    margin-bottom: 10px;
    height: 264px;
    overflow-x: hidden;
    padding-right: 15px;
}
/* Scrollbar */
.Ro_makes_grid::-webkit-scrollbar {
    width: 6px;              
    height: 6px;    
}
  .Ro_makes_grid::-webkit-scrollbar-track {
    background: #f1f1f1;   
    border-radius: 10px;
}
  .Ro_makes_grid::-webkit-scrollbar-thumb {
    background: #888;       
    border-radius: 10px;
}
.Ro_makes_grid .row {
    margin-bottom: 10px;
}
.Ro_make_card {
    background-color: #fbfbfb;
    border-radius: 9px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
    border: 1px solid #fbfbfb;
}
.Ro_make_card:hover {
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
}
.Ro_popular_make_card {
    background-color: #fafafa;
    border: 1px solid #fafafa;
}
.Ro_popular_make_card:hover {
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
}
.Ro_make_image {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
}
.Ro_make_name {
    font-size: 15px;
    color: #8e8e8e;
    font-weight: 500;
    line-height: 1;
}
.Ro_scroll_indicator {
    position: relative;
    width: 100%;
    height: 3px;
    margin-top: 25px;
}
.Ro_scroll_track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e2e2e2;
    border-radius: 100px;
}
.Ro_scroll_thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 4px;
    background-color: #303030;
    border-radius: 100px;
}
/* Search Controls */
.Ro_search_controls {
    margin-top: 0px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}
.Ro_price_range {
    flex: 0 0 529px;
    margin-bottom: 0;
    position: relative;
}
.Ro_price_slider {
    background-color: transparent;
    border: 1px solid rgba(85, 85, 85, 0.49);
    border-radius: 10px;
    padding: 25px 20px 10px 20px;
    height: 61px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.Ro_price_values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 15px;
}
.Ro_price_min, 
.Ro_price_max {
    font-size: 14px;
    color: #303030;
    font-weight: 400;
}
.Ro_price_values .Ro_slider_track {
    width: calc(100% - 160px);
    position: relative;
    margin: 0 auto;
    margin-top: -20px;
}
.Ro_slider_track {
    position: relative;
    height: 4px;
    border-radius: 100px;
    width: 60%;
    margin-right: auto;
    cursor: pointer;
}
.Ro_slider_range {
    height: 4px;
    background-color: #000;
    border-radius: 100px;
}
.Ro_slider_track:after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #ccc;
    position: absolute;
    left: 0;
    border-radius: 10px;
    top: 0;
    z-index: -1;
}
.Ro_slider_thumb {
    position: absolute;
    top: -3px;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}
.Ro_slider_thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.Ro_slider_thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}
.Ro_slider_thumb:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
.Ro_slider_thumb_min {
    left: 23px;
}
.Ro_slider_thumb_max {
    left: 213px;
}
.Ro_slider_thumb::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
}
.Ro_location_input {
    flex: 0 0 240px;
    margin-bottom: 0;
    position: relative;
}
.Ro_label_form_label {
    font-size: 12px;
    color: #a2a9b3;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: normal;
}
.Ro_label_form_input {
    background-color: transparent;
    border: 1px solid rgba(85, 85, 85, 0.49);
    border-radius: 10px;
    padding: 25px 20px 10px 20px;
    font-size: 16px !important;
    color: #303030;
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
}
.Ro_dropdown_with_label_wrapper {
    position: relative;
}
.Ro_label_form_input[value="Postcode"] {
    font-size: 14px !important;
}
.Ro_label_form_input:focus {
    background-color: transparent;
    border-color: #303030;
    box-shadow: none;
    outline: none;
}
.Ro_label_form_input::placeholder {
    font-size: 14px !important;
    color: #303030;
    font-weight: 400;
}
.Ro_search_button {
    background-color: #111111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.Ro_search_button a {
    color: #fff;
    text-decoration: none;
}
.Ro_search_button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}
/* By Body Style Tab */
.Ro_body_style_dropdown {
    margin-bottom: 0;
    width: 35%;
}
.Ro_body_style_grid {
    height: auto;
    overflow: hidden;
}
.Ro_body_style_grid .Ro_make_name {
    margin-top: 10px;
}
/* License Plate Tab Styles */
.Ro_license_plate_form {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.Ro_license_plate_input_wrapper {
    width: 270px;
    flex: 0 0 270px;
    position: relative;
}
.Ro_license_plate_label {
    font-size: 12px;
    color: #a2a9b3;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 5px;
    left: 20px;
}  
.Ro_license_plate_input::placeholder {
    font-size: 18px;
    color: #303030;
    font-weight: 400;
}
.Ro_license_plate_input:focus {
    background-color: transparent;
    border-color: #303030;
    box-shadow: none;
    outline: none;
}
.Ro_state_dropdown_wrapper {
    width: 270px;
    flex: 0 0 270px;
    position: relative;
}
.Ro_state_select {
    position: relative;
}
.Ro_state_input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
}
.Ro_state_input:focus {
    background-color: transparent;
    border-color: #303030;
    box-shadow: none;
    outline: none;
}
.Ro_postcode_input_wrapper {
    width: 250px;
    flex: 0 0 250px;
    position: relative;
}
.Ro_find_out_more_button a {
    color: #fff;
    text-decoration: none;
}
.Ro_find_out_more_button {
    background-color: #111111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_find_out_more_button:hover {
    background-color: #333333;
    color: #fff;
}
.Ro_lease_question {
    margin-top: 15px;
}
.Ro_lease_text {
    font-size: 16px;
    color: #a2a9b3;
    font-weight: 400;
}
/* Find Your Fit Section */
.Ro_find_your_fit_input_wrapper {
    width: 75%;
    flex: 0 0 75%;
}
.Ro_find_your_fit_deposit_wrapper {
    flex: 0 0 250px;
    margin-bottom: 0;
}
.Ro_vin_input_wrapper {
    width: 550px;
    flex: 0 0 550px;
}
/* Financing Tab Styles */
.Ro_financing_content {
    padding: 40px;
}
.Ro_financing_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.Ro_financing_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_financing_title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}
.Ro_financing_features {
    display: flex;
    align-items: center;
    gap: 31px;
    flex-wrap: wrap;
}
.Ro_financing_feature {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_feature_icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_feature_icon svg {
    width: 20px;
    height: 20px;
}
.Ro_feature_text {
    font-size: 16px;
    color: #303030;
    font-weight: 400;
    white-space: nowrap;
}
.Ro_financing_action {
    flex-shrink: 0;
}
.Ro_get_offer_button {
    background-color: #303030;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    width: 260px;
    height: 60px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.Ro_get_offer_button a {
    color: #fff;
    text-decoration: none;
}
.Ro_get_offer_button:hover {
    background-color: #303030;
    color: #fff;
}
/* Buy New Header */
.Ro_buy_new_header {
    background-color: #ffffff;
    border-bottom: 1px solid #E5E5E5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 15px 0px;
}
.Ro_buy_new_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.Ro_buy_new_nav_left {
    display: flex;
    align-items: center;
}
.Ro_buy_new_logo {
    display: block;
    text-decoration: none;
}
.Ro_buy_new_logo_img {
    height: 20px;
    opacity: 0.80;
}
.Ro_buy_new_divider {
    width: 1px;
    height: 40px;
    background-color: rgba(173, 181, 208, 0.29);
}
.Ro_buy_new_partnership {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
}
.Ro_buy_new_partnership_text {
    font-size: 12px;
    color: #c2c8d1;
    font-weight: 400;
    line-height: 1.2;
}
.Ro_buy_new_partner_logo {
    width: 114px;
    height: 22px;
}
.Ro_buy_new_partner_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
    filter: brightness(0.5);
}
.Ro_buy_new_nav_right {
    display: flex;
    align-items: center;
    gap: 26px;
}
.Ro_buy_new_search_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.Ro_buy_new_search_icon i {
    font-size: 18px;
    color: #303030;
}
.Ro_buy_new_search_input_wrapper.active {
    display: block !important;
}
.Ro_buy_new_search_input_wrapper {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translate(0px, -50%);
    display: none;
}
i.Ro_header_search_icon {
    color: #fff;
}
.Ro_buy_new_search_container {
    position: relative;
}
.Ro_header_search_input{
    border: 1px solid #ddd;
    border-radius: 50px;
    height: 35px;
    font-size: 12px;
    padding: 0 12px;
    width: 210px;
    transition: border-color 0.2s ease;
}
.Ro_header_search_input:focus {
    border-color: #000;
    outline: none;
}
.Ro_buy_new_user_profile {
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 100px;
    padding: 2px 5px 2px 0px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 38px;
}
.Ro_buy_new_user_profile:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_buy_new_user_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.Ro_buy_new_avatar_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Ro_buy_new_user_info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 8px;
}
.Ro_buy_new_user_name {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
}
.Ro_buy_new_dropdown_arrow {
    font-size: 12px;
    color: rgba(48, 48, 48, 0.5);
    transition: transform 0.3s ease;
}
.Ro_buy_new_user_info[aria-expanded="true"] .Ro_buy_new_dropdown_arrow {
    transform: rotate(180deg);
}
/* Dropdown Menu Styles */
.Ro_buy_new_dropdown_menu {
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    inset: 5px -10px auto auto !important;
}
.Ro_buy_new_dropdown_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #303030;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
}
.Ro_buy_new_dropdown_item:hover {
    background-color: #f8f9fa;
    color: #303030;
}
.Ro_buy_new_dropdown_item:focus {
    background-color: #f8f9fa;
    color: #303030;
    outline: none;
}
.Ro_buy_new_dropdown_icon {
    font-size: 14px;
    color: #6c757d;
    width: 16px;
    text-align: center;
}
.Ro_buy_new_dropdown_divider {
    margin: 8px 0;
    border-top: 1px solid #E5E5E5;
}
/* Dropdown Animation */
.Ro_buy_new_dropdown_menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.Ro_buy_new_dropdown_menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Content Area */
.Ro_buy_new_content_wrapper {
   padding-bottom: 40px;
}
/* Page Header */
.Ro_buy_new_page_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.Ro_buy_new_page_title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}
.Ro_buy_new_help_link {
    font-size: 14px;
    color: #6c757d;
}
/* Tab Navigation */
.Ro_main_tabs_wrapper {
    margin-bottom: 50px;
}
.Ro_tabs_wrapper {
    border: none;
    gap: 10px;
}
.Ro_buy_new_tabs .nav-item {
    margin-right: 0;
}
.Ro_tabing_buttons {
    background-color: #f8f9fa;
    border: 1px solid #E2E2E2 !important;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: normal;
    border-radius: 8px !important;
    margin-right: 2px;
    transition: all 0.3s ease;
    color: #303030 !important;
}
.Ro_tabing_buttons.active {
    background-color: #303030 !important;
    color: #fff !important;
    border-color: #303030 !important;
}
.Ro_tabing_buttons:hover {
    background-color: #303030 !important;
    color: #fff !important;
    border-color: #303030 !important;
}
.Ro_tabing_buttons:hover:not(.active) {
    background-color: #e9ecef;
    color: #495057;
}
/* Filter Tabs */
.Ro_buy_new_filter_tabs {
    margin-bottom: 40px;
    border-bottom: 1px solid #dddedf;
}
.Ro_buy_new_filter_tab {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    color: #6c757d;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.Ro_buy_new_filter_tab.active {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}
.Ro_buy_new_filter_tab:hover:not(.active) {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}
/* Main Content Layout */
.Ro_buy_new_shop_content {
    flex: 1;
}
.Ro_buy_new_right_content {
    width: 350px;
    flex-shrink: 0;
}
.Ro_buy_new_tab_content_wrapper_inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
/* Search */
.Ro_buy_new_search_wrapper {
    margin-bottom: 25px;
}
.Ro_buy_new_search_input {
    position: relative;
}
.Ro_buy_new_search_car {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}
.Ro_buy_new_search_field {
    padding: 12px 15px 12px 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f8f9fa;
}
.Ro_buy_new_search_field:focus {
    background-color: #ffffff;
    border-color: #333333;
    box-shadow: none;
    outline: none;
}
/* Brand Grid */
.Ro_buy_new_brands_grid {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}
.Ro_buy_new_brand_item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #ffffff;
}
.Ro_buy_new_brand_item:hover {
    border-color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_buy_new_brand_item.selected {
    border-color: #333333;
    background-color: #f8f9fa;
}
.Ro_buy_new_brand_logo {
    width: 40px;
    height: 30px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_buy_new_brand_image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.Ro_buy_new_brand_name {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    flex: 1;
}
.Ro_buy_new_brand_check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background-color: #333333;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}
.Ro_buy_new_brand_item.selected .Ro_buy_new_brand_check {
    display: flex;
}
.Ro_buy_new_brand_check i {
    color: #ffffff;
    font-size: 10px;
}
/* Postcode Section */
.Ro_buy_new_postcode_section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.Ro_buy_new_car_icon {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Ro_buy_new_postcode_title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}
.Ro_buy_new_postcode_input_wrapper {
    margin-bottom: 20px;
    position: relative;
}
.Ro_buy_new_postcode_input {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
}
.Ro_buy_new_postcode_input:focus {
    border-color: #333333;
    box-shadow: none;
    outline: none;
}
.Ro_buy_new_lets_go_button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
}
.Ro_buy_new_lets_go_button:hover {
    background-color: #555555;
    color: #ffffff;
}
/* Next Button Positioning */
.Ro_buy_new_next_wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 200px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.Ro_buy_new_next_button {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    min-width: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
    float: right;
}
.Ro_buy_new_next_button:hover {
    background: #555;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.Ro_buy_new_next_button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/* Buy New Page - Inner Tabs */
.Ro_buy_new_inner_tabs .nav-item {
    margin-right: 0;
}
.Ro_buy_new_filter_tab.active {
    background: transparent !important;
    color: #333 !important;
    border: 0 !important;
    font-weight: 400;
    border-radius: 0 !important;
}
.Ro_buy_new_filter_tab:hover {
    background: transparent !important;
    color: #3E3E3E;
}
.Ro_buy_new_filter_tab.active {
    color: #3E3E3E;
    border-bottom: 2px solid #3E3E3E !important;
    font-weight: 400;
    padding-bottom: 10px;
}
.Ro_buy_new_filter_tab {
    padding: 0;
    color: #3E3E3E;
    border-radius: 0 !important;
    font-weight: 400;
    border: 0 !important;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: none;
    margin-right: 30px;
}
/* Type Grid Styling */
.Ro_buy_new_type_item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.Ro_buy_new_type_icon_img {
    height: 80px;
    object-fit: scale-down;
}
.Ro_buy_new_type_name {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.Ro_buy_new_type_check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: #0c0b0b;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.Ro_buy_new_type_item.selected .Ro_buy_new_type_check {
    opacity: 1;
    transform: scale(1);
}
/* Price Tab Styling */
.Ro_buy_new_price_section {
    max-width: 600px;
}
.Ro_buy_new_price_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}
.Ro_buy_new_price_inputs {
    display: flex;
    gap: 20px;
}

.Ro_buy_new_price_input_group {
    flex: 1;
}
.Ro_buy_new_price_label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}
.Ro_buy_new_price_input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}
.Ro_buy_new_quick_prices {
    margin-bottom: 40px;
}
.Ro_buy_new_quick_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.Ro_buy_new_price_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.Ro_buy_new_price_button {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}
.Ro_buy_new_finance_section {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}
.Ro_buy_new_finance_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.Ro_buy_new_finance_options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_buy_new_finance_option {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}
.Ro_buy_new_finance_option .form-check-label {
    font-weight: 500;
    color: #333;
    cursor: pointer;
    margin-left: 8px;
}
/* Brand List Styling */
.Ro_buy_new_brands_list {
    margin-top: 20px;
}
.Ro_brand_list_item {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.Ro_brand_list_item:hover {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_brand_list_item.is-checked {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_brand_checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.Ro_brand_checkbox:checked {
    background-color: #000000;
    border-color: #000000;
}
.Ro_brand_checkbox:hover {
    border-color: #000000;
}
.Ro_brand_checkbox:focus {
    border-color: #000000;
    box-shadow: none;
    overflow: unset;
}
.Ro_brand_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
    font-weight: 400;
    color: #333;
}
.Ro_brand_icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    object-fit: contain;
    flex-shrink: 0;
}
.Ro_brand_name {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Search wrapper styling */
.Ro_buy_new_search_wrapper {
    margin-bottom: 20px;
}
.Ro_buy_new_search_input {
    position: relative;
    display: flex;
    align-items: center;
}
.Ro_buy_new_search_car {
    position: absolute;
    left: 12px;
    color: #999;
    z-index: 2;
}
.Ro_buy_new_search_field {
    padding-left: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 50px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background-color: transparent;
}
.Ro_buy_new_search_field:focus {
    background-color: #fff; 
    border-color: #000000 !important;
    box-shadow: none !important;
    outline: none !important;
}
.Ro_buy_new_search_field:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.Ro_buy_new_search_field::placeholder {
    color: #999;
}
.Ro_buy_bottom_button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
}
/* Price Range Selection List */
.Ro_buy_new_price_list_section {
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_buy_new_price_option_item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border: 1px solid rgba(95, 101, 109, 0.29);
    border-radius: 5px;
    height: 46px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
}
.Ro_buy_new_price_option_item.selected {
    border-color: #000000;
}
.Ro_buy_new_price_option_item:hover {
    border-color: #000000;
}
.Ro_price_option_checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.Ro_price_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}
.Ro_price_checkbox_custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.Ro_price_checkbox:checked + .Ro_price_checkbox_custom {
    background: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}
.Ro_price_checkbox_custom i {
    color: white;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.Ro_price_checkbox:checked + .Ro_price_checkbox_custom i {
    opacity: 1;
}
.Ro_price_option_label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    margin: 0;
    flex: 1;
    line-height: 26px;
}
.Ro_buy_new_price_option_item:hover .Ro_price_option_label {
    color: #000000;
}
.Ro_buy_new_car_icon_img {
    width: auto;
    height: 60px;
    object-fit: contain;
}
.Ro_buy_new_next_button {
    background: #333333;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    min-width: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.Ro_buy_new_next_button:hover {
    background: #333333;
    transform: translateY(-2px);
}
.Ro_buy_new_type_item.selected {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_buy_new_type_item:hover {
    border-color: #000000;
    transform: translateY(-2px);
}
.Ro_buy_new_type_check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #000000;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}
.Ro_buy_new_type_item.selected .Ro_buy_new_type_check {
    display: flex;
}
.Ro_buy_new_type_name {
    margin-top: 10px;
    text-align: center;
}
.Ro_buy_new_postcode_text {
    font-size: 14px;
}
.Ro_buy_new_model_input {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px 20px 20px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #303030;
    height: 60px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23303030' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 25px;
    margin-bottom: 10px;
}
.Ro_buy_new_model_input:focus {
    border-color: #000000;
    box-shadow: none;
    outline: none;
}
/* Sell My Car page */
.Ro_sell_car_filter_tabs {
    margin-bottom: 30px;
}
.Ro_without_label_form_input{
    background-color: transparent;
    border: 1px solid rgba(85, 85, 85, 0.49);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    font-size: 16px;
    height: 59px;
    color: #303030;
    width: 100%;
    margin-bottom: 15px;
    width: 100%;
}
.Ro_without_label_form_input:focus {
    border-color: #000000;
    box-shadow: none;
    outline: none;
}
.Ro_without_label_form_input::placeholder {
    color: #999;
}
.Ro_without_label_dropdown_input {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #303030;
    height: 60px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23303030' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 30px;
    margin-bottom: 15px;
}
.Ro_without_label_dropdown_input:focus {
    border-color: #000000;
    box-shadow: none;
    outline: none;
}
.Ro_sell_car_left_content_wrapper {
    max-width: 400px;
}
/* Sell Car Right Content - How it Works Section */
.Ro_sell_car_left_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.Ro_sell_car_right_content {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 660px;
    flex-shrink: 0;
}
.Ro_how_it_works_title {
    font-size: 30px;
    font-weight: 600;
    color: #101010;
    margin: 0;
    line-height: 30px;
}

.Ro_how_it_works_steps {
    display: flex;
    gap: 15px;
    height: 283px;
}
.Ro_steps_timeline {
    width: 40px;
    height: 260px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.Ro_step_item {
    position: relative;
    z-index: 2;
}
.Ro_step_number {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 7.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_step_number span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 20.17px;
}
.Ro_step_connector {
    border: 1px dashed #97A0AE; 
    height: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.Ro_step_connector:nth-of-type(2) {
    top: 40px;
}
.Ro_step_connector:nth-of-type(4) {
    top: 134.46px;
}
/* Right Content Column */
.Ro_steps_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
}
.Ro_step_content_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.Ro_step_content_item:nth-child(1) {
    height: 59px;
}
.Ro_step_content_item:nth-child(2) {
    height: 85px;
}
.Ro_step_content_item:nth-child(3) {
    height: 59px;
}
/* Find Your Fit page */
.Ro_find_your_fit_main {
    display: flex;
    min-height: calc(100vh - 70px);
}
.Ro_progress_bar_layout {
    display: flex;
    width: 100%;
    flex: 1;
}
/* Vertical Progress Bar */
.Ro_progress_bar_wrapper {
    width: 300px;
    background: #F8F8F8;
    flex-shrink: 0;
    height: 910px;
    padding: 40px 30px;
}
.Ro_progress_steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.Ro_progress_steps:after {
    content: '';
    width: 1px;
    height: calc(100% - 40px);
    background-color: #b0b0b0;
    position: absolute;
    left: 14.5px;
    top: 15px;
}
.Ro_progress_step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
}
.Ro_step_circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}
.Ro_progress_step.active .Ro_step_circle {
    background: #000000;
    border-color: #000000;
    color: white;
}
.Ro_step_circle:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color:#b0b0b0;
    border-radius: 50%;
}
.Ro_progress_step.active .Ro_step_circle:after {
    background-color: #fff;
}
.Ro_progress_step.completed .Ro_step_circle:after {
    background-color: #fff;
}
.Ro_progress_step.completed .Ro_step_circle {
    background: #000000;
    border-color: #000000;
    color: white;
}
.Ro_step_label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}
.Ro_progress_step.active .Ro_step_label,
.Ro_progress_step.completed .Ro_step_label {
    color: #000000;
    font-weight: 600;
}
.Ro_progress_connector {
    position: absolute;
    left: 44px;
    top: 50px;
    width: 2px;
    height: 30px;
    background: #e9ecef;
    z-index: 1;
}
.Ro_progress_connector.active {
    background: #000000;
}
/* Content Area */
.Ro_progress_main_content {
    flex: 1;
    padding: 0px 0px 40px 40px;
}
/* Must-have Content Section */
.Ro_mast_have_content,
.Ro_use_of_car_content,
.Ro_brands_content,
.Ro_size_content,
.Ro_ute_content,
.Ro_fuel_power_content,
.Ro_your_details_content,
.Ro_information_content,
.Ro_final_content {
    margin-bottom: 60px;
    display: none;
}

.Ro_mast_have_content.Ro_active_content,
.Ro_use_of_car_content.Ro_active_content,
.Ro_brands_content.Ro_active_content,
.Ro_size_content.Ro_active_content,
.Ro_ute_content.Ro_active_content,
.Ro_fuel_power_content.Ro_active_content,
.Ro_your_details_content.Ro_active_content,
.Ro_information_content.Ro_active_content,
.Ro_final_content.Ro_active_content {
    display: block;
}
.Ro_progress_content_header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_must_have_options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Ro_must_have_option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}
.Ro_must_have_option:hover {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_must_have_option.selected {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_must_have_option.is-checked {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_must_have_checkbox {
    cursor: pointer;
    background-color: transparent !important;
    border: 1px solid #000 !important;
    margin-left: 20px;
    width: 18px;
    height: 17px;
}   
.Ro_must_have_checkbox:focus{
    background-color: transparent !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
    outline: none !important;
}
.Ro_must_have_checkbox:checked{
    background-color: #000000 !important;
    border: 1px solid #000000 !important;
}
.Ro_must_have_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
    position: relative;
}
.Ro_must_have_text {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}
/* Navigation Buttons */
.Ro_find_your_fit_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}
/* Ensure all content sections are initially hidden except the first */
.Ro_use_of_car_content,
.Ro_brands_content,
.Ro_size_content,
.Ro_ute_content,
.Ro_fuel_power_content,
.Ro_your_details_content,
.Ro_information_content,
.Ro_final_content {
    display: none;
}
/* Vehicle Loan sections - initially hidden except first */
.Ro_loan_content,
.Ro_employment_content,
.Ro_residency_content,
.Ro_final_details_content {
    display: none;
}
/* First section should be visible by default */
.Ro_vehicle_content,
.Ro_mast_have_content {
    display: block;
    opacity: 1;
    visibility: visible;
}
/* Active content section styling */
.Ro_active_content {
    opacity: 1;
    animation: fadeInContent 0.4s ease-in-out;
    visibility: visible;
}
/* Content sections base styling */
.Ro_vehicle_content,
.Ro_loan_content,
.Ro_employment_content,
.Ro_residency_content,
.Ro_final_details_content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Completion Message Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.Ro_skip_button {
    background: transparent;
    color: #6c757d;
    border: 1px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.Ro_skip_button:hover {
    background: #f8f9fa;
    border-color: #000000;
    color: #000000;
}
.Ro_next_button {
    background: #000000;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.Ro_next_button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}
/* Complete Button Styling */
.Ro_next_button_back {
    background: #fff;
    color: #000000;
    border: 1px solid #000000;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.Ro_next_button_back:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.Ro_next_button_container {
    display: flex;
    gap: 15px;
    align-items: center;
}
/* Use of Car Options */
.Ro_use_of_car_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.Ro_use_option {
    position: relative;
}
.Ro_use_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_use_option_label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}
.Ro_use_option_label:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.Ro_use_checkbox:checked + .Ro_use_option_label {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_use_icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}
.Ro_use_icon i {
    font-size: 20px;
    color: #000000;
}
.Ro_use_text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
.Ro_use_text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}
/* Brands Section */
.Ro_brand_search_container {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
}
.Ro_brand_search_input {
    width: 100%;
    padding: 12px 16px 12px 50px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.Ro_brand_search_input:focus {
    outline: none;
    border-color: #000000;
}
.Ro_brand_search_icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.Ro_brands_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}
.Ro_brand_card {
    position: relative;
}
.Ro_brand_card_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_brand_card_label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    text-align: center;
}
.Ro_brand_card_label:hover {
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.Ro_brand_card_checkbox:checked + .Ro_brand_card_label {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_brand_logo i {
    font-size: 24px;
    color: #000000;
}
.Ro_brand_name {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}
.Ro_size_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.Ro_size_option {
    position: relative;
}
.Ro_size_radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_size_option_label {
    display: flex;
    align-items: center;
    padding: 24px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}
.Ro_size_option_label:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.Ro_size_radio:checked + .Ro_size_option_label {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_size_icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.Ro_size_icon i {
    font-size: 24px;
    color: #000000;
}
.Ro_size_info h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}
.Ro_size_info p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #6c757d;
}
.Ro_size_examples {
    font-size: 12px;
    color: #999999;
    font-style: italic;
}
/* Ute Selection */
.Ro_ute_selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.Ro_ute_option {
    position: relative;
}
.Ro_ute_radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_ute_option_label {
    display: block;
    padding: 30px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    height: 100%;
}
.Ro_ute_option_label:hover {
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.Ro_ute_radio:checked + .Ro_ute_option_label {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_ute_visual {
    text-align: center;
    margin-bottom: 20px;
}
.Ro_ute_visual i {
    font-size: 48px;
    color: #000000;
}
.Ro_ute_details h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}
.Ro_ute_details p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #6c757d;
    text-align: center;
}
.Ro_ute_features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.Ro_ute_features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #495057;
}
.Ro_ute_features i {
    color: #28a745;
    margin-right: 8px;
    font-size: 12px;
}
/* Fuel Options */
.Ro_fuel_option {
    position: relative;
}
.Ro_fuel_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_fuel_option_label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}
.Ro_fuel_option_label:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.Ro_fuel_checkbox:checked + .Ro_fuel_option_label {
    border-color: #000000;
    background: #f8f9fa;
}
.Ro_fuel_icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}
.Ro_fuel_icon i {
    font-size: 20px;
    color: #000000;
}
.Ro_fuel_info h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
.Ro_fuel_info p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #6c757d;
}
.Ro_fuel_pros {
    display: flex;
    gap: 8px;
}
.Ro_fuel_pro {
    font-size: 12px;
    padding: 4px 8px;
    background: #e9ecef;
    border-radius: 12px;
    color: #495057;
}
/* Details Form */
.Ro_details_form {
    margin-top: 30px;
}
.Ro_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.Ro_form_group {
    display: flex;
    flex-direction: column;
}
.Ro_form_label {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}
.Ro_form_input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #ffffff;
}
.Ro_form_input:focus {
    outline: none;
    border-color: #000000;
}

.Ro_form_input::placeholder {
    color: #adb5bd;
}
.Ro_use_option.selected .Ro_use_option_label {
    border-color: #000000;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ensure all 6 steps are visible in financing page */
.financing-personal-details .Ro_progress_step {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure back button is properly visible in financing page */
.financing-personal-details .Ro_next_button_back,
.financing-personal-details #backButton {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Progress bar enhancements */
.Ro_progress_step.completed .Ro_step_circle {
    background-color: #000000;
}
.Ro_progress_step.completed .Ro_step_circle:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
/* Button loading state */
.Ro_next_button.loading {
    opacity: 0.7;
    pointer-events: none;
}
.Ro_next_button.loading:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Smooth transitions for all interactive elements */
.Ro_use_option_label,
.Ro_brand_card_label,
.Ro_size_option_label,
.Ro_ute_option_label,
.Ro_fuel_option_label,
.Ro_contact_label,
.Ro_additional_label {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Step counter in progress bar */
.Ro_progress_step:not(.completed):not(.active) .Ro_step_circle:after {
    content: attr(data-step);
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
}
/* Brand Selection Grid Styles */
.Ro_brands_grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1333px;
}
.Ro_brands_row {
    row-gap: 15px;
}
.Ro_show_more_brands_button {
    border: 0;
    padding: 0;
    background-color: transparent;
}
.show-more-brands {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.Ro_show_more_brands_button i {
    font-size: 15px;
    margin-left: 10px;
}
.Ro_brand_card_label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(95, 101, 110, 0.29);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.Ro_brand_card.selected .Ro_brand_card_label {
    border-color: #000000;
}
.Ro_brand_card_label:hover {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_brand_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.Ro_brand_logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}
.Ro_brand_list_item .Ro_brand_name {
    justify-content: flex-start;
}
.Ro_brand_name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.Ro_brand_name span {
    font-size: 14px;
    font-weight: 500;
    color: #2F2F2F;
    text-align: center;
    line-height: 1.2;
}
.Ro_fuel_option_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.Ro_fuel_option_label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(95, 101, 110, 0.29);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 30px 20px;
    box-sizing: border-box;
}
.Ro_fuel_option_card {
    position: relative;
}
.Ro_fuel_option_label:hover {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.Ro_fuel_option_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
}
.Ro_fuel_option_icon i {
    font-size: 24px;
    color: #000000;
}
.Ro_fuel_option_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    width: 100%;
}
.Ro_fuel_option_title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}
.Ro_fuel_option_description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(95, 101, 110, 1);
    margin: 0;
    line-height: 1.4;
}
.Ro_fuel_power_footer {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 30px 44px;
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Ro_fuel_power_footer_title {
    font-size: 18px;
    font-weight: 600;
    color: #3E3E3E;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.3;
}
.Ro_fuel_power_header_inner_title {
    font-size: 16px;
    font-weight: 500;
    color: #97A0AE;
    text-align: center;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}
.Ro_fuel_power_info_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 887px;
}
.Ro_fuel_power_info_row {
    display: flex;
    gap: 42px;
    width: 100%;
}
.Ro_fuel_power_info_row:last-child {
    gap: 32px;
}
.Ro_fuel_power_info_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_fuel_power_info_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.Ro_fuel_power_info_icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_fuel_power_info_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Ro_fuel_power_info_title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}
.Ro_fuel_power_info_description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(95, 101, 110, 1);
    line-height: 1.6;
    margin: 0;
}
.Ro_brands_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.Ro_seat_row {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.Ro_seat_option {
    flex: 1;
    position: relative;
}
.Ro_seat_radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.Ro_seat_option_label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(95, 101, 110, 0.29);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    gap: 10px;
    height: 75px;
}
.Ro_seat_option_label:hover {
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}
.Ro_seat_radio:checked + .Ro_seat_option_label {
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}
.Ro_seat_icon_container {
    display: flex;
    align-items: center;
    margin-right: auto;
}
.Ro_seat_icons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_seat_icon {
    width: 73px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_seat_icon svg {
    width: 73px;
    height: 46px;
}
.Ro_seat_icon .seat-group path {
    fill: #474746;
}
.Ro_seat_number {
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    background: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(1px, 5px);
}
.Ro_seat_count {
    font-size: 8px;
    font-weight: 500;
    color: #303030;
    line-height: 1;
}
.Ro_seat_text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-left: 40px;
    flex: 1;
}
.Ro_seat_checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}
.Ro_seat_radio:checked + .Ro_seat_option_label .Ro_seat_checkbox {
    background: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}
.Ro_seat_checkbox i.fas {
    color: #F8F8F8;
    font-size: 10px;
    display: none;
}
.Ro_seat_checkbox i.far {
    color: #000000;
    font-size: 12px;
}
.Ro_seat_radio:checked + .Ro_seat_option_label .Ro_seat_checkbox i.fas {
    display: block;
}
.Ro_seat_radio:checked + .Ro_seat_option_label .Ro_seat_checkbox i.far {
    display: none;
}
.Ro_fit_your_details_input_wrapper {
    position: relative;
    margin-bottom: 20px;
}
.Ro_fit_your_details_label {
    font-size: 12px;
    color: #a2a9b3;
    font-weight: 400;
    display: flex;
    position: absolute;
    align-items: center;
    gap: 3px;
    top: 5px;
    left: 20px;
}
.Ro_fit_your_details_label_required {
    width: 10px;
    height: 10px;
    display: inline-flex;
    justify-content: center;
    border: 0.5px solid;
    align-items: center;
    border-radius: 100%;
    font-size: 8px;
    font-weight: bold;
}
.Ro_your_details_content {
    max-width: 500px;
}
.Ro_information_content {
    max-width: 500px;
}
.Ro_price_range_section,
.Ro_deposit_range_section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 80px;
    margin-bottom: 40px;
}
.Ro_price_range_header,
.Ro_deposit_range_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 49px;
}
.Ro_price_range_label,
.Ro_deposit_range_label {
    font-size: 18px;
    font-weight: 500;
    color: #3e3e3e;
    margin: 0;
    line-height: 22px;
}
.Ro_price_range_value_display,
.Ro_deposit_range_value_display {
    width: 186px;
    height: 49px;
    border: 1px solid rgba(95, 101, 110, 0.49);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: transparent;
}
.Ro_price_range_value,
.Ro_deposit_range_value {
    font-size: 16px;
    font-weight: 500;
    color: #303030;
    margin: 0;
}
.Ro_price_range_slider_container,
.Ro_deposit_range_slider_container {
    position: relative;
    width: 100%;
    height: 22px;
}
.Ro_price_range_slider,
.Ro_deposit_range_slider {
    width: 100%;
    height: 22px;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 10;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
}
.Ro_price_range_track,
.Ro_deposit_range_track {
    width: 100%;
    height: 4px;
    background: rgba(173, 181, 207, 0.29);
    border-radius: 100px;
    position: absolute;
    top: 9px;
    left: 0;
    z-index: 1;
}
.Ro_price_range_progress,
.Ro_deposit_range_progress {
    height: 4px;
    background: #303030;
    border-radius: 100px;
    width: 3%;
    transition: width 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.Ro_deposit_range_progress {
    width: 0%;
}
/* Custom slider thumb styling */
.Ro_price_range_slider::-webkit-slider-thumb,
.Ro_deposit_range_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #303030;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #303030;
    position: relative;
    z-index: 20;
}
.Ro_price_range_slider::-moz-range-thumb,
.Ro_deposit_range_slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #303030;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #303030;
    -moz-appearance: none;
    appearance: none;
}
/* Remove default track styling */
.Ro_price_range_slider::-webkit-slider-track,
.Ro_deposit_range_slider::-webkit-slider-track {
    background: transparent;
}
.Ro_price_range_slider::-moz-range-track,
.Ro_deposit_range_slider::-moz-range-track {
    background: transparent;
    border: none;
}
.Ro_price_range_footer_text {
    margin: 0;
    background-color: #E6FFF9;
    text-align: center;
    font-size: 16px;
    padding: 18px 20px;
    font-weight: 500;
}
/* Final Content Section */
.Ro_final_section_1 {
    margin-top: 30px;
}
.Ro_car_recommendation_card {
    background: #F8F8F8;
    border-radius: 10px;
    padding: 20px;
    gap: 18px;
    position: relative;
}
.Ro_car_recommendation_content {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
.Ro_car_image_container {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
}
.Ro_car_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.Ro_car_details {
    flex: 1;
    padding: 20px 0;
}
.Ro_car_title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
    margin: 0 0 15px 0;
}
.Ro_car_description {
    font-size: 14px;
    font-weight: 500;
    color: #97A0AE;
    margin: 0;
    margin-bottom:30px;
}
.Ro_car_actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.Ro_car_buttons {
    display: flex;
    gap: 28px;
    margin-bottom: 11px;
}
.Ro_car_button {
    width: 238px;
    height: 55px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_car_button_primary {
    background: #303030;
    color: #ffffff;
}
.Ro_car_button_primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.Ro_car_button_secondary {
    background: #ffffff;
    color: #303030;
}
.Ro_car_button_secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.Ro_car_favorite {
    position: absolute;
    top: 20px;
    right: 20px;
}
.Ro_car_favorite_button {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.Ro_car_favorite_button:hover {
    background: rgba(0, 0, 0, 0.05);
}
.Ro_car_price.Ro_car_price_new {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #98a0af;
    margin-top: 15px;
}
.Ro_car_favorite_button i {
    font-size: 20px;
    color: #8C95A6;
}
.Ro_final_section_2 {
    max-width: 1111px;
    margin-top: 40px;
}
.Ro_car_listings_header {
    margin-bottom: 60px;
}
.Ro_car_listings_title {
    font-size: 20px;
    font-weight: 600;
    color: #3E3E3E;
    margin: 0;
    line-height: 28px;
}
.Ro_car_listing_card {
    transition: transform 0.2s ease;
}
.Ro_car_listing_card:hover {
    transform: translateY(-2px);
}
.Ro_car_listing_image {
    height: 80px;
    object-fit: cover;
    margin-top: -30px;
}
.Ro_car_listing_image_container {
    display: flex;
    justify-content: center;
}
.Ro_car_listing_price_section {
    margin-bottom: 20px;
}
.Ro_car_listing_card_inner {
    background-color: #f8f8f8;
    padding: 0px 20px 20px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.Ro_car_listing_price_info {
    text-align: center;
    margin-bottom: 20px;
}
.Ro_car_listing_condition {
    font-size: 14px;
    font-weight: 400;
    color: #616872;
    display: block;
    margin-bottom: 4px;
}
.Ro_car_listing_price {
    font-size: 22px;
    font-weight: 600;
    color: #3E3E3E;
    margin: 0;
}
.Ro_car_listing_separator {
    width: 100%;
    height: 1px;
    background: linear-gradient( 90deg, transparent 0%, rgba(97, 104, 114, 0.29) 50%, transparent 100% );
}
.Ro_car_listing_metadata {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 20px;
}
.Ro_car_listing_location,
.Ro_car_listing_mileage {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #97A0AE;
}
.Ro_car_listing_location i,
.Ro_car_listing_mileage i {
    font-size: 12px;
    color: #97A0AE;
}
.Ro_car_listing_location span,
.Ro_car_listing_mileage span {
    font-weight: 400;
    line-height: 22px;
}
/* Vehicle Loan Content Section */
.Ro_vehicle_content.Ro_active_content, 
.Ro_loan_content.Ro_active_content, 
.Ro_employment_content.Ro_active_content, 
.Ro_residency_content.Ro_active_content, 
.Ro_final_details_content.Ro_active_content,
.Ro_loan_processing_content.Ro_active_content {
    display: block;
}
.Ro_vehicle_content, 
.Ro_loan_content, 
.Ro_employment_content, 
.Ro_residency_content, 
.Ro_final_details_content,
.Ro_loan_processing_content {
    margin-bottom: 60px;
    display: none;
}
.vehicle_type_step .Ro_must_have_option  {
    margin-bottom: 15px;
}
/* Completion Modal Styling */
.Ro_completion_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_completion_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.Ro_completion_modal_content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.Ro_completion_header {
    text-align: center;
    margin-bottom: 30px;
}
.Ro_completion_title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}
.Ro_completion_progress {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.Ro_completion_step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}
.Ro_completion_step_icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.Ro_completion_step_icon .fas {
    background: #2F2F2F;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.Ro_completion_step_circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E5E5E5;
    border: 2px solid #E5E5E5;
}
.Ro_completion_step_circle.active {
    background: #2F2F2F;
    border-color: #2F2F2F;
}
.Ro_completion_step_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.Ro_completion_step_main {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}
.Ro_completion_step_sub {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.3;
}
.Ro_completion_step_connector {
    width: 2px;
    height: 23px;
    background: #2F2F2F;
    margin-left: 11px;
    margin-top: -20px;
    margin-bottom: -8px;
}
.Ro_completion_step_connector.inactive {
    background: #E5E5E5;
}
.Ro_completion_step.completed .Ro_completion_step_main,
.Ro_completion_step.completed .Ro_completion_step_sub {
    color: #333;
}
.Ro_completion_step.pending .Ro_completion_step_main,
.Ro_completion_step.pending .Ro_completion_step_sub {
    color: #999;
}
.Ro_buy_new_main_content_flex{
    display: flex;
    gap: 40px;
}


/* Sell My Car Progress Bar */
.Ro_progress_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}
.Ro_progress_bar_header_top_image {
    width: 100%;
    height: 100%;
}
.Ro_progress_bar_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}
/* Vehicle Color Options */
.Ro_vehicle_color_options_grid {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.Ro_vehicle_color_option_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.Ro_vehicle_color_swatch {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
}
.Ro_vehicle_color_swatch.selected {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    outline: 1px solid #9ca3af;
}
.Ro_vehicle_color_swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid #fff;
}
.white_color_bg {
    background-color: #EBEBEB;
}
.white_gray_color_bg {
    background-color: #F1F1F1;
}
.white_lime_gray_color_bg {
    background-color: #F7F7F7;
}
.lime_color_bg {
    background-color: #63A202;
}
.red_color_bg {
    background-color: #761F1F;
}
.silver_color_bg {
    background-color: #7C8488
}
.orange_color_bg {
    background-color: #D91416;
}
.blue_color_bg {
    background-color: #10354F;
}
.gray_color_bg {
    background-color: #596065;
}
.black_color_bg {
     background-color: #101010;
}

.midnight_steel_metallic_color_bg {
    background-color: #4C4646;
}
.wave_metallic_color_bg {
    background-color: #2D4476;
}
.crystal_white_tricoat_color_bg {
    background-color: #EFEFE7;
}
.no_preference_color_bg{
    background-color: #2F2F2F;
}
.whisper_beige_color_bg {
    background-color: #E8D8BE;
}

 .Ro_vehicle_color_interior_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.Ro_vehicle_color_interior_grid {
    display: flex;
    gap: 10px;
}

/* Upload Images Section */
.Ro_sell_car_upload_images_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 1340px;
}
.Ro_upload_file_section {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Upload Section Header */
.Ro_upload_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.Ro_upload_section_arrow {
    color: #303030;
    font-size: 10px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
/* File Upload Area with Progress */
.Ro_file_upload_area {
    border: 1px solid #e7e9ec;
    border-radius: 8px;
    padding: 15px 30px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.Ro_file_upload_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* File Info Section */
.Ro_file_info_section {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}
.Ro_file_icon {
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
}
.Ro_file_icon i {
    font-size: 13px;
    color: #000000;
}
.Ro_file_details {
    display: flex;
    flex-direction: column;
}
.Ro_file_name {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 26px;
}
/* Upload Progress Section */
.Ro_upload_progress_section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.Ro_upload_progress_bar {
    width: 100%;
    margin-bottom: 10px;
}
.Ro_upload_progress_track {
    width: calc(100% - 11px);
    height: 3px;
    background-color: #e7e9ec;
    border-radius: 100px;
    position: relative;
    margin-left: 11px;
}
.Ro_upload_progress_fill {
    height: 100%;
    background-color: #303030;
    border-radius: 100px;
    transition: width 0.3s ease;
}
/* Progress Info */
.Ro_upload_progress_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.Ro_file_size,
.Ro_upload_percentage {
    font-size: 14px;
    font-weight: 400;
    color: #97a0ae;
    line-height: 19px;
}
/* File Actions */
.Ro_file_actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.Ro_file_action_button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(174, 181, 208, 0.29);
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.Ro_file_action_button:hover {
    background-color: #e0e0e0;
}
.Ro_file_action_button i {
    font-size: 12px;
    color: #000000;
}
.Ro_delete_button {
    background-color: #fff1f0;
    border-color: rgba(242, 79, 77, 0.34);
}
.Ro_delete_button:hover {
    background-color: #ffe7e6;
}
.Ro_delete_button i {
    color: #f24f4d;
}
/* Drag & Drop Upload Area */
.Ro_drag_drop_area {
    border: 1px dashed #000000;
    border-radius: 8px;
    padding: 20px 30px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.Ro_drag_drop_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}
.Ro_drag_drop_text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
/* Upload Button */
.Ro_upload_button {
    background-color: #303030;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 135px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_file_input {
    display: none;
}

/* ===== Year Range Section Styles ===== */
.Ro_build_year_range_section {
    margin-bottom: 30px;
}
.Ro_year_tabs_wrapper {
    margin-bottom: 20px;
}
.Ro_year_tabs_container {
    display: flex;
    gap: 20px;
    align-items: center;
}
/* Year Tab Content */
.Ro_year_tab_content_wrapper {
    position: relative;
    min-height: 200px;
}
.Ro_year_tab_content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.Ro_year_tab_content.active {
    display: block;
    opacity: 1;
}
.Ro_year_tab_content .row + .row {
    margin-top: 20px;
}
/* ===== Vehicle Cards Styles ===== */
.Ro_vehicle_card {
    background: #F8F8F8;
    border-radius: 10px;
    padding: 30px 20px;
    margin-top: 50px;
}
.Ro_vehicle_card.active {
    border: 1px solid #303030;
}
.Ro_vehicle_image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_trim_car_image {
    width: 180px;
    margin-top: -70px;
}
.Ro_price_section {
    margin-bottom: 20px;
}
.Ro_price {
    font-size: 32px;
    font-weight: bold;
    color: #3E3E3E;
    line-height: 1.2;
    margin-bottom: 1px;
}
.Ro_price_label {
    font-size: 12px;
    color: #616872;
    margin-top: 1px;
}
.Ro_mpg_section {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.Ro_mpg_item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_mpg_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.Ro_divider_line {
    width: 100%;
    height: 1px;
    background: rgba(97, 104, 114, 0.29);
    margin: 20px 0;
}
.Ro_build_features_list {
    padding-left: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_mpg_info_top {
    font-size: 12px;
    margin-top: 20px;
}
.Ro_mpg_info_bottom {
    font-size: 12px;
}
.Ro_gredient_divider_line {
    background: linear-gradient(to right, #00000000, #6e6d6d, #00000000);
    height: 1px;
    border: 0;
    margin: 20px 0;
}
.Ro_exterior_color_grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.Ro_exterior_color_option_item {
    max-width: 100px;
}
.Ro_exterior_color_option_item {
    max-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.Ro_exterior_color_option_text {
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

/* ===== Accessories Grid Styles ===== */
.Ro_accessory_card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #FFFFFF;
    padding: 20px 10px;
    height: 100%;
    margin-bottom: 20px;
}
.Ro_accessory_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_accessory_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.Ro_build_price_checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.Ro_build_price_checkbox:checked {
    background-color: #000;
}
.Ro_build_price_checkbox:checked::after {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ===== Aftermarket Selections Styles ===== */
.Ro_aftermarket_selections_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_aftermarket_card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #FFFFFF;
    position: relative;
    overflow: visible;
}
.Ro_aftermarket_content {
    padding: 20px 45px;
    overflow: hidden;
}
.Ro_aftermarket_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
    flex-wrap: wrap;
}
.Ro_aftermarket_item_info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.Ro_aftermarket_checkbox_wrapper {
    flex-shrink: 0;
}
.Ro_aftermarket_radio {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 100px;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 0;
}
.Ro_aftermarket_radio:checked {
    background-color: #000000;
}
.Ro_aftermarket_radio:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: block;
    margin: 4px auto;
}
.Ro_aftermarket_title {
    font-size: 18px;
    font-weight: 500;
    color: #3E3E3E;
    margin: 0;
    line-height: 1.2;
}
.Ro_aftermarket_pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_aftermarket_price_group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_aftermarket_price_original {
    color: #F24F4D !important;
    text-decoration: line-through;
}
.Ro_aftermarket_discount_badge {
    position: absolute;
    top: -28px;
    right: -73px;
    background: #F24F4D;
    color: #FFFFFF;
    padding: 19px 27px 3px;
    border-radius: 4px;
    transform: rotate(40deg);
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}
.discount_price {
    color: #f34f4d !important;
    display: inline-block;
}

/* ================================ */
/* Ro Incentives Selections Styles */
/* ================================ */
.Ro_incentives_accordion {
    border: none;
}
.Ro_incentives_accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    background: white;
}
.Ro_incentives_accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.Ro_incentives_accordion .accordion-header {
    border: none;
}
.ro_incentives_accordion .accordion-button {
    border: none;
    background: transparent;
    padding: 20px 45px;
    box-shadow: none;
    border-radius: 10px !important;
    position: relative;
}
.Ro_incentives_accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #1a1a1a;
    box-shadow: none;
}
.Ro_incentives_accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}
.accordion-body.Ro_incentive_description {
    padding: 0px 20px 20px 20px;
}
.Ro_incentive_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 20px 20px 20px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-wrap: wrap;
}
.Ro_incentive_left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.Ro_incentive_checkbox {
    position: relative;
}
.Ro_incentive_radio {
    width: 18px;
    height: 18px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
}
.Ro_incentive_radio:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #3F5BA5;
    border-radius: 50%;
}
.Ro_incentive_radio_label {
    cursor: pointer;
    margin: 0;
}
.Ro_incentive_details {
    flex: 1;
    gap: 5px;
    display: flex;
    flex-direction: column;
}
.Ro_incentive_right {
    display: flex;
    align-items: center;
    gap: 53px;
}
.Ro_incentive_badge {
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid;
    width: 83px;
    height: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Ro_badge_cash {
    background-color: #EAF3FF;
    color: #3F5BA5;
    border-color: #3F5BA5;
}
.Ro_badge_finance {
    background-color: #E9F7EB;
    color: #3E8F4A;
    border-color: #3E8F4A;
}
.Ro_badge_lease {
    background-color: #FFF2D5;
    color: #BC9050;
    border-color: #BC9050;
}

/* Final Details Left Wrapper Slider Styles */
.Ro_final_details_left_wrapper {
    width: 100%;
    max-width: 535px;
}
.Ro_final_details_slider_container {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}
.Ro_final_details_main_slider {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}
.Ro_final_details_main_slider .slick-track {
    display: flex !important;
}
.Ro_slider_item {
    position: relative;
    width: 100%;
    height: 303px;
    overflow: hidden;
    border-radius: 8px;
}
.Ro_slider_main_image {
    width: 100%;
    height: 303px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
/* Custom Slider Dots */
.Ro_slider_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.Ro_slider_dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.Ro_slider_dot.active {
    background-color: #1a1a1a;
}
.Ro_slider_dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
}
/* Thumbnail Navigation */
.Ro_final_details_thumbnail_nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.Ro_thumbnail_item {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.Ro_thumbnail_item:hover,
.Ro_thumbnail_item.active {
    border-color: #1a1a1a;
    transform: scale(1.05);
}
.Ro_thumbnail_item:active {
    transform: scale(0.95);
}
.Ro_thumbnail_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
}
.Ro_thumbnail_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.Ro_thumbnail_item:not(.active)::after {
    opacity: 1;
}
.Ro_slider_dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.Ro_slider_dot:hover {
    transform: scale(1.1);
}
.Ro_slider_dot:active {
    transform: scale(0.9);
}
.Ro_slider_dot.active {
    background-color: #1a1a1a;
}
.Ro_slider_dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
}
/* Hide default slick dots */
.Ro_final_details_main_slider .slick-dots {
    display: none !important;
}
/* Hide default slick arrows */
.Ro_final_details_main_slider .slick-prev,
.Ro_final_details_main_slider .slick-next {
    display: none !important;
}
/* Ro_final_details_right_wrapper Section Styles */
.Ro_final_details_right_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Header Section */
.Ro_final_header_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.Ro_final_title_container {
    width: 451px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_final_actions {
    width: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.Ro_final_compare_icon,
.Ro_final_heart_icon {
    cursor: pointer;
    transition: opacity 0.3s ease;
}
/* Details Section */
.Ro_final_details_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_final_detail_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Ro_final_detail_left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.Ro_final_color_option {
    display: flex;
    align-items: center;
    gap: 6px;
}
.Ro_final_divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}
.Ro_final_details_wrapper {
    display: flex;
    gap: 30px;
}
/* Special divider for interior section */
.Ro_final_detail_row:nth-child(6) + .Ro_final_divider {
    width: 550px;
}
/* Pricing Summary Section */
.Ro_final_pricing_summary {
    width: 100%;
    border: 1px solid rgba(29, 29, 29, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
}
.Ro_final_pricing_container {
    width: 578px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.Ro_final_pricing_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.Ro_final_pricing_column:first-child {
    width: 163px;
}
.Ro_final_pricing_column:nth-child(3) {
    width: 90px;
}
.Ro_final_pricing_column:last-child {
    width: 165px;
}

.Ro_final_pricing_divider {
    width: 1px;
    height: 75px;
    background-color: #d8d8d8;
}
.Ro_final_exterior_image {
    width: 40px;
}

/* Ro_matches_tabing_wrapper Section Styles */
.Ro_matches_tab_container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.Ro_matches_tab_navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}
.Ro_matches_tab_content {
    width: 100%;
}
.Ro_matches_content {
    display: none;
    width: 100%;
}
.Ro_matches_content.active {
    display: block;
}
.Ro_final_details_bottom_wrapper {
    padding-top: 70px;
}
.Ro_final_details_button_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_final_details_button {
    background-color: #1D1D1D;
    border: 1px solid #1D1D1D;
    border-radius: 10px;
    height: 55px;
    font-weight: bold;
    color: #FFFFFF;
    width: 100%;
}
.Ro_final_details_button:hover {
    background-color: #1D1D1D;
    border: 1px solid #1D1D1D;
    color: #FFFFFF;
}
.Ro_final_details_button.btn-secondary {
    background-color: #FFFFFF;
    color: #1D1D1D;
}
/* Best Matches Slider Styles */
.best_matches_wrapper {
    margin-top: 30px;
}
.best_match_card {
    border-radius: 12px;
    margin: 0 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 15px;
    border: 1px solid #e5e5e5;
}
.Ro_matches_tabing_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.Ro_final_details_section_bottom_wrapper {
    display: flex;
    width: 100%;
}
.best_matches_slider .slick-list {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    width: 66vw !important;
} 
.card_image_wrapper {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
}
.card_car_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.card_category {
    margin-bottom: 12px;
}
.card_year {
    background-color: #f1f3f5;
    line-height: normal;
    padding: 4px 12px;
    border-radius: 5px;
}
.card_title_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}
.pricing_row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.card_pricing {
    margin-bottom: 25px;
}
.estimated_savings, 
.starting_msrp {
    display: flex;
    flex-direction: column;
}
.card_details {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail_item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.detail_value {
    flex: 1;
}
.detail_icon {
    width: 15px;
}
/* Slick Slider Customization for Best Matches */
.best_matches_slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0px;
}
.best_matches_slider .slick-dots li button {
    width: 15px;
    height: 5px;
    border-radius: 100px;
    background-color: #dfdddd;
    border: none;
    font-size: 0;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.best_matches_slider .slick-dots li button:before{
    display: none;
}
.best_matches_slider .slick-dots li.slick-active button {
    width: 25px;
    height: 5px;
    background-color: #1a1a1a;
    transform: none;
}
.best_matches_slider .slick-prev, 
.best_matches_slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.best_matches_slider .slick-prev {
    left: -20px;
}
.best_matches_slider .slick-next {
    right: -20px;
}
.best_matches_slider .slick-prev:before,
.best_matches_slider .slick-next:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-top: 2px solid #1a1a1a;
    border-right: 2px solid #1a1a1a;
}
.best_matches_slider .slick-prev:before {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.best_matches_slider .slick-next:before {
transform: translate(-70%, -50%) rotate(45deg);
}
/* Price Analysis Section Styles */
.Ro_price_analysis_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* Market Info Bar */
.Ro_market_info_bar {
    background-color: #1a1a1a;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Ro_final_details_offer_price_title_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.Ro_market_info_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.Ro_market_label {
    color: #b8b5b5;
    font-size: 12px;
    font-weight: 400;
}
.Ro_market_value {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}
.Ro_market_divider {
    width: 1px;
    height: 51px;
    background-color: #606060;
}
.Ro_get_offer_btn {
    background-color: #fff !important;
    color: #1a1a1a !important;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 200px;
    height: 50px;
}
/* Explanation Sidebar */
.Ro_chart_section {
    display: flex;
    width: 100%;
    gap: 10px;
}
.Ro_price_categories {
    max-width: 200px;
}
.Ro_chart_bars_wrapper {
    max-width: 380px;
}
.Ro_chart_image {
    width: 100%;
}
.Ro_explanation_sidebar {
    background-color: #f8f8f8;
    padding: 40px 20px;
    flex: 1;
}
.Ro_explanation_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_explanation_title {
    color: #4499ff !important;
}
.Ro_explanation_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.Ro_explanation_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(97, 104, 114, 0.29) 50%, transparent 100%);
}
.Ro_explanation_points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 15px;
    margin: 0;
}
.Ro_explanation_point {
    list-style: disc;
    color: #449AFF;
}
.Ro_chart_content_wrapper {
    display: flex;
    gap: 10px;
    align-items: self-end;
}
.best_card_similar {
    border: 0;
    background-color: #F8F8F8;
    padding: 0 0 20px 0px;
}
.card_similar_car_wrapper {
    display: flex;
    justify-content: center;
}
.card_similar_car_image {
    width: 180px;
    margin-bottom: 20px;
}
.similar_card_wrapper {
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin: 0 10px;
}
.similar_card_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.similar_card_image {
    width: 100%;
}
.Ro_overview_wrapper {
    display: flex;
    background-image: url(../images/overview-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 40px 70px;
    margin-top: 100px;
    justify-content: flex-end;
}
.Ro_overview_title_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}
.Ro_overview_button {
    background-color: #fff !important;
    color: #303030 !important;
    font-weight: bold;
    border: 0;
    width: 175px;
    height: 50px;
}

/* Loan Year Slider Styles */
.Ro_loan_year_wrapper {
    margin-bottom: 40px;
}
.Ro_loan_year_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.Ro_loan_year_display {
    border: 1px solid rgba(151, 160, 174, 0.29);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 186px;
    text-align: center;
}
.Ro_loan_year_slider_container {
    position: relative;
    width: 100%;
    height: 22px;
    margin-top: 10px;
}
.Ro_loan_year_track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(173, 181, 208, 0.29);
    border-radius: 100px;
    transform: translateY(-50%);
}
.Ro_loan_year_progress {
    height: 100%;
    background-color: #303030;
    border-radius: 100px;
    width: 85%;
    transition: width 0.3s ease;
}
.Ro_loan_year_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 22px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    z-index: 10;
}
.Ro_loan_year_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at center, white 0%, white 28%, #303030 29%, #303030 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 1px transparent;
}
.Ro_loan_year_slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at center, white 0%, white 28%, #303030 29%, #303030 100%);
    cursor: pointer;
    border: none;
}
.Ro_loan_year_slider::-moz-range-track {
    background: transparent;
    height: 4px;
}
.Ro_details_input_wrapper {
    margin-bottom: 20px;
    position: relative;
}
.Ro_details_radio_input_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Preliminary Matches Styles */
.Ro_preliminary_header_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.Ro_preliminary_rating_section {
    display: flex;
    gap: 15px;
}
.Ro_preliminary_background_card {
    display: flex;
    flex-direction: column;
    background-color: #1D1D1D;
    border-radius: 10px;
    margin-top: 50px;
}
.Ro_preliminary_details_top {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px 30px;
}
.Ro_preliminary_loan_amount_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.Ro_preliminary_details_bottom {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #424242;
}
.Ro_preliminary_detail_item {
    padding: 30px 40px;
    border-left: 1px solid #4e4c4c;
}

/* Preliminary Price Tab Content Item Styles */
.Ro_preliminary_price_tab_section {
    padding: 50px 0;
}
.Ro_preliminary_price_tab_content_item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.07);
    margin-top: 50px;
    padding: 30px;
    position: relative;
}
/* Option header with green background */
.Ro_preliminary_option_header {
    background-color: rgba(97, 221, 187, 0.17);
    border: 1px solid #61DDBB;
    border-radius: 8px;
    padding: 20px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.Ro_preliminary_option_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Brand logo section */
.Ro_preliminary_brand_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.Ro_brand_image {
    max-width: 174px;
    max-height: 35px;
    object-fit: contain;
}
/* Financial details section */
.Ro_preliminary_financial_details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.Ro_preliminary_detail_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    flex: 1;
}
.Ro_preliminary_action_buttons .Ro_final_details_button {
    width: 200px;
}
.Ro_preliminary_detail_label {
    margin-bottom: 0;
}
/* Action buttons section */
.Ro_preliminary_action_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}
/* Loan breakdown link */
.Ro_preliminary_loan_breakdown {
    display: flex;
    justify-content: center;
}
.Ro_preliminary_price_tab_section .Ro_tabs_wrapper {
    justify-content: center;
}

/* Loan Matches Cards Styles */
.Ro_preliminary_loan_matches_container {
    margin-top: 50px;
}
.Ro_preliminary_loan_matches_card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.07);
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 20px;
}
/* Card header with logo and amount */
.Ro_loan_card_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Ro_loan_card_logo {
    display: flex;
}
.Ro_bank_logo_image {
    max-width: 96px;
}
.Ro_loan_card_amount {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
/* Interest rates section */
.Ro_loan_card_rates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_loan_rate_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Ro_loan_detail_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Ro_loan_breakdown_link {
    text-decoration: underline;
    font-weight: 500;
    text-align: center;
}
.Ro_global_main_header_right_button .Ro_final_details_button {
    width: 180px;
}
.Ro_preliminary_confidence_section {
    background-color: #ffffff;
    padding: 40px 30px;
    position: relative;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.07);
}
/* Confidence Progress Steps Styling */
.Ro_confidence_progress_steps_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.Ro_confidence_progress_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.Ro_confidence_step_circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}
.Ro_confidence_step_inner_circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.Ro_confidence_step_checkmark {
    position: absolute;
    width: 10px;
    height: 10px;
    display: none;
    align-items: center;
    justify-content: center;
}
.Ro_confidence_step_checkmark i {
    font-size: 8px;
    color: #ffffff;
}
.Ro_step_label {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}
/* Progress Lines */
.Ro_confidence_progress_line {
    height: 1px;
    position: absolute;
    top: 12px;
    z-index: 1;
}
/* First progress line (between step 1 and 2) */
.Ro_confidence_progress_steps_container .Ro_confidence_progress_line:nth-of-type(2) {
    left: 80px;
    width: 342px;
}
/* Second progress line (between step 2 and 3) */
.Ro_confidence_progress_steps_container .Ro_confidence_progress_line:nth-of-type(4) {
    left: 448px;
    width: 317px;
}
/* Third progress line (between step 3 and 4) */
.Ro_confidence_progress_steps_container .Ro_confidence_progress_line:nth-of-type(6) {
    left: 815px;
    width: 318px;
}
/* Completed Step Styles */
.Ro_confidence_step_completed .Ro_confidence_step_circle {
    background-color: #1a1a1a;
}
.Ro_confidence_step_completed .Ro_confidence_step_inner_circle {
    display: none;
}
.Ro_confidence_step_completed .Ro_confidence_step_checkmark {
    display: flex;
}
.Ro_confidence_step_completed .Ro_step_label {
    color: #000000;
    font-weight: 400;
}
/* Active Step Styles */
.Ro_confidence_step_active .Ro_confidence_step_circle {
    background-color: #1a1a1a;
}
.Ro_confidence_step_active .Ro_confidence_step_inner_circle {
    background-color: #ffffff;
}
.Ro_confidence_step_active .Ro_step_label {
    color: #000000;
    font-weight: 400;
}
/* Inactive Step Styles */
.Ro_confidence_step_inactive .Ro_confidence_step_circle {
    background-color: transparent;
    border: 1px solid #d4d5d7;
}
.Ro_confidence_step_inactive .Ro_confidence_step_inner_circle {
    background-color: #d4d5d7;
}
.Ro_confidence_step_inactive .Ro_step_label {
    color: #d4d5d7;
    font-weight: 400;
}
/* Progress Line States */
.Ro_confidence_line_completed {
    border-top: 2px dashed #000;
}
.Ro_confidence_line_inactive {
    background-color: #d4d5d7;
    border-top: 1px solid #d4d5d7;
    height: 1px;
}
.Ro_preliminary_saved_card {
    padding: 50px 40px;
    background-color: #303030;
    border-radius: 12px;
    background-image: url(../images/saved-card-1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}
.Ro_preliminary_saved_card_right {
    background-image: url(../images/saved-card-2.png);
}
.Ro_preliminary_saved_card .Ro_final_details_button {
    width: 250px;
}
.Ro_preliminary_saved_card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Ro_preliminary_price_saved_car_section {
    margin-top: 70px;
}
.Ro_why_choose_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.Ro_choose_icon {
    margin-bottom: 30px;
}
.Ro_why_choose_section {
    margin-top: 70px;
}
.Ro_preliminary_main_section {
    padding-bottom: 40px;
}

/* Loan Matches Modal Styles */
.Ro_loan_matches_modal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}
.Ro_loan_modal_content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
}
.Ro_loan_modal_header {
    border-bottom: none;
    padding: 25px 30px 0 30px;
    position: relative;
}
.Ro_loan_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.Ro_loan_modal_close:focus {
    outline: none;
    box-shadow: none;
}
.Ro_loan_modal_body {
    padding: 20px 30px;
}
.Ro_loan_modal_provider {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}
.Ro_loan_provider_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Ro_loan_provider_rate {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
}
.Ro_loan_choice_section {
    margin-bottom: 20px;
}
.Ro_loan_choice_header {
    margin-bottom: 20px;
}
.Ro_loan_choice_options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}
.Ro_loan_choice_option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.Ro_loan_choice_radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.Ro_loan_choice_radio:checked {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}
.Ro_loan_choice_radio:focus {
    box-shadow: none;
    border-color: #1a1a1a;
}
.Ro_loan_choice_label {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
}
.Ro_loan_modal_footer {
    border-top: none;
    padding: 0 30px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.Ro_loan_matches_modal .modal-backdrop {
    background-color: rgba(26, 26, 26, 0.5);
}
.Ro_loan_modal_footer .Ro_final_details_button {
    width: 180px;
}

/* ===== Monthly Expenses Slider Container ===== */
.Ro_monthly_expenses_slider_container {
    margin-top: 30px;
}
.Ro_expense_item {
    margin-bottom: 90px;
}
.Ro_expense_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.Ro_expense_label_wrapper {
    display: flex;
    gap: 5px;
    flex: 1;
    flex-direction: column;
}
.Ro_expense_label {
    font-size: 18px;
    font-weight: 400;
    color: #3e3e3e;
    margin: 0;
    line-height: 22px;
}
.Ro_info_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.Ro_info_icon svg {
    width: 18px;
    height: 18px;
}
.Ro_expense_toggle_wrapper {
    display: flex;
    align-items: center;
}
.Ro_toggle_buttons {
    display: flex;
    align-items: center;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.Ro_toggle_button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 94px;
    text-align: center;
    color: #8e8e8e;
    font-weight: bold;
}
.Ro_toggle_button:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    border-right: none;
}
.Ro_toggle_button:last-child {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: none;
}
.Ro_toggle_button.active {
    background: #3f3f3f;
    color: white;
    border-color: #3f3f3f;
}
.Ro_expense_slider_section {
    position: relative;
}
.Ro_slider_container {
    position: relative;
    width: 100%;
    height: 22px;
    margin-bottom: 10px;
}
.Ro_slider_track {
    width: 100%;
    height: 4px;
    background: rgba(173, 181, 207, 0.29);
    border-radius: 100px;
    position: absolute;
    top: 9px;
    left: 0;
    z-index: 1;
}
.Ro_slider_progress {
    height: 4px;
    background: #303030;
    border-radius: 100px;
    width: 21.5%;
    transition: width 0.3s ease;
    position: absolute;
    top: 9px;
    left: 0;
    z-index: 2;
}
.Ro_expense_slider {
    width: 100%;
    height: 22px;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 10;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
}
/* Custom slider thumb styling */
.Ro_expense_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 7px solid #303030;
    position: relative;
    z-index: 20;
}
.Ro_expense_slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 7px solid #303030;
    -moz-appearance: none;
    appearance: none;
}
/* Remove default track styling */
.Ro_expense_slider::-webkit-slider-track {
    background: transparent;
}
.Ro_expense_slider::-moz-range-track {
    background: transparent;
    border: none;
}
.Ro_slider_tooltip {
    position: absolute;
    top: 30px;
    left: 67px;
    transform: translateX(-50%);
    background: #303030;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 101px;
    justify-content: center;
}
.Ro_tooltip_label {
    font-weight: 400;
}
.Ro_tooltip_value {
    font-weight: 600;
    font-size: 16px;
}
.Ro_expense_monthly_header {
    border-radius: 8px;
    background-color: #3F3F3F;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.Ro_expense_outline_toggle_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}
.Ro_expense_checkbox_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.Ro_switch_input {
    width: 50px !important;
    height: 25px;
    margin: 0 !important;
    margin-right: 15px !important;
    background-color: #ffffff !important;
    border-color: #3f3f3f !important;
}
.Ro_switch_wrapper {
    padding-left: 0 !important;
    margin: 0 !important;
}
.Ro_switch_wrapper .form-check-input:checked{
    background-color: #3f3f3f !important;
    border-color: #3f3f3f !important;
}
.Ro_switch_input:focus {
    outline: none !important;
    box-shadow: none !important;
}
.Ro_expense_label_wrapper_left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.Ro_select_item_wrapper {
    margin-bottom: 30px;
}

/* Custom Bootstrap Tooltip Styling */
.tooltip {
    font-size: 14px;
}
.tooltip-inner {
    background-color: #3f3f3f;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
}
.tooltip.bs-tooltip-right .arrow::before {
    border-right-color: #3f3f3f;
}
.tooltip.bs-tooltip-left .arrow::before {
    border-left-color: #3f3f3f;
}
.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #3f3f3f;
}
.tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #3f3f3f;
}

.Ro_vehicle_type_step_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.Ro_expense_label_wrapper_right .Ro_switch_input {
    margin-right: 0px !important;
}
.Ro_attach_input_wrapper {
    display: flex;
    align-items: center;
}
.Ro_attach_input_text {
    background-color: transparent;
    border: 1px solid #ccc;
    border-right: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #303030;
    height: 60px;
    line-height: normal;
    display: flex;
    align-items: center;
}
.Ro_financing_attach_input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.Ro_the_boring_bits_redio_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0px;
}
.Ro_required_document {
    background-color: #e0f0ff;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #cfe2f6;
    font-weight: 500;
    margin-left: 10px;
}
.Ro_document_header_button {
    background: #f8f8f8 !important;
    padding: 25px 20px;
}
.Ro_document_item {
    border: 0 !important;
}
.Ro_document_description {
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
}
.Ro_document_item {
    margin-bottom: 20px !important;
}


/* File Upload Modal Styles */
.Ro_file_upload_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.Ro_file_upload_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.Ro_file_upload_modal_content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    max-width: 580px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.Ro_file_upload_modal_header {
    padding: 30px 30px 0px 30px;
    position: relative;
    text-align: center;
}
.Ro_file_upload_modal_header .Ro_loan_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 18px;
    color: #1a1a1a;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.Ro_file_upload_modal_body {
    padding: 20px 40px 40px 40px;
}
.Ro_modal_upload_area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
}
.Ro_modal_upload_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.Ro_modal_upload_icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    margin-bottom: 8px;
}
.Ro_modal_file_input {
    display: none;
}
.Ro_uploaded_files_list {
    margin-bottom: 24px;
}
.Ro_uploaded_file_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e9ecef;
}
.Ro_uploaded_file_info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.Ro_uploaded_file_icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 6px;
}
.Ro_uploaded_file_progress {
    flex: 1;
    max-width: 120px;
    margin: 0 16px;
}
.Ro_file_progress_bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}
.Ro_file_progress_fill {
    height: 100%;
    background: #10b981;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.Ro_file_progress_text {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}
.Ro_uploaded_file_actions {
    display: flex;
    gap: 8px;
}
.Ro_file_action_button {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.Ro_file_action_button:hover {
    color: #1a1a1a;
    background: #e5e7eb;
}
.Ro_file_action_button.remove:hover {
    color: #dc2626;
    background: #fee2e2;
}

.Ro_uploaded_file_details h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}
.Ro_uploaded_file_details p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}
.Ro_modal_upload_footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
/* Financing Personal Details Styles */
.Ro_financing_input {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #303030;
    height: 60px;
}
.Ro_financing_input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #303030;
}
.Ro_financing_label {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
.Ro_financing_option {
    margin-bottom: 20px;
}
.pre-filled-content {
    border: 1px solid #61DDBB;
    background-color: hsl(163.55deg 64.58% 62.35% / 17%);
    padding: 25px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pre-filled-header {
    padding: 40px 0;
}