/* Import Roboto and Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Lato", sans-serif;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

p.solid {
    border-style: solid;
}

/* Site Logo */

.ctm_site_logo {
    margin: 0 15px;
}

.ctm_site_logo img {
    width: 180px
}

/* Header - Search */
.header_account_area {
    margin: 0;
    display: flex;
    justify-content: space-between;
}

/* .header_account_area .ctm_header_search_section {
    width: 550px;
} */

.header_account_area .dropdown_search {
    margin: 0px;
    background: transparent;
    border: none;
    width: 80%;
}

/* Header - Customer service */
a.ctm_customer_service_anchor {
    font-family: 'poppins' !important;
    color: white;
}

.ctm_customer_service {
    height: 46px;
    width: 180px;
    background: #43474B;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-in-out
}

.ctm_customer_service img {
    margin-left: 3px;
    margin-top: -3px;
    width: 25px
}

/* Header - Wishlist */
.contact-link a {
    margin: 0px
}

.contact-link {
    height: 46px;
    width: 50px;
    background: #43474B;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-in-out
}

/* Header - Cart */
.header_account_area>div+div {
    margin: 0px !important;
}

.cart-info {
    font-family: 'poppins' !important;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F58634;
    height: 46px;
    width: 150px;
    margin: 0px !important;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}
.cart-info2 {
    font-family: 'poppins' !important;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F58634;
    height: 48px;
    margin: 0px !important;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}


/* Header - User profile */
.main-navigation {
    font-family: 'poppins' !important;
    color: white;
    border-radius: 5px;
    background: #43474B;
    height: 46px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-navigation a.ctm_menu_profile_name {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Header - Hover effects */
.ctm_customer_service:hover,
.contact-link:hover,
.main-navigation:hover {
    background: #53585c;
}

.cart-info:hover {
    background: #e77b2e;
}
.cart-info2:hover {
    background: #e77b2e;
}


/* Header - Sidebar */

/* .ctm_sidebar {
    position: fixed;
    top: 0;
    left: 50px;
    width: 300px;
    height: 100vh;
    z-index: 9;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-110%);
    transition: transform 0.3s ease-in-out;
}

.ctm_sidebar.active {
    transform: translateX(120px);
} */




.ctm_sidebar {
    background-color: rgb(255, 255, 255);
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9;
    color: black;
    box-shadow: 20px 0 100px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.ctm_sidebar.active {
    left: 0;
    opacity: 1;
}

.ctm_sidebar header {
    font-family: 'Roboto';
    background-color: #32373A;
    line-height: 65px;
    font-weight: 600;
    text-align: start;
    padding-left: 20px;
    color: white;
    font-size: 20px
}

.ctm_sidebar ul li .ctm_cat_arrow {
    width: 50px;
    border-left: 1px solid rgb(230, 230, 230);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctm_sidebar ul li {
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(230, 230, 230);
    transition: background-color 0.2s ease-in-out;
}

.ctm_sidebar ul li:hover {
    background-color: #e9ebeb;
    cursor: pointer;
}

.ctm_sidebar ul li .ctm_cat_name i {
    color: #e77b2e;
    font-size: 20px;
    margin-right: 15px;
}

.ctm_sidebar ul a {
    font-family: 'Roboto';
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    color: rgb(37, 37, 37);
    line-height: 48px;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    background: #43474B;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 5;
    position: relative;

}

/* Close Button */
.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
    margin-right: 20px;
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

/* Show Backdrop */
.backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Products */
/* .best-sells-area{
    padding: 70px 0;
    background:#E1E5E5;
} */
/* .list-product {
    box-shadow: 0 0 1px #41474a26, 0 0px 1px #0000002e;
} */

.list-product:hover {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

a.ctm_add_to_cart {
    box-shadow: inset 0 0 0 0 #e77b2e;
    font-family: 'Roboto';
    /* padding: 2px 5px; */
    border-radius: 2px;
    margin: 0 ;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
a.ctm_add_to_cart:hover {
    color: #fff !important;
    box-shadow: inset 200px 0 0 0 #e77b2e;;
  }

/* Single product page */
.breadcrumb-area{
    padding: 0;
}

/* MEDIA QUERIES */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/* Sliding Effect (For Screens <1920px) */
@media (max-width: 1919px) {
    .ctm_sidebar {
        transition: left 0.4s ease-in-out;
    }

    .ctm_sidebar.active {
        left:0;
        opacity: 1;
    }
    

}



@media (max-width: 1399px) {
    .ctm_customer_service{
        height: 46px;
        width: 50px;
    }
    }

    @media (max-width: 992px) {
        .main-navigation{
            height: 46px;
            width: 50px;
        }
        contact-link{
            height: 46px;
            width: 50px;
        }
    }
    @media (max-width: 576px) {
        .cart-info2{
            height: 46px;
            width: 50px;
        }
        
    }


/* Fade-in Effect (For Screens ≥1920px) */
@media (min-width: 1920px) {
    .ctm_sidebar {
        position: absolute;
        top: 0;
        left: auto;
        transform: translateX(-100%);
        opacity: 0;
        transition: opacity 0.4s ease-in-out, left 0.4s ease-in-out;
    }

    .ctm_sidebar.active {
        left: 50px;
        opacity: 1;
    }
}
