@font-face {
    font-family: 'PoppinsBold';
    src: url("../fonts/Poppins-Bold-MZdXsbb.woff") format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsMedium';
    src: url("../fonts/Poppins-Medium-K3YK1cq.woff") format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsLight';
    src: url("../fonts/Poppins-Light-MufD_GM.woff") format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsSemiBold';
    src: url("../fonts/Poppins-SemiBold--A4nWe0.woff") format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsRegular';
    src: url("../fonts/Poppins-Regular--dt-U2H.woff") format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --chery-color: #A4896C;
    --footer-text-muted: #9ca3af;
    --chery-color-hover: #A4896C;
    --chery-dark: #202020;
    --chery-gray: #404040;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
}
body{
    font-family: 'PoppinsRegular';
    font-size: 16px;
    color: var(--chery-gray);
    background-color: #F5F4F3;
}  
*{
    margin: 0px;
    padding: 0px;
}
p{ 
    font-family: 'PoppinsRegular';
    font-size: 16px;
    color: var(--chery-gray);
    margin-bottom: 20px;
}
li{
    font-family: 'PoppinsRegular';
    font-size: 16px;
    color: var(--black-color);
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1;
}
.img_radius{
    border-radius: 10px;
}



/* Header */

.navbar {
    border-bottom: 1px solid #00000014;
    padding: 20px 0;
    background-color: #F5F4F3;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    position: absolute;
    width: 100%;
    z-index: 9999;
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.menu{
    width: 100%;
}
.menu_header .navbar-nav .dropdown-menu{
    padding: 20px;
    border-radius: 20px;
    border-top-left-radius: 0;
}
.dropdown-menu.show{
    display: flex !important;
}
.menu_header .navbar-nav .dropdown-menu label{
    margin-right: 15px;
    margin-top: 5px;
}
.navbar-nav li{
    margin-left: 30px;
}
.navbar .nav-link {
    color: var(--chery-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 0 !important;
    transition: color 0.3s;
    display: inline-block;
}
.navbar .nav-link i{
    margin-right: 4px;
}

.navbar .nav-link:hover {
    color: var(--chery-color);
}

.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-menu li{
    margin-left: 0;
    margin-bottom: 10px;
}
.dropdown-menu li:last-child{
    margin-bottom: 0;
}
.dropdown-item {
    font-size: 16px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--chery-color);
}
.nav_fixed{
    position: fixed;
}
.menu_header .btn-header, .menu_header .btn-header-outline {
    font-family: 'PoppinsSemiBold';
    font-size: 14px;
    color: var(--white-color) !important;
    padding: 8px 20px !important;
    transition: background-color 0.3s;
    border-radius: 8px;
}
.menu_header .btn-header svg {
    width: 17px;
    margin-left: 6px;
    margin-top: -2px;
}
.menu_header .btn-header:hover {
    background-color: var(--chery-color-hover);
    color: white;
}

.menu_header .btn-header-outline {
    background-color: transparent;
}

.btn-header-outline:hover {
    background-color: #000;
    color: white;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem;
    transition: color 0.3s;
}

.lang-btn:hover {
    color: var(--chery-color);
}

.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.card {
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-text {
    font-size: 0.875rem;
    color: #6c757d;
}
.close_menu, .open_menu{
    display: none;
    background: transparent;
    border: 0;
    outline: none;
}
@media (max-width: 1399px) {
    .menu_header .navbar-nav{
        text-align: center;
    }
    .navbar-nav li {
        margin-left: 20px;
    }
}
@media (max-width: 1199px) {
    .menu_header .navbar-nav .dropdown-menu{
        position: relative !important;
        transform: unset !important;
    }
    .close_menu{
        display: none;
    }
    .open_menu{
        display: block;
    }
    .navbar-toggler svg{
        color: var(--white-color);
    }
    .show_menu {
        left: 0;
        opacity:1;
        z-index: 999;
    }
    .hide_menu {
        opacity:0;
        left: 100%;
    }
    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: start;
        flex-direction: column;
        background: var(--white-color);
        transition: .7s ease;
        -webkit-transition: .7s ease;
        -moz-transition: opacity .7s ease;
        padding-top: 120px;
        overflow-y: auto;
        text-align: unset;
    }
    .navbar-nav li{
        margin-left: 0;
        margin-top: 20px;
    }
    .navbar-collapse{
        padding: 20px 0;
    }
    .dropdown-menu li{
        margin-top: 0;
    }
}
@media (max-width: 575px) {
    .navbar{
        padding: 12px 10px;
    }
    .btn-header, .btn-header-outline{
        padding: 8px 15px !important;
        font-size: 12px;
    }
}

/* Mitsubishi Buttons */

.mitsubishi_buttons{
    display: flex;
    gap: 15px;
}
.btn_mitsubishi{
    font-family: 'PoppinsSemiBold';
    color: var(--chery-dark);
    padding: 12px 30px;
    border: 2px solid transparent;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 6px;
}
.btn_mitsubishi img{
    margin-right: 15px;
    width: auto !important;
}
.btn_mitsubishi svg{
    width: 20px;
    margin-left: 12px;
}
.no_border{
    border: 0 !important;
}
.chery-color{
    color: var(--chery-color);
}
.text-white{
    color: var(--white-color);
}
.text-black{
    color: var(--black-color);
}
@media (max-width: 575px) {
    .mitsubishi_buttons{
        flex-direction: column;
    }
    .mitsubishi_buttons.justify-content-center{
        flex-direction: row;
    }
    .btn_mitsubishi{
        justify-content: center;
        width: 100%;
    }
}


/* Switcher Home */

.switcher_home .slide-content::before {
    display: none;
}
.switcher_home {
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    overflow: hidden;
}
.switcher_home .slide-title {
    font-family: 'PoppinsSemiBold';
}
/* ==================== DESKTOP STYLES ==================== */
@media (min-width: 992px) {
    .switcher_home {
        height: 100vh;
        min-height: 700px;
    }
    .switcher_small.switcher_home{
        height: auto;
        min-height: 400px;
    }
    .switcher_home .slide-item {
        position: relative;
        height: 100vh;
        min-height: 700px;
    }
    .switcher_small.switcher_home .slide-item {
        height: 100%;
        min-height: 400px;
    }
    .switcher_home .slide-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .switcher_home .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .switcher_home .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.1) 60%, transparent 80%);
    }

    .switcher .slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
        z-index: 10;
        padding-bottom: 40px;
    }

    .switcher_home .nav-arrows {
        position: absolute;
        top: -60px;
        left: 0;
        display: none;
        gap: 12px;
        z-index: 20;
    }

    .switcher_home .nav-arrow {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(55, 55, 55, 0.85);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .switcher_home .nav-arrow:hover {
        background: rgba(80, 80, 80, 0.95);
    }

    .switcher_home .nav-arrow svg {
        width: 22px;
        height: 22px;
    }

    .switcher_home .slide-title {
        font-size: 45px;
        font-weight: 700;
        color: #fff;
        line-height: 1.08;
        margin-bottom: 24px;
        max-width: 630px;
    }
    .switcher_home .title-underline {
        display: none;
    }
    .switcher .title-underline {
        width: 55px;
        height: 3px;
        background: var(--chery-color);
        margin-bottom: 18px;
        display: block;
    }
    .switcher_home .slide-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.65;
        margin-bottom: 30px;
        max-width: 630px;
    }

    .slide-buttons {
        display: flex;
        gap: 16px;
    }

    .btn-reserve {
        background: var(--chery-color);
        color: #fff;
        padding: 16px 32px;
        border: none;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-reserve:hover {
        background: #c50000;
        color: #fff;
    }

    .btn-reserve svg {
        width: 16px;
        height: 16px;
    }

    .btn-more {
        background: transparent;
        color: #fff;
        padding: 16px 32px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

    .slide-dots {
        position: absolute;
        bottom: -40px;
        left: 12px;
        display: none;
        gap: 12px;
        z-index: 20;
    }

    .dot-line {
        width: 48px;
        height: 4px;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-line.active {
        background: var(--chery-color);
    }
}

/* ==================== MOBILE STYLES ==================== */
@media (max-width: 991px) {
    .switcher_home {
        height: auto;
    }

    .switcher_home .slide-item {
        display: flex;
        flex-direction: column;
    }

    .switcher_home .slide-image-wrapper {
        width: 100%;
        height: 400px;
        position: relative;
        overflow: hidden;
    }

    .switcher_home .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .switcher_home .slide-overlay {
        display: none;
    }

    .switcher_home .slide-content {
        background: var(--chery-gray);
        padding: 30px 24px 44px;
        position: unset;
        max-width: 100%;
        width: 100%;
    }

    .switcher_home .nav-arrows {
        display: none;
        gap: 10px;
        margin-bottom: 24px;
    }

    .switcher_home .nav-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(75, 75, 75, 0.9);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .switcher_home .nav-arrow:hover {
        background: rgba(100, 100, 100, 1);
    }

    .switcher_home .nav-arrow svg {
        width: 18px;
        height: 18px;
    }

    .switcher_home .slide-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .switcher_home .title-underline {
        width: 55px;
        height: 3px;
        background: var(--chery-color);
        margin-bottom: 18px;
    }

    .switcher_home .slide-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .slide-buttons {
        display: flex;
        gap: 12px;
    }

    .btn-reserve {
        background: var(--chery-color);
        color: #fff;
        padding: 14px 22px;
        border: none;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-reserve:hover {
        background: #c50000;
        color: #fff;
    }

    .btn-reserve svg {
        width: 14px;
        height: 14px;
    }

    .btn-more {
        background: transparent;
        color: #fff;
        padding: 14px 22px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .slide-dots {
        display: none;
        gap: 10px;
        margin-top: 32px;
    }

    .dot-line {
        width: 36px;
        height: 3px;
        background: rgba(255, 255, 255, 0.28);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-line.active {
        background: var(--chery-color);
    }
}
@media (max-width: 575px){
    .switcher_home .slide-title{
        font-size: 25px;
    }
}


/* Footer */

.footer {
    background: url("../images/bg_footer_desktop-PN89z-D.jpg") no-repeat top;
    padding-top: 500px;
    background-size: cover !important;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.footer .container {
    background-color: var(--white-color);
    padding: 30px 50px;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-main {
    padding-bottom: 30px;
}

.footer-logo {
    max-width: 120px;
}
.footer-content{
    padding: 50px 0;
    border-top: 1px solid #00000029;
    border-bottom: 1px solid #00000029;
}
.footer-tagline {
    font-size: 12px;
    color: var(--white-color);
    margin-top: 8px;
    font-style: italic;
}

.footer-column-title {
    font-family: 'PoppinsSemiBold';
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--chery-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black-color);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-text {
    font-size: 12px;
    color: var(--black-color);
}

.footer-bottom-links {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 10px;
}

.footer-bottom-links a {
    color: var(--black-color);
    text-decoration: underline;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--black-color);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social a {
    color: var(--black-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--chery-color);
}

@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 30px;
    }
    .footer-bottom-links {
        justify-content: start;
        margin: 15px 0;
    }
    .footer-info{
        padding-top: 40px;
        border-top: 1px solid #00000029;
    }
    .footer-social {
        justify-content: start;
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .footer {
        background: url("../images/bg_footer_desktop_mobile-4EOkU57.png") no-repeat top;
        padding-top: 250px;
    }
    .footer .container{
        padding: 30px 20px;
    }
    .footer-bottom{
        text-align: center;
    }
    .footer-social, .footer-bottom-links {
        justify-content: center;
    }
}


/* Card Horizontal - Large */
        
.vehicle-card-horizontal {
    display: flex;
    overflow: hidden;
}

.vehicle-card-horizontal .card-content {
    flex: 0 0 50%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section_block_with_img_left .vehicle-card-horizontal .card-content {
    padding: 15px 15px 15px 35px;
}
.section_block_with_img_right .vehicle-card-horizontal .card-content {
    padding: 15px 35px 15px 15px;
}
figure {
    margin: 0;
}
.vehicle-card-horizontal .card-image {
    /*flex: 0 0 50%;
    position: relative;
    min-height: 450px;*/
}

.vehicle-card-horizontal .card-image img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;*/
}

/* Card Horizontal - Bottom Image */
.vehicle-card-bottom {
    display: flex;
    background-color: var(--chery-dark);
    color: white;
    overflow: hidden;
    margin-bottom: 2rem;
}

.vehicle-card-bottom .card-image {
    flex: 0 0 50%;
    position: relative;
    min-height: 400px;
}

.vehicle-card-bottom .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.vehicle-card-bottom .card-content {
    flex: 0 0 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card Vertical */
.vehicle-card-vertical {
    background-color: var(--chery-dark);
    color: white;
    overflow: hidden;
}

.vehicle-card-vertical .card-image {
    height: 200px;
    overflow: hidden;
}

.vehicle-card-vertical .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card-vertical .card-content {
    padding: 1.5rem;
}

/* Common Card Styles */

.card-category {
    font-family: 'PoppinsSemiBold';
    display: inline-block;
    padding: 7px 24px;
    border: 1px solid var(--chery-color);
    border-radius: 50px;
    color: var(--chery-color);
    font-size: 14px;
    margin-bottom: 24px;
    width: fit-content;
}

.card-title {
    font-family: 'PoppinsSemiBold';
    font-size: 40px;
    color: var(--chery-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.card-preview {
    font-family: 'PoppinsSemiBold';
    font-size: 28px;
    color: var(--chery-dark);
    margin-bottom: 20px;
}

.vehicle-card-vertical .card-title {
    font-size: 1.25rem;
}
.card-description {
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 30px;
}
.card-description p:last-child{
    margin-bottom: 0;
}
.card-description ul li, .block-page-content ul li, .section-description ul li{
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'mmcMedium';
    position: relative;
    padding-left: 25px;
}
.card-description ul li::before, .block-page-content ul li::before, .section-description ul li::before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background: url("../images/arrow_outward-hUxxszu.png") no-repeat;
    width: 11px;
    height: 11px;
    background-size: contain;
}

.card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-card-vertical .card-buttons {
    flex-direction: column;
    gap: 0.75rem;
}

.btn-reserve {
    background-color: transparent;
    border: 2px solid var(--chery-color);
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: var(--chery-color);
    color: white;
}

.btn-essai {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-essai:hover {
    background-color: white;
    color: var(--chery-dark);
}
.caracteristiques_block{
    display: flex;
    gap: 20px;
    width: 100%;
}
.item_caracteristiques_block{
    background-color: #F5F4F3;
    border: 1px solid #00000014;
    border-radius: 10px;
    padding: 15px;
    width: 50%;
}
.item_caracteristiques_block h5{
    font-family: 'PoppinsSemiBold';
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}
.item_caracteristiques_block h5 span{
    background-color: var(--white-color);
    border: 1px solid #00000014;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}
.item_caracteristiques_block p{
    margin-top: 0;
}
.caracteristiques_block_under_img{
    background-color: #F5F4F3;
    border: 1px solid #00000014;
    border-radius: 10px;
    padding: 35px 25px;
    position: relative;
    margin-top: -35px;
}
.caracteristiques_block_under_img h5{
    font-family: 'PoppinsRegular';
    font-size: 16px;
    color: var(---chery-dark);
    margin: 10px 0;
    display: inline-flex;
    align-items: center;
    width: 100%;
    line-height: 1.3;
}
.caracteristiques_block_under_img h5 span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .vehicle-card-horizontal .card-content {
        padding: 25px 0 0 !important;
    }
    .vehicle-card-horizontal,
    .vehicle-card-bottom {
        flex-direction: column;
    }

    .vehicle-card-horizontal .card-content,
    .vehicle-card-horizontal .card-image,
    .vehicle-card-bottom .card-content,
    .vehicle-card-bottom .card-image {
        flex: none;
        width: 100%;
    }

    .vehicle-card-horizontal .card-image,
    .vehicle-card-bottom .card-image {
        min-height: 250px;
    }

    .vehicle-card-horizontal {
        flex-direction: column-reverse;
    }
    .card-title{
        font-size: 32px;
    }
    .card-preview{
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .card-title{
        font-size: 25px;
        margin-bottom: 10px;
    }
    .card-preview{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .card-description {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .caracteristiques_block{
        flex-direction: column;
    }
    .item_caracteristiques_block{
        width: 100%;
    }
}

/* Section Contact */

.contact_form_section {
    background-color: var(--white-color);
    padding: 30px;
    position: relative;
    margin-top: -80px;
    border-radius: 30px;
    border: 1px solid #00000014;
    z-index: 99;
}
.form_contact{
    position: relative;
}
.contact_form_section .form-control,
.contact_form_section .form-check-input {
  border: 1px solid #00000029;
  background-color: #f5f4f3;
}
.contact_form_section .form-control{
    height: 45px;
}
.contact_form_section textarea.form-control{
    height: 200px;
    resize: none;
}
.contact_form_section .check {
  display: flex;
  gap: 40px;
}
.contact_form_section .submit_btn {
  font-family: 'PoppinsSemiBold';
  font-size: 16px;
  background-color: var(--chery-color);
  color: #ffffff;
  padding: 11px 21px;
  width: 100%;
}
.contact_form_section .submit_btn:hover{
    color: var(--chery-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--chery-color);
}
.contact_form_section label {
    font-family: 'PoppinsSemiBold';
    padding-bottom: 12px;
    font-size: 14px;
    color: var(--chery-gray);
}
.form-check-label{
    font-family: 'PoppinsRegular' !important;
}
.contact_form_section h2{
  font-size: 14px;
}
.form-check-input:checked{
  background-color: #a4896c;
}
.form-check{
    position: relative;
}
.service_chekbox .form-check{
    display: inline-block;
    width: 45%;
}
samp.error{
    position: absolute;
    bottom: -20px;
    color: #df0c0c;
    font-size: 12px;
}
.form-check samp.error{
    bottom: -2px;
}
@media (max-width: 991px) {
    .contact_form_section{
        margin-top: 0;
        margin: 60px 0;
    }
    .contact_form_section .form-check-label{
        font-size: 12px !important;
    }
}
/*@media (max-width: 767px){
  .contact_form_section .form-control,
  .contact_form_section .form-check-input{
    background-color:#ffffff ;
  }
  .contact_form_section{
    background-color: #f5f4f3;
  }
}*/
@media (max-width: 575px){
    .contact_form_section{
        padding: 30px 15px;
    }
    .contact_form_section .check{
        gap: 24px;
    }
    .icon-box {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    .service_chekbox .form-check{
        width: 49%;
    }
}


/*.contact-form-section {
    padding: 30px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: #fff;
    height: auto;
}

.form-control::placeholder,
.form-select {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--chery-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 14px;
    padding-right: 40px;
}

.phone-input-group {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.phone-input-group:focus-within {
    border-color: var(--chery-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    background-color: #fff;
    border-right: 1px solid var(--border-color);
    gap: 6px;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
    max-width: 160px;
}

.phone-prefix i {
    color: var(--text-muted);
}

.phone-prefix select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
    padding: 0;
    cursor: pointer;
    outline: none;
}

.phone-input-group input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
}

.phone-input-group input::placeholder {
    color: var(--text-muted);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    position: relative;
}

.form-check-custom input[type="checkbox"] {
    opacity: 0;
    width: 0;
}

.form-check-custom .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: rotate(0deg) !important;
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--chery-color);
    border-color: var(--chery-color);
}

.form-check-custom .checkmark i {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark i {
    opacity: 1;
}

.form-check-custom label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
}
.btn-submit {
    background-color: var(--chery-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 18px;
    transform: rotate(-45deg);
}

.form-row {
    margin-bottom: 20px;
    position: relative;
}
samp.error{
    position: absolute;
    bottom: -20px;
    color: var(--chery-color);
    font-size: 12px;
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 20px;
    }
}*/

/* Tabs Navigation Caractéristiques */

.nav_tabs_caracteristiques{
    max-width: 800px;
    border: 1px solid #00000014;
    border-radius: 10px;
    margin-top: 50px;
}
.nav_tabs_caracteristiques .nav-tabs{
    background-color: #F5F4F3;
    border-bottom: 1px solid #00000014;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.nav_tabs_caracteristiques .nav-link{
    font-size: 16px;
    color: var(--chery-gray);
}
.nav_tabs_caracteristiques .tab-content{
    padding: 30px 20px;
}
.nav_tabs_caracteristiques .tab-content p:last-child{
    margin-bottom: 0;
}


/* Hero Section */

.hero-section {
    padding: 3rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Desktop Comparison Table */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    width: 200px;
    color: var(--text-muted);
    font-weight: 400;
}

.comparison-table thead th {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.version-header {
    padding: 1rem;
}

.version-header img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.version-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.version-header .price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section Headers */
.section-header {
    background-color: #eeeeee;
}

.section-header td {
    font-family: 'mmcMedium';
    color: var(--black-color);
    font-size: 1.25rem;
    padding: 1rem 1.5rem !important;
    text-align: left !important;
}
.valeur{
    color: var(--black-color);
}

/* Check/Cross Icons */
.check-icon {
    color: var(--chery-color);
    font-size: 1.25rem;
}

.cross-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Mobile Cards */
.mobile-version-card {
    border: none;
    margin-bottom: 2rem;
}

.mobile-version-card .card-header {
    background: white;
    border: none;
    text-align: center;
    padding: 2rem 1rem;
}

.mobile-version-card .card-header img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.mobile-version-card .card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-version-card .card-header .price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-section-header {
    background-color: var(--light-gray);
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-left: 3px solid var(--chery-color);
}

.mobile-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-spec-row .spec-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mobile-spec-row .spec-value {
    font-weight: 500;
    text-align: right;
}

/* Responsive */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

@media (max-width: 991.98px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .tabs-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Gallery Modèle */

.model_selected{
    padding: 120px 0 60px;
    background-color: var(--white-color);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.gallery-section{
    background-color: var(--white-color);
    padding-bottom: 60px;
}
.gallery-grid {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);*/
    gap: 8px;
    margin: 0 auto;
    aspect-ratio: 21/10;
    position: relative;
}
.gallery-grid .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 3;
}
.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 4;
}
.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2 / 2;
}
.gallery-grid .gallery-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2 / 2;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}
.lg-outer{
    z-index: 99999;
}
.lg-backdrop{
    z-index: 9999;
}

/* Last item with button overlay */

.gallery-item.has-button {
    position: relative;
}
.view-all-btn {
    font-family: 'PoppinsSemiBold';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--chery-dark);
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 8px;
}

.view-all-btn:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 4px;
    }

    .view-all-btn {
        padding: 10px;
        font-size: 0;
        bottom: 10px;
        right: 10px;
        gap: 0;
    }
}
@media (max-width: 575px) {
    .gallery-item{
        display: none;
    }
    .gallery-grid .gallery-item:nth-child(1){
        display: block;
    }
    .gallery-grid {
        aspect-ratio: 14 / 10;
    }
}

/* lightGallery customization */

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lg-toolbar .lg-icon,
.lg-actions .lg-next,
.lg-actions .lg-prev {
    color: #fff;
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: var(--chery-color);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--chery-color);
}

.lg-progress-bar .lg-progress {
    background-color: var(--chery-color);
}

/* Switcher pages */

@media (min-width: 992px) {
    .switcher {
        height: auto;
        min-height: auto;
    }
    .switcher_home .slide-content {
        justify-content: center;
        padding-bottom: 0;
        padding-top: 70px;
    }
    .switcher .slide-item {
        height: auto;
        min-height: 750px;
    }
    .switcher .slide-title {
        font-family: 'PoppinsSemiBold';
        font-size: 40px;
        font-weight: 600;
        max-width: 630px;
    }
}


/*.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%),
                url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1920&q=80') center center / cover no-repeat;
    color: white;
}

.hero-content {
    max-width: 650px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    width: 60px;
    height: 4px;
    background-color: var(--chery-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background-color: white;
    color: var(--chery-dark);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--chery-color);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}*/

/*  */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--chery-color);
    color: var(--chery-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.red-line {
    width: 40px;
    height: 3px;
    background: var(--chery-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Cards */

.feature-card {
    background: #f8f8f8;
    padding: 20px;
    margin-bottom: 12px;
    border-left: 0;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black-color);
}

.feature-card h4::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--chery-color);
    clip-path: polygon(0 0, 100% 0%, 0 100%, 0 100%);
}

.feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-reserve {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #333;
    color: #fff;
}

.btn-contact {
    background: transparent;
    color: #000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--light-bg);
}

.hero-image {
    background: url('https://images.unsplash.com/photo-1559416523-140ddc3d238c?w=800') center/cover;
    min-height: 400px;
}

/* Grid Sections */

.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-image {
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.grid-image.interior-1 {
    background-image: url('https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800');
}

.grid-image.exterior-1 {
    background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=800');
}

.grid-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-content.dark {
    background: var(--dark-bg);
    color: #fff;
}

.grid-content.dark .section-description {
    color: rgba(255,255,255,0.7);
}

.grid-content.light {
    background: #000;
    color: #fff;
}

.grid-content.light .section-description {
    color: rgba(255,255,255,0.7);
}
.section-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
@media (max-width: 991px) {
    .hero-section,
    .grid-section {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .grid-content {
        padding: 40px 24px;
    }

    .hero-image,
    .grid-image {
        min-height: 300px;
    }

    .tabs-nav .nav-link {
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 24px;
    }

    .grid-section.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* Switcher Pages without image */

/*.no_switcher{
    background-color: var(--white-color);
    padding-top: 120px;
}*/
.switcher_without_bg{
    background-color: var(--white-color);
}
.switcher_without_bg.switcher_home .slide-overlay {
    display: none;
}
.switcher_without_bg.switcher .slide-title, .switcher_without_bg.switcher_home .slide-description{
    color: var(--chery-dark);
}
.switcher_without_image{
    background-color: var(--white-color);
    padding: 140px 0 100px;
}
@media (max-width: 991px) {
    .switcher_without_bg.switcher_home .slide-image-wrapper{
        height: 100px;
    }
    .switcher_without_bg.switcher_home .slide-content{
        background-color: var(--white-color);
    }
    .switcher_without_image {
        padding: 120px 0 60px;
    }
}
@media (max-width: 575px) {
    .switcher_without_image{
        padding: 100px 0 40px;
    }
}

/* Slider Modèle */

.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slide-item {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    max-width: 550px;
    color: white;
    z-index: 10;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 4px;
    z-index: -1;
}

.slide-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.owl-nav button.owl-prev{
    margin-right: 10px;
}
.owl-nav button.owl-next{
    margin-left: 10px;
}
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: var(--chery-color) !important;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
    color: white;
}

.owl-nav button span {
    font-family: math;
    font-size: 30px;
    color: #1a1a1a;
    line-height: 1;
}
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 8px;
}

.owl-dots .owl-dot {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.4) !important;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
    background: white !important;
}

.owl-dots .owl-dot span {
    display: none;
}
@media (max-width: 767px) {
    .slide-item {
        display: flex;
        flex-direction: column;
    }

    .slide-image {
        height: 55vh;
        object-position: center;
    }
    .slide-content {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        background: #f5f5f5;
        color: #1a1a1a;
        padding: 2rem 1.5rem;
        padding-bottom: 5rem;
    }

    .slide-content::before {
        display: none;
    }

    .slide-text {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.5;
    }
    .media_simple.owl-carousel .owl-stage{
        padding-left: 0 !important;
    }
    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
        background: white !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .owl-nav button.owl-prev{
        margin-right: 6px;
    }
    .owl-nav button.owl-next{
        margin-left: 6px;
    }

    .owl-nav button span {
        font-size: 1.25rem;
        color: #1a1a1a;
    }
    .owl-dots {
        position: absolute;
        bottom: 20px;
        left: 1.5rem;
        gap: 6px;
    }

    .owl-dots .owl-dot {
        width: 30px;
        height: 3px;
        background: rgba(0,0,0,0.2) !important;
    }

    .owl-dots .owl-dot.active {
        background: var(--chery-color) !important;
    }
}
@media (max-width: 480px) {
    .slide-image {
        height: 50vh;
    }

    .slide-text {
        font-size: 1rem;
    }
}

/* blog section */

.blog-section{
    background-color: var(--white-color);
    padding: 60px 0;
}
.titre_block_pages{
    margin-bottom: 60px;
}
.titre_block_pages h2{
    font-family: 'mmcBold';
}

.blog-badge {
    font-family: 'mmcMedium';
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--chery-color);
    border-radius: 50px;
    color: var(--chery-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--chery-dark);
    margin-bottom: 16px;
    font-family: 'mmcBold';
}

.blog-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--chery-color);
    margin: 20px auto 0;
}

.blog-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.blog-card {
    background-color: #F5F4F3;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #00000014;
    padding: 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-card-body {
    padding: 0;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 15px 0;
}

.blog-card-category {
    background-color: var(--chery-color);
    font-family: 'PoppinsSemiBold';
    color: var(--white-color);
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    border-radius: 30px;
}
.blog-card-category::after{
    content: '';
    position: absolute;
    background-color: var(--white-color);
}

.blog-card-time {
    font-size: 13px;
}
.blog-card-title {
    font-family: 'PoppinsSemiBold';
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.content_modeles .blog-card-description {
    color: var(--black-color);
}
.blog-card-link {
    font-family: 'PoppinsSemiBold';
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    border: 1px solid #00000014;
    padding: 6px 20px;
    border-radius: 30px;
    background-color: var(--white-color);
    color: var(--chery-dark);
}

.blog-card-link:hover {
    color: var(--chery-color);
}

.blog-card-link i {
    font-size: 12px;
}

.btn-voir-tout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--chery-color);
    font-family: 'PoppinsSemiBold';
    color: var(--white-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

/*.btn-voir-tout:hover {
    background-color: var(--chery-color);
    border-color: var(--chery-color);
    color: #fff;
}*/

.btn-voir-tout i {
    font-size: 12px;
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 32px;
    }

    .blog-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 28px;
    }
    .blog-card {
        margin-bottom: 24px;
    }
    .blog-card-title{
        font-size: 18px;
        white-space: normal;
    }
}

/* section modèles */

.section_modeles{
    padding: 60px 0;
    background-color: var(--white-color);
}
.text_item_models h4{
    margin: 20px 0 0;
}
.text_item_models h4, .text_item_models ul{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.item_models{
    padding: 0 7px;
}
.item_models img{
    border-radius: 20px;
}
.text_item_models .nom_model{
    font-family: 'PoppinsSemiBold';
    font-size: 18px;
    text-transform: uppercase;
}
.text_item_models .prix_model{
    font-family: 'PoppinsMedium';
    font-size: 14px;
    color: var(--white-color);
    text-transform: uppercase;
    background-color: #B33519D9;
    border-radius: 10px;
    border-top-left-radius: 80px;
    padding: 7px 15px 7px 30px;
}
.text_item_models .prix_model samp{
    font-family: 'PoppinsLight';
}
.text_item_models ul{
    margin-bottom: 25px;
}
.text_item_models ul li{
    font-family: 'PoppinsRegular';
    font-size: 13px;
}
.btn_mitsubishi.btn_item_models{
    justify-content: center;
    width: 100%;
    border: 1px solid #00000080;
}
@media (max-width: 575px){
    .text_item_models .nom_model{
        font-size: 15px;
    }
    .text_item_models .prix_model{
        font-size: 12px;
        padding: 7px 10px 7px 20px;
    }
    .text_item_models ul li{
        font-size: 11px;
    }
}


/* Pagination */

.pagination {
  width: 100%;
  justify-content: center;
  align-items: end;
  margin-top: 30px;
}
.pagination li {
  margin: 0 14px;
  line-height: 1;
  position: relative;
  top: 0;
}
.pagination li a {
  font-family: 'PoppinsRegular';
  font-size: 18px;
  color: var(--black-color);
}
.pagination li a svg{
    width: 20px;
}
.pagination li.arrows_prev a svg{
    transform: rotate(180deg);
}

/*.pagination li.active {
  border-bottom: 2px solid #091235;
}*/
.pagination li.active a {
  font-family: 'PoppinsSemiBold';
  color: var(--chery-color);
  pointer-events: none;
}
.pagination li a:hover {
  font-family: 'PoppinsSemiBold';
}
.arrows_nav{
  top: -2px;
}
@media (max-width: 575px){
  .pagination {
    margin-top: 0;
  }
}


/* Actualités & Conseils */

.text_item_actualites_home p{
    margin: 20px 0;
    line-height: 25px;
}
.text_item_actualites_home label{
    display: block;
    margin-bottom: 15px;
    font-family: 'PoppinsSemiBold';
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Actualité selected */

.content_actu_selected{
    padding: 60px 0;
    background-color: var(--white-color);
    border-radius: 30px;
    margin: 50px 0;
}
.section_breadcrumbs {
    margin-bottom: 50px;
}
.section_breadcrumbs ul li {
    display: inline-block;
}
.section_breadcrumbs ul li a {
    font-family: 'PoppinsRegular';
    font-size: 18px;
    color: var(--light-grey);
}
.section_breadcrumbs ul li span {
    color: var(--light-grey);
    padding: 0 5px;
}
.section_breadcrumbs ul li a:hover, .section_breadcrumbs ul li:last-child a {
    font-family: 'PoppinsSemiBold';
}
.section_breadcrumbs ul li:last-child a {
    pointer-events: none;
}
.actu_selected label{
    font-family: 'PoppinsSemiBold';
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.actu_selected label img{
    margin-right: 15px;
    max-width: 30px;
}
.actu_selected h2{
    font-family: 'PoppinsSemiBold';
    font-size: 25px;
    color: var(--black-color);
    margin-bottom: 30px;
    padding: 10px 0 10px 30px;
    position: relative;
}
.actu_selected h2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    width: 15px;
    height: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.img_actu_selected{
    margin: 30px 0;
}
.actu_selected p {
    margin-bottom: 25px;
}
.desc_text_actu_selected{
    margin-top: 30px;
}
@media (max-width: 991px){
    .section_breadcrumbs ul li{
        line-height: 1;
    }
    .section_breadcrumbs ul li a{
        font-size: 15px;
    }
    .actu_selected h2{
        font-size: 21px;
    }
}
@media (max-width: 575px){
    .section_breadcrumbs ul li:nth-child(3) span, .section_breadcrumbs ul li:last-child{
        display: none;
    }
    .actu_selected h2{
        font-size: 18px;
        padding: 6px 0 6px 20px;
    }
    .actu_selected h2:before {
        width: 10px;
    }
    .actu_selected p {
        font-size: 16px;
        line-height: 30px;
    }
}

/* List Models */

.model_card.blog-card{
    background-color: var(--white-color);
    border: 1px solid #DDDDDD
}
.model_card .blog-card-category{
    background-color: var(--black-color);
    font-family: 'mmcBold';
}
.model_card .blog-card-category span{
    display: block;
    font-family: 'mmcRegular';
}
.model_card .blog-card-title{
    color: var(--black-color);
}
.model_card .blog-card-link{
    color: var(--black-color);
}
.model_card .blog-card-link i{
    color: var(--chery-color);
}
.model_card .blog-card-image {
    height: 350px;
    background: #F8F8F8;
}
.model_card ul{
    margin-bottom: 20px;
}
.model_card ul li{
    display: inline-block;
    padding: 6px 13px;
    border: 1px solid var(--chery-gray);
    color: var(--black-color);
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 20px;
    line-height: 1;
}


/*  */

.block_cta_card{
    margin: 60px 0;
}
.cta-card {
    padding: 0;
}
.cta-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.cta-card__icon i {
    font-size: 42px;
    color: #000000;
    stroke-width: 1;
}
.cta-card__line {
    width: 60px;
    height: 3px;
    background-color: var(--chery-color);
    margin-bottom: 20px;
}
.cta-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 12px;
}
.cta-card__description {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
}
.cta-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.cta-card__link:hover {
    color: var(--chery-color);
    gap: 10px;
}
.cta-card__link i {
    font-size: 12px;
    color: var(--chery-color);
}

/* Desc Modele Selected */

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--chery-dark);
    color: white;
    padding: 12px 30px 12px 80px;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
    min-width: 200px;
}

.price-tag-label {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.price-tag-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-title {
    font-family: 'PoppinsSemiBold';
    font-size: 2.5rem;
    color: var(--chery-dark);
    margin-bottom: 20px;
}

.section-description {
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 1000px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--chery-dark);
}

.feature-icon {
    color: var(--chery-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.specs-list li{
    font-family: 'PoppinsSemiBold';
    font-size: 16px;
    color: var(--chery-dark);
    background-color: #F5F4F3;
    border: 1px solid #00000014;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}
.specs-list li span{
    margin-right: 5px;
    width: 25px;
    display: inline-block;
}

@media (max-width: 768px) {
    .text-section {
        padding: 30px 25px;
        padding-top: 100px;
    }
    .price-tag {
        margin-bottom: 20px;
        display: inline-block;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}
@media (max-width: 575px) {
    .gallery-section {
        padding-bottom: 40px;
    }
    .section-title {
        font-size: 22px;
    }
    .desc-price-section p{
        font-size: 14px;
    }
    .specs-list li {
        font-size: 14px;
        padding: 8px 15px;
    }
    .nav_tabs_caracteristiques .nav-link {
        font-size: 13px;
    }
}


/* Temoignages */

.temoignages {
    padding: 60px 0;
    background-color: var(--white-color);
    border-radius: 30px;
}
.temoignages .temoignages-title {
  font-size: 40px;
}
.temoignages .temoignages-content {
  font-size: 18px;
  padding: 20px 0;
}
.temoignage {
  border: 1px solid #00000014;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
.temoignage-content {
  font-family: 'PoppinsSemiBold';
  padding: 0 20px 30px 20px;
  flex-grow: 1;
}
.profil {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #F5F4F3;
  border-top: 1px solid #00000014;
  border-radius: 12px;
}
.profil-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}
.profil-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profil-name {
  font-family: 'PoppinsSemiBold';
  font-size: 15px;
  margin-bottom: 5px;
}
.profil-title {
  font-size: 14px;
  margin: 0;
  color: #666;
}
.stars {
  display: flex;
  gap: 4px;
  padding: 20px;
}

.stars svg {
  width: 20px;
  height: 20px;
}
.star-filled{
    fill: #CCAA89;
}
.star-empty{
    fill: var(--chery-gray);
}
@media (max-width: 991px) {
    .temoignages .temoignage .temoignage-content {
        font-size: 14px;
    }
    .profil-title {
        font-size: 13px;
    }
    .temoignages .profil {
        padding: 20px 0px 10px 6px;
    }
    .temoignages .profil-name {
        font-size: 14px;
    }
    .temoignages .temoignages-title {
        font-size: 36px;
    }
    .temoignages .temoignages-content {
        font-size: 16px;
    }
}

/* Owl Carousel Customization */

.owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background-color: #000000;
}

.testimonial-section .owl-nav {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-quote {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .stars svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Réservez un essai */

.form_drive_test {
    background: white;
    max-width: 100%;
    width: 100%;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-indicator {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--black-color);
}

.progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--chery-color);
    transition: width 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.badge {
    width: 80px;
    height: 80px;
    border: 4px solid var(--chery-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_drive_test .checkmark {
    width: 40px;
    height: 24px;
    border-left: 5px solid var(--chery-color);
    border-bottom: 5px solid var(--chery-color);
    transform: rotate(-45deg);
    margin-top: -8px;
}

.form_drive_test h1 {
    font-family: 'PoppinsSemiBold';
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--chery-dark);
}

.form_drive_test p {
    text-align: center;
    color: var(--chery-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.divider {
    width: 1px;
    background-color: #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form_drive_test label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--black-color);
}

.form_drive_test input[type="text"],
.form_drive_test input[type="tel"],
.form_drive_test input[type="date"],
.form_drive_test select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: white;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--chery-color);
}

.form_drive_test select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.phone-input {
    display: flex;
    gap: 10px;
    position: relative;
}

.country-code {
    width: 100px !important;
    flex-shrink: 0;
}

.phone-number {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--chery-color);
}

.radio-option label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--chery-dark);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.form_drive_test button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-secondary {
    background-color: #ddd;
    color: var(--chery-dark);
}

.btn-secondary:hover {
    background-color: #ccc;
}

.btn-primary {
    background-color: var(--chery-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--chery-color);
}

.btn-full {
    width: 100%;
}

.arrow {
    font-size: 18px;
}

.footer_form {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.step {
    display: none;
}

.step.active {
    display: block;
}
.form-error{
    color: #e31122;
    font-size: 12px;
    display: block;
    position: absolute;
    bottom: -25px;
}
@media (max-width: 575px){
    .form_drive_test {
        padding: 20px;
    }
    .form_drive_test h1{
        font-size: 20px;
    }
}


/* Reseau */

.reseau-home-section {
    background: var(--white-color);
    border-radius: 30px;
    padding: 60px 0;
    margin: 60px 0;
}
.reseau-section-form{
    padding-bottom: 30px;
}
.main-title{
    font-family: 'PoppinsSemiBold';
    font-size: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--black-color);
}
.reseau-home-section #map {
    height: 500px;
}
.reseau-home-section .btn,
.reseau-home-section .form-select {
    border-radius: 6px;
    padding: 15px 10px;
    background-color: #F5F4F3;
    border: 1px solid #00000029;
    color: #909090;
}
.reseau-home-section .form-label{
    font-family: 'PoppinsSemiBold';
    color: var(--black-color);
}
.custom-popup {
    background-color: var(--chery-gray);
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}
.custom-popup .popup-title {
    color: var(--white-color);
    padding: 0 20px;
    margin: 20px 0;
}
.popup-adresse, .popup-services{
    padding: 0 20px;
}
.custom-popup .popup-list-marques span {
    background-color: var(--chery-color-hover) !important;
    border-radius: 0.25rem;
    color: var(--white-color);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}
.custom-popup .popup-list-marques a {
    color: var(--white);
    text-decoration: none;
}
.custom-popup .popup-adresse,
.custom-popup .popup-telephone,
.custom-popup .popup-ville {
    color: var(--white-color);
}
.custom-popup .popup-ville {
    background-color: var(--chery-color);
    color: #fff;
    padding: 8px 50px 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 80px;
}
.custom-popup .popup-ville img{
    margin-right: 15px;
}
.custom-popup .popup-services strong {
    display: block;
    color: var(--white-color);
}
.custom-popup .popup-services span {
    background-color: var(--chery-color-hover);
    border-radius: 0.2rem;
    color: #fff;
    display: inline-block;
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
    padding: 0.2rem 0.4rem;
}
.gm-style-iw-chr {
    height: 0 !important;
    position: relative;
}
.gm-style-iw-chr button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999999;
}
.gm-style .gm-style-iw-c, .gm-style .gm-style-iw-tc::after{
    background: #000 !important;
}
.gm-style .gm-style-iw-c{
    border-radius: 0 !important;
    padding: 0 !important;
}
.gm-ui-hover-effect>span {
    background-color: light-dark(#fff, #fff);
}
.gm-style .gm-style-iw-d{
    max-height: 100% !important;
    overflow: auto !important;
}
.content_contact .reseau-home-section{
    background: var(--white-color);
}
.content_contact .main-title{
    color: var(--black-color);
}
/*.content_contact .reseau-home-section .btn, .content_contact .reseau-home-section .form-select {
    background-color: #fff;
    color: #202123;
    border: 1px solid var(--border-color);
}
.content_contact .reseau-home-section .form-label {
    color: var(--black-color);
}*/
@media (max-width: 575px){
    .reseau-home-section{
        margin-bottom: 60px;
    }
}


/* Loader Overlay */

.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loader-overlay.active {
    display: flex;
}

.loader-content {
    text-align: center;
}

.loader-content p {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Disable submit button while loading */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Blocks styles */

.section{
    margin: 60px 0;
    border-radius: 20px;
}
.section .container{
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--white-color);
    border-radius: 10px;
}
.block-page-contenu h3{
    font-family: 'PoppinsSemiBold';
    font-size: 40px;
    color: var(--chery-dark);
    margin-bottom: 25px;
}
.block_white_text .card-title, .block_white_text p, .block_white_text .card-category, .block_white_text ul li, 
.block_white_text .blog-title{
    color: var(--white-color);
}
.block_white_text .card-category{
    padding: 0;
    border: 0;
}
.block_model{
    margin: 10px 0 !important;
}
.block_model.section_block_with_img_right .vehicle-card-horizontal .card-image,
.block_model.section_block_with_img_left .vehicle-card-horizontal .card-content{
    margin-left: 4px;
}
.block_model.section_block_with_img_left .vehicle-card-horizontal .card-image,
.block_model.section_block_with_img_right .vehicle-card-horizontal .card-content{
    margin-right: 4px;
}
.content_media_without_slide{
    margin-bottom: 50px;
}
.block_model.slider-section .container{
    padding: 0;
}
.content_media_without_slide .text-center{
    width: 65%;
    margin: auto;
}
.content_media_without_slide .mitsubishi_buttons{
    justify-content: center;
}
.faq .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed, .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: unset;
}
.faq .accordion-button{
    padding-left: 0;
    padding-right: 0;
}
.faq .accordion-item {
    border-left: 0;
    border-right: 0;
}
.faq .accordion-button{
    font-family: 'PoppinsBold';
    font-size: 22px;
}
.faq .accordion-button:focus {
    box-shadow: unset;
}
.faq .accordion{
    max-width: 1000px;
    margin: auto;
}
.faq .accordion-body ul{
    margin-bottom: 20px;
    padding-left: 20px;
}
.faq .accordion-body ul li{
    list-style-type: disc;
}

@media (max-width: 991px){
    .block-page-contenu h3{
        font-size: 35px;
        margin-bottom: 30px;
    }
    .block_model.section_block_with_img_right .vehicle-card-horizontal .card-image,
    .block_model.section_block_with_img_left .vehicle-card-horizontal .card-content{
        margin-left: 0;
    }
    .block_model.section_block_with_img_left .vehicle-card-horizontal .card-image,
    .block_model.section_block_with_img_right .vehicle-card-horizontal .card-content{
        margin-right: 0;
    }
    .content_media_without_slide .text-center{
        width: 85%;
    }
}
@media (max-width: 575px){
    .block-page-contenu h3{
        font-size: 25px;
        margin-bottom: 30px;
    }
    .faq .accordion-button{
        font-size: 17px;
    }
    .content_media_without_slide .text-center{
        width: 100%;
    }
}

/* Media without slide */

.swiper_without_slide{
    position: relative;
    overflow: hidden;
}
.swiper_wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.item_swiper_without_slide {
    flex-shrink: 0;
    width: 33%;
    height: 100%;
    position: relative;
    transition-property: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
    padding: 0 10px;
    height: 600px;
}
.item_swiper_without_slide:hover {
    width: 50%;
}
.swiper_wrapper:hover .item_swiper_without_slide:not(:hover) {
    width: 25%;
}
.item_swiper_without_slide div {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 10px;
    height: 100%;
}
.item_swiper_without_slide div img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
}
@media (max-width: 1199px){
    .item_swiper_without_slide {
        height: 450px;
    }
}
@media (max-width: 991px){
    .item_swiper_without_slide{
        height: 400px;
    }
}
@media (max-width: 767px){
    .swiper_wrapper{
        flex-direction: column;
    }
    .item_swiper_without_slide {
        width: 100%;
        height: 180px;
        padding: 10px 0;
        -webkit-transition: height .5s ease-in-out;
        transition: height .5s ease-in-out;
    }
    .item_swiper_without_slide:first-child {
        height: 300px;
    }
    .swiper_wrapper:hover .item_swiper_without_slide:not(:hover){
        width: 100%;
        height: 180px;
    }
    .item_swiper_without_slide:hover {
        width: 100%;
        height: 300px;
    }
}

/* Slider with icons */

.slider_media.owl-carousel .owl-stage-outer,
.slider_media_02.owl-carousel .owl-stage-outer{
    margin-right: -1px;
}
.media_with_icons.owl-carousel .owl-stage,
.media_with_text_img.owl-carousel .owl-stage{
    display: inline-flex;
}
.item_media_with_icons{
    position: relative;
    text-align: center;
    border: 1px solid #0000000A;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.item_media_with_icons picture{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px;
}
.text_item_media_with_icons{
    padding: 30px 20px;
    height: -webkit-fill-available;
}
.item_media_with_icons h5{
    font-family: 'PoppinsSemiBold';
    font-size: 22px;
    color: var(--chery-dark);
    margin: 30px 0;
}
.btn_media_with_icons{
    width: 100%;
    background-color: #F5F4F3;
    border: 1px solid #0000000A;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 20px;
}
@media (max-width: 767px){
    .slider_media.owl-carousel .owl-stage, .slider_media_02.owl-carousel .owl-stage{
        padding-left: 0 !important;
    }
}
@media (max-width: 575px){
    .item_media_with_icons h5{
        font-size: 18px;
        margin: 20px 0;
    }
    .text_item_media_with_icons {
        padding: 20px 14px;
    }
}

/* Slider with text and img */

.item_media_with_text_img{
    position: relative;
    border: 1px solid #0000000A;
    background-color: #F5F4F3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}
.item_media_with_text_img picture{
    overflow: hidden;
    position: relative;
    padding-bottom: 80%;
    display: block;
    border-radius: 10px;
}
.item_media_with_text_img picture img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
}
.text_item_media_with_text_img{
    height: -webkit-fill-available;
}
.item_media_with_text_img h5{
    font-family: 'PoppinsSemiBold';
    font-size: 21px;
    color: var(--chery-dark);
    margin: 20px 0 25px;
}
@media (max-width: 767px){
    .media_with_icons.owl-carousel .owl-stage{
        padding-left: 0 !important;
    }
}
@media (max-width: 575px){
    .item_media_with_text_img h5{
        font-size: 18px;
        margin: 20px 0;
    }
    .btn_media_with_text_img{
        width: fit-content;
    }
}

/* Tabs Histoire */

.histoire ul.nav.nav-tabs {
  border: none;
  padding-top: 35px;
}
.histoire .owl-carousel .owl-stage{
    display: flex;
    justify-content: space-evenly;
}
.histoire .owl-carousel .owl-stage-outer{
    padding-bottom: 2px;
}
.histoire .nav-tabs .nav-link {
    font-family: 'PoppinsRegular';
    font-size: 18px;
    color: #B0B0B0;
    padding: 15px 30px !important;
    text-align: -webkit-center;
    min-width: 200px;
    border-radius: 45px;
}
.histoire .nav-tabs .nav-item.show .nav-link, .histoire .nav-tabs .nav-link.active {
    font-family: 'PoppinsSemiBold';
    color: #a4896c;
    background-color: #f5f4f3;
    border: 1px solid #00000014;
}
.histoire div#myTabContent {
  border: 1px solid #00000014;
  padding: 62px 27px;
  border-radius: 9px;
}
.histoire .nav-tabs .nav-link span{
    margin-bottom: 5px;
}
.histoire .owl-carousel .owl-item img{
    width: auto;
    display: inline-block;
    filter: grayscale(1);
}
.histoire .nav-tabs .nav-item.show .nav-link img, .histoire .nav-tabs .nav-link.active img{
    filter: none;
}
.histoire .owl-nav {
    margin-top: 0;
}
.histoire .owl-carousel .owl-nav button.owl-next, 
.histoire .owl-carousel .owl-nav button.owl-prev, 
.histoire .owl-carousel button.owl-dot{
    position: absolute;
    top: 50%;
}
.histoire .owl-carousel .owl-nav button.owl-prev{
    left: -20px;
}
.histoire .owl-carousel .owl-nav button.owl-next{
    right: -20px;
}
.owl-nav button.owl-prev, .owl-nav button.owl-next{
    width: 30px;
    height: 30px;
}

.histoire .accordion .accordion-item span, .histoire .nav-tabs .nav-link span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.histoire .accordion .accordion-item span{
    margin-right: 10px;
    margin-top: -2px;
}
.histoire .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
}
.histoire .accordion-item>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.histoire .accordion-item>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.histoire button.accordion-button.collapsed, .accordion-button:not(.collapsed) {
  background-color: #00000014;
  font-weight: bold;
}
.histoire .accordion-button:focus {
  box-shadow: none;
}
.histoire .accordion-button, .histoire .accordion-button:focus {
    font-family: 'PoppinsSemiBold';
    color: var(--chery-dark);
}
@media (max-width: 991px) {
    .histoire .nav-tabs .nav-link{
        font-size: 15px;
        min-width: 160px;
    }
}
@media (max-width: 575px) {
  .histoire .accordion-button {
    background-color: #00000014 !important;
  }
  .histoire .accordion-item:first-of-type > .accordion-header .accordion-button {
    background-color: #00000014;
  }
}

/* Block infos */

.info-cards {
  padding-top: 80px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 14px;
  padding: 20px;
}
.icon-box {
  min-width: 55px;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  border: 1px solid #00000014;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.info-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}
@media (max-width: 1199px){
    .info-cards {
    padding-top: 50px;
    }
    .info-card{
        margin: 10px 0;
    }
}

/* Block Models */

.reserver_model{
    position: relative;
    border-radius: 30px;
    background-color: var(--white-color);
    padding: 60px 0;
    margin: 60px 0;
}
.reserver-card {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/*.reserver-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}*/
.reserver-content {
  padding: 35px;
  background-color: #f6f5f3;
  border-radius: 10px;
  position: relative;
  bottom: 30px;
}
.reserver-content h3 {
  font-family: 'PoppinsSemiBold';
  font-size: 25px;
  color: var(--chery-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}
.reserver-content p {
  line-height: 1.6;
}
.reserver-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.reserver-actions .btn{
  font-family: 'PoppinsSemiBold';
  font-size: 14px;
  color: var(--white-color);
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  border: 0;
}
.reserver-actions .btn svg {
    width: 17px;
    margin-left: 6px;
    margin-top: -2px;
}
.reserver-actions .btn-model {
  background-color: var(--chery-color);
}
.reserver-actions .btn-essai {
    color: var(--chery-dark);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .reserver-content h3{
        font-size: 21px;
    }
    .reserver-actions .btn{
        font-size: 13px;
    }
    .reserver-content {
        padding: 35px 15px;
    }
}
@media (max-width: 1199px) {
    .reserver-actions {
        gap: 0px;
    }
}
@media (max-width: 991px) {
    .reserver-img {
        display: none;
    }
    .reserver .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .reserver-content {
        margin-top: 25px;
        bottom: 0;
    }
}
@media (max-width: 575px) {
    .reserver-content {
        padding: 35px 20px;
    }
    .reserver-content h3{
        font-size: 20px;
    }
    .reserver-content p{
        font-size: 14px;
    }
    .reserver-actions {
        gap: 10px;
        flex-direction: column;
    }
}

/* Block text with Background */

.section_block_text_with_bg .container{
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}
.section_block_text_with_bg .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.1) 60%, transparent 80%);
}
.bg_block_image{
    position: relative;
}
.section_block_text_with_bg .content_media_without_slide{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.section_block_text_with_bg .content_media_without_slide .mitsubishi_buttons{
    justify-content: start;
}
.section_block_text_with_bg .card-title, .section_block_text_with_bg p, .section_block_text_with_bg .card-category{
    color: var(--white-color);
}
.section_block_text_with_bg .card-category{
    border: 1px solid var(--white-color);
}
.bg_block_image img{
    border-radius: 20px;
}
@media (max-width: 1399px){
    .section_block_text_with_bg .content_media_without_slide{
        padding-left: 60px;
    }
    .section_block_text_with_bg .card-title{
        font-size: 34px;
    }
}
@media (max-width: 1199px){
    .section_block_text_with_bg .content_media_without_slide{
        padding-left: 40px;
    }
    .section_block_text_with_bg .card-title{
        font-size: 32px;
    }
}
@media (max-width: 991px){
    .section_block_text_with_bg .content_media_without_slide{
        padding-left: 20px;
        position: relative;
        width: 100%;
        margin-top: 30px;
    }
    .section_block_text_with_bg .overlay{
        display: none;
    }
    .section_block_text_with_bg .card-title, .section_block_text_with_bg p{
        color: var(--chery-dark);
    }
    .section_block_text_with_bg .card-category{
        border: 1px solid var(--chery-color);
        color: var(--chery-color);
    }
}
@media (max-width: 575px){
    .section_block_text_with_bg .content_media_without_slide{
        padding-left: 0;
    }
    .section_block_text_with_bg .card-title {
        font-size: 25px;
    }
}

/* Newsletter */

.input_newsletter{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    gap: 10px;
}
.input_newsletter input{
    color: var(--chery-gray);
    border: 1px solid #00000029;
    background-color: #f5f4f3;
    height: 50px;
}
.input_newsletter button{
    background-color: var(--chery-color);
    border: 0;
    outline: none;
    font-family: 'PoppinsSemiBold';
    font-size: 14px;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 6px;
    padding: 14.5px 30px;

}
.input_newsletter button svg {
    width: 20px;
    margin-left: 12px;
}
@media (max-width: 575px){
    .input_newsletter{
        flex-direction: column;
    }
    .input_newsletter button{
        width: 100%;
    }
}

/* Form search */

.search-home-section{
    margin: 60px 0;
}
.search-container{
    border: 1px solid #00000014;
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
}
.search-home-section .main-title{
    font-size: 25px;
    max-width: 100%;
    margin: 0;
    margin-bottom: 40px;
    line-height: 1.2;
}
.search-home-section .row{
    align-items: end;
}
.search-home-section .btn-primary{
    font-family: 'PoppinsSemiBold';
    width: 100%;
    height: 40px;
    font-size: 14px;
    border: 0;
}
.search-home-section .form-select{
    height: 40px;
    background-color: #F5F4F3;
    font-family: 'PoppinsRegular';
    font-size: 14px;
}
.search-home-section .row_label label{
    font-family: 'PoppinsSemiBold';
    font-size: 14px;
    color: #202020;
    margin-bottom: 10px;
}
.form_recherche_footer_right{
    display: flex;
    justify-content: end;
    gap: 15px;
}
.form_recherche_footer_right a{
    font-family: 'PoppinsSemiBold';
    font-size: 12px;
    color: #202020;
}
.search-home-section .form-check-label{
    font-size: 14px;
}
@media (max-width: 991px){
    .search-home-section .row_label, .search-home-section .form-check{
        margin-bottom: 20px;
    }
}
@media (max-width: 575px){
    .search-home-section .main-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .form_recherche_footer_right {
        justify-content: center;
    }
}



























