*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 25px;
}

/* NAVBAR */

.navbar{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #eee;
}

.navbar-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

/* LOGO */

.logo img{
    width:170px;
    display:block;
}

/* DESKTOP MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu li a{
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#7d5aa9;
}

/* BUTTON */

.quote-btn{
    background:#000;
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
    background:#7d5aa9;
}

/* TOGGLE */

.menu-toggle{
    width:45px;
    height:45px;
    background:#7d5aa9;
    border-radius:10px;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.menu-toggle i{
    color:#fff;
    font-size:20px;
}

/* =========================
        MOBILE SIDEBAR
========================= */

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:99999;
    padding:25px;
    transition:0.4s ease;
    box-shadow:0 0 40px rgba(0,0,0,0.15);
    overflow-y:auto;
}

.mobile-sidebar.active{
    left:0;
}

/* OVERLAY */

.sidebar-overlay{
    position:fixed;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.5);
    top:0;
    left:0;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* SIDEBAR TOP */

.sidebar-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}

.sidebar-logo img{
    width:150px;
}

/* CLOSE */

.close-sidebar{
    width:42px;
    height:42px;
    background:#7d5aa9;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.close-sidebar i{
    color:#fff;
    font-size:20px;
}

/* SIDEBAR MENU */

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sidebar-menu li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-radius:12px;
    background:#f7f7f7;
    color:#111;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-menu li a:hover{
    background:#7d5aa9;
    color:#fff;
    transform:translateX(5px);
}

/* SIDEBAR BUTTON */

.sidebar-btn{
    width:100%;
    margin-top:35px;
    background:#000;
    color:#fff;
    padding:16px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-btn:hover{
    background:#7d5aa9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .nav-menu{
        display:none;
    }

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

}

@media(max-width:768px){

    .navbar-flex{
        min-height:75px;
    }

    .logo img{
        width:130px;
    }

    .mobile-sidebar{
        width:280px;
    }

}
/* ===================================
            HERO SECTION
=================================== */






/* form section  */

/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}




/* about us  */
/* ===== BANNER ===== */

.vintage-banner{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
    background:#000;
}

/* IMAGE */

.banner-car{
    width:100%;
    height:100%;
    object-fit:cover;      /* full banner fill */
    object-position:center;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .vintage-banner{
        height:25vh;
    }

    .banner-car{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        height: 150px;
    }

}
/*  */




/* new section  */




/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}

/*  */

/* =========================
   PRODUCTS SECTION
========================= */

.cm-product-section{
    width:100%;
    padding:60px 20px;
    position:relative;
    background:#f7f5ff;
    overflow:hidden;
}

/* CONTAINER */

.cm-product-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
   HEADING
========================= */

.cm-product-heading{
    text-align:center;
    margin-bottom:35px;
}

.cm-product-heading h2{
    font-size:40px;
    line-height:1.2;
    color:#000;
    font-weight:600;
    margin-bottom:12px;
    font-family:'Poppins',sans-serif;
}

.cm-product-heading p{
    color:#444;
    font-size:18px;
    font-weight:400;
    line-height:1.7;
    font-family:'Poppins',sans-serif;
}

/* =========================
   CATEGORY BUTTONS
========================= */

.cm-category-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.cm-category-btn{
    padding:14px 34px;
    border:none;
    border-radius:6px;
    background:#fff;
    color:#000;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    font-family:'Poppins',sans-serif;
    box-shadow:0 8px 25px rgba(125,90,169,0.12);
    border:2px solid #ece5ff;
    white-space:nowrap;
}

.cm-category-btn:hover{
    background:#000;
    color:#fff;
    border-color:#000;
}

.cm-category-btn.active{
    background:#000;
    color:#fff;
    border-color:#000;
}

/* =========================
   PRODUCT GRID
========================= */

.cm-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* =========================
   PRODUCT CARD
========================= */

.cm-product-card{
    background:#fff;
    overflow:hidden;
    padding:22px;
    transition:0.4s ease;
    border:2px solid #eee;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
    width:100%;
}

.cm-product-card:hover{
    transform:translateY(-10px);
    border-color:#000;
    box-shadow:0 18px 40px rgba(125,90,169,0.18);
}

/* IMAGE */

.cm-product-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    display:block;
    transition:0.4s;
}

.cm-product-card:hover img{
    transform:scale(1.04);
}

/* HIDE */

.cm-hide{
    display:none;
}

/* ======================================
        LARGE TABLET VIEW
====================================== */

@media(max-width:991px){

    .cm-product-section{
        padding:50px 18px;
    }

    .cm-product-heading h2{
        font-size:34px;
    }

    .cm-product-heading p{
        font-size:16px;
    }

    .cm-category-wrapper{
        gap:14px;
        margin-bottom:35px;
    }

    .cm-category-btn{
        padding:12px 24px;
        font-size:15px;
    }

    .cm-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }

    .cm-product-card{
        padding:18px;
    }

    .cm-product-card img{
        height:260px;
    }

}

/* ======================================
            MOBILE VIEW
====================================== */

@media(max-width:767px){

    .cm-product-section{
        padding:40px 15px;
    }

    .cm-product-heading{
        margin-bottom:28px;
    }

    .cm-product-heading h2{
        font-size:26px;
        line-height:1.4;
    }

    .cm-product-heading p{
        font-size:14px;
        line-height:1.7;
    }

    .cm-category-wrapper{
        gap:10px;
        margin-bottom:28px;
    }

    .cm-category-btn{
        padding:10px 18px;
        font-size:14px;
        width:auto;
    }

    .cm-product-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .cm-product-card{
        padding:16px;
    }

    .cm-product-card img{
        height:220px;
    }

}

/* ======================================
        SMALL MOBILE VIEW
====================================== */

@media(max-width:480px){

    .cm-product-heading h2{
        font-size:22px;
    }

    .cm-category-btn{
        width:100%;
        text-align:center;
    }

    .cm-product-card img{
        height:200px;
    }

}



/*  */