@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter" , sans-serif;
}
html{
    scroll-behavior: smooth !important;
}
:root{
    --main_color : #ef1b1f; 
    --p_color : #7b7b7b;
    --bg_color : #f3f3f3;
    --white_color : #fff;
    --color_heading : #302e2f;
    --border_color : #c7c5c5b6;
    --Sale_color : #E51A1A;
}
body{
    padding-top: 180px;
}
span{
    color: var(--main_color);
}
img{
    width: 100%;
}
input,select,button{
    outline: none;
    border: none;
}
select{
    color: var(--color_heading);
}
.btns{
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}
.btns .btn{
    padding: 10px 18px;
    text-transform: capitalize;
    border-radius: 2px;
    cursor: pointer;
    background-color: var(--main_color);
    color: var(--white_color);
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
    border: 1px solid var(--main_color);
}
.btns .btn:hover{
    background-color: transparent;
    color: var(--main_color);
}

p{
    color: var(--p_color);
}


h1,h2,h3,h4,h5,h6{
    color: var(--color_heading);
    font-family: "DM Sans" , sans-serif;
}
.container{
    width: 90%;
    margin: auto;
    max-width: 1350px;
}
.slider-products {
    margin-bottom: 80px;
}

@media (max-width : 1350px) {
    .container{
        width: 90%;
    }
}

/* HEADER START */
header{
    background-color: var(--white_color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;;
    z-index: 1000;
}
header .top-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
header .top-header .logo{
    width: 180px;
}
header .top-header form{
    width: 610px;
    display: flex;
    align-items: center;
    border-radius: 2px;
    background-color: var(--bg_color);
}
header .top-header .search-box input{
    width: 400px;
    height: 55px;
    padding: 5px 15px 5px 10px;
    background-color: transparent;
}
header .top-header .search-box .select-box{
    position: relative;
}
header .top-header .search-box select {
    width: 190px;
    height: 55px;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    padding-left: 10px;
    margin-right: 10px;
}
header .top-header .search-box select option{
    font-size: 14px;
}
header .top-header .search-box .select-box::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #b9b9b9;
}
header .top-header .search-box button {
    height: 55px;
    width: 60px;
    background-color: var(--main_color);
    border: none;
    color: var(--white_color);
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--main_color);
}
header .top-header .search-box button:hover{
    background-color: transparent;
    color: var(--main_color);
    border-radius: 50%;
}
header .top-header .header-icons{
    display: flex;
    gap: 30px;
}
header .top-header .header-icons .icon{
    position: relative;
    cursor: pointer;
}
header .top-header .header-icons .icon a{
    color: var(--color_heading);
}
header .top-header .header-icons .icon i{
    font-size: 24px;
}

header .top-header .header-icons .icon .count{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main_color);
    color: var(--white_color);
    font-size: 11px;
    border-radius: 100%;
}


/* Header-Bottom Start*/
header .bottom-header{
    border-top: 1px solid var(--main_color);
}
header .bottom-header nav{
    display: flex;
    align-items: center;
    gap: 50px;
    height: 60px;
}
header .bottom-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .bottom-header .category-nav{
    width: 220px;
    height: 100%;
    position: relative;
}
header .bottom-header .category-nav .category-nav-list{
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background: var(--white_color);
    border: 1px solid #999;
    border-top: 0;
    display: flex;
    flex-direction: column;
    clip-path: polygon(0 0 ,100% 0 , 100% 0 , 0 0);
    transition: 0.3s ease-in-out;
}
header .bottom-header .category-nav .category-nav-list.active{
    clip-path: polygon(0 0 ,100% 0 , 100% 100% , 0 100%);
}
header .bottom-header .category-nav .category-nav-list a{
    padding: 14px 10px;
    border-bottom: 1px solid var(--main_color);
    color: var(--color_heading);
    font-size: 14px;
}
header .bottom-header .category-nav .category-nav-list a:last-child{
    border-bottom: 0;
}
header .bottom-header .category-nav .category-nav-list a:hover{
    background-color: #d0d0d0;
}
header .bottom-header .category-nav .category-btn{
    height: 100%;
    width: 100%;
    background-color: var(--main_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--main_color);
}
header .bottom-header .category-nav .category-btn:hover{
    background-color: transparent;
}
header .bottom-header .category-nav .category-btn:hover p ,
header .bottom-header .category-nav .category-btn:hover i{
    color: var(--main_color);
}
header .bottom-header .category-nav .category-btn p{
    color: var(--white_color);
    font-weight: 600;
    font-size: 15px;
}

header .bottom-header .category-nav .category-btn i{
    color: var(--white_color);
}
header .bottom-header .nav-links{
    display: flex;
    gap: 35px;
    transition: 0.5s;
}

header .bottom-header .nav-links li a{
    transition: 0.3s;
    color: var(--color_heading);
}
header .bottom-header .nav-links li a:hover{
    color: var(--main_color);
}




/* SLIDER */
.slider{
    position: relative;
}
.slider .container{
    display: flex;
    justify-content: space-between;
}
.slider .banner-2{
    width: 23%;
    height: 100%;
    object-fit: cover;
}
.slider .banner-2 img{
    height: 395px;
}
.slider .banner-2 a{
    height: 100%;
    width: 100%;
}
.slider .container .slide-swp{
    width: 75%;
    overflow: hidden;
    position: relative;
}
.slider .container .slide-swp .swiper-wrapper .swiper-slide a img{
    border-radius: 30%;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background-color: var(--main_color);
    width: 35px;
    height: 8px;
    border-radius: 30px;
}




/* Banners 4 (Start) */

.banner-4{
    margin: 40px 0;
}
.banner-4 .container{
    display: flex;
    justify-content: space-between;
}
.banner-4 .container .box{
    width: 24%;
    background-image: url(/img/bg_banner3.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    position: relative;
}
.banner-4 .container .box img{
    width: 100px;
    transition: 0.3s;
    border-radius: 50%;
}
.banner-4 .container .box:hover img{
    transform: scale(1.1);
}
.banner-4 .container .box h5{
    font-size: 16px;
}
.banner-4 .container .box .sale{
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 7px 0;
}
.banner-4 .container .box .sale span{
    font-size: 25px;
    font-weight: bold;
}
.banner-4 .container .box h6{
    font-size: 14px;
    font-weight: bold;
}
.banner-4 .container .box .link-btn{
    position: absolute;
    width: 100%;
    height: 100%;
}

/* START Slide */
.side{
    margin-bottom: 70px;
}
.top-slide{
    position: relative;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--main_color);
}
.top-slide h2{
    position: relative;
    text-transform: uppercase;
    background-color: var(--main_color);
    color: var(--white_color);
    font-size: 18px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}
.top-slide h2::before{
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    z-index: 9;
    border-left: 20px solid transparent;
    background-color: var(--white_color);
    left: 0;
    border-bottom: 20px solid #ef1b1f9c;
}
.slide .container{
    position: relative;
}
.slide  .container .mySwiper{
    padding: 10px 0;
}
.slide  .container .mySwiper .btn_swip{
    position: absolute;
    top: 30px;
    right: 0;
    background-color: var(--main_color);
    color: var(--white_color);
    font-weight: bold;
    border-radius: 5px;
    height: 35px;
    width: 35px;
    transition: 0.3s;
    border: 2px solid var(--main_color);
}
.slide .container .mySwiper .btn_swip:hover{
    background-color: var(--bg_color);
    color: var(--color_heading);
}

.slide  .container .mySwiper .btn_swip::after{
    font-size: 12px;
}
.slide  .container .mySwiper .btn_swip.swiper-button-prev{
    left: calc(100% - 80px);
}
/* End Slide */


/* product card style */
.mySwiper{
    overflow: hidden;
}
.product{
    background-color: #fff;
    padding: 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 20px, rgba(0, 0, 0, 0.03) 0px 3px 6px;
    border: 1px solid var(--border_color);
    border-radius: 5px;
    position: relative;
    transition: 0.5s;


}
.product:hover{
     box-shadow: rgba(0, 0, 0, 0.20) 0px 25px 35px, rgba(0, 0, 0, 0.07) 0px 10px 15px;
     transition: 0.5s;
}
.product .sale-present{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background-color: var(--color_heading);
    color: var(--white_color);
    padding: 4px 10px;
    font-size: 13px;
}
.product .img-product{
    position: relative;
/*     height: 150px; */
/*     padding: 0 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.product .img-product a img{
    height: 300px;
    width: 100%;
}
.product:hover .img-product{
    scale: 1.01;
}
.product .name-product{
    margin-bottom: 10px;
    color: var(--color_heading);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product .name-product a{
    color: var(--color_heading);
}
.product .name-product:hover{
    text-decoration: underline;
}
.stars{
    margin-bottom: 10px;
}
.stars i{
    color: orange;
    font-size: 14px;
}
.price{
    display: flex;
    align-items: center;
    gap: 12px;
}
.price p{
    color: var(--main_color);
    font-weight: bold;
    font-size: 18px;
}
.price .old-price{
    color: var(--p_color);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: normal;
}
.product .icons{
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.product .icons .icon-product{
    width: 40px;
    height: 40px;
    border: 2px solid var(--border_color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    display: none;

}
.product .icons .icon-product i{
    color: var(--color_heading);
    font-size: 14px;
    transition: 0.3s;
}
.product .icons .icon-product:hover i{
    color: var(--white_color);
}
.product .icons .icon-product:hover{
    background-color: var(--color_heading);
}
.products .icons .btn-add-cart{
    background-color: var(--main_color);
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--bg_color);
    padding: 10px 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid var(--main_color);
    text-transform: capitalize;
    width: 100%;
    justify-content: center;
}
.products .icons .btn-add-cart:hover{
    background-color: transparent;
    color: var(--color_heading);
}
.products .icons .btn-add-cart:hover i{
    color: var(--color_heading);
}
.products .icons .btn-add-cart i{
    color: var(--white_color);
    pointer-events: none;
}
.products .icons .btn-add-cart.active{
    color: var(--color_heading) ;
    background-color: transparent ;
    pointer-events: none;
}
.products .icons .btn-add-cart.active i{
    color: var(--main_color);
}

/* Banners BOX START */

.banners{
    margin: 50px 0;
}
.banners .banner-boxs{
    display: flex;
    justify-content: space-between;
}
.banners .banner-boxs .box{
    width: 49%;
}
.banners .banner-boxs.banner_3_img .box{
    width: 32%;
}
.banners .banner-boxs img{
    border-radius: 30px;
    transition: 0.5s;

}
.papion .banner-boxs img {
    width: 45%;
    margin: auto;
    text-align: center;
    display: block;
    border-radius: 30px;
    transition: 0.5s;
}
.banners .banner-boxs img:hover{
    transform: translateY(-10px);
}

/* FOOTER START */

footer{
    background-color: var(--color_heading);
}
footer .container{
    /* display: flex; */
    /* justify-content: space-between; */
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
}

/* footer .container .big_row {
    width: 30%;
} */

footer .container .big_row .logo_footer{
    width: 180px;
}
footer .container .big_row p{
    width: 90%;
    color: #b1b1b1;
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0;
}

footer .container .row{
    width: 100%;
    margin: 15px 0;
}
footer .container .icons_footer{
    display: flex;
    gap: 10px;
}
footer .container .icons_footer a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color);
    border-radius: 3px;
    position: relative;
    top: 0;
    transition: 0.3s;
}
footer .container .icons_footer a:hover{
    top: -5px;
}
footer .container .icons_footer a i{
    color: var(--white_color);
    font-size: 20px;
}

footer .container .row h4{
    color: var(--white_color);
    font-size: 18px;
    margin-bottom: 20px;
}
footer .container .row .links{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
footer .container .row .links a{
    color: #b1b1b1;
    font-size: 14px;
    position: relative;
    left: 0;
    transition: 0.3s;
}
footer .container .row .links a i{
    color: var(--main_color);
    font-size: 14px;
    margin-right: 10px;
}
footer .container .row .links a:hover{
    left: 8px;
    color: var(--main_color);
}

footer .bottom-footer{
    background-color: #1d1f22;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 80px;
}
footer .bottom-footer .container{
    padding: 5px 0;
}
footer .bottom-footer p{
    color: var(--white_color);
}
footer .bottom-footer .payment_img{
    width: 350px;
}
/* FOOTER END */

/* START CART */

.cart{
    position: fixed;
    top: 0;
    right: -350px;
    bottom: 0;
    z-index: 9999999999999;
    background: var(--white_color);
    border-left: 1px solid var(--border_color);
    width: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s ease-in-out;
}
.cart.active{
    right: 0;
}
.cart .top-cart{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border_color);
    padding: 20px 20px;
}
.cart .top-cart .close_cart i{
    cursor: pointer;
    font-size: 35px;
}
.cart .top-cart h3{
    font-size: 18px;
}
.cart .top-cart h3 span{
    color: var(--color_heading);
}

.cart .items_in_cart{
    padding: 20px 0;
    border-bottom: 1px solid var(--border_color);
    height: 100%;
    margin-block: 20px;
    height: 100%;
    overflow-y: auto;
}

.cart .items_in_cart .item_cart{
    display: flex;
/*     align-items: center; */
    justify-content: center;
    gap: 40px;
    height: 125px;
    border-bottom: 1px solid var(--border_color);
    margin: 20px 0;
}
.cart .items_in_cart .item_cart:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}

.cart .items_in_cart .item_cart img{
    width: 80px;
}

.cart .items_in_cart .item_cart h4{
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart .items_in_cart .item_cart .delete_item i{
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--color_heading);
    background-color: none;
}
.cart .items_in_cart .item_cart .delete_item i:hover{
    color: var(--Sale_color);
}
.cart .items_in_cart .item_cart .quantity_control{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}
.cart .items_in_cart .item_cart .quantity_control span{
    font-size: 18px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart .items_in_cart .item_cart .quantity_control button{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border-radius: 2px;
    border: 1px solid var(--border_color);
    color: var(--color_heading);
}
.cart .bottom_cart .total{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.cart .bottom_cart .price_cart_total{
    color: var(--main_color);
    font-size: 20px;
}
.cart .bottom_cart .button_cart{
    display: flex;
    gap: 20px;
}
.cart .bottom_cart .button_cart .btn_cart{
    text-transform: uppercase;
    padding: 10px 15px;
    background-color: var(--main_color);
    color: var(--white_color);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    border: 2px solid var(--main_color);
}
.cart .bottom_cart .button_cart .trans_bg{
    background-color: transparent;
    color: var(--color_heading);
}
.cart .bottom_cart .button_cart .btn_cart:hover{
    background-color: var(--bg_color);
    color: var(--main_color);

}
.item_cart .content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
/* END CART */


.close_menu ,
.open_menu,
ul img{
    display: none;
}

/* Start Responsive */

@media (max-width : 1281px) {
    .products .icons .btn-add-cart{
        font-size: 14px;
        padding: 10px;
    }
}
@media (max-width : 1100px) {
    body{
    padding-top: 240px;
    }
    header .top-header .container{
        flex-wrap: wrap;
    }
    header .top-header .search-box{
        order: 3;
        width: 80%;
        margin: 20px auto 0;
    }
    header .top-header .logo{
        width: 140px;
        
    }
    header .top-header .search-box select{
        width: 200px;
    }
    header .top-header .search-box input{
        width: calc(100% - 200px);
    }
    header .bottom-header .nav-links{
        position: fixed;
        top: 0;
        left: -400px;
        bottom: 0;
        background: var(--white_color);
        width: 400px;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        border:1px solid #b5b5b5 ;
    }
    header .bottom-header .nav-links li{
        font-size: 18px;
        height: auto;
    }
    .close_menu{
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 30px;
    }
    ul img {
        display: flex;
        width: 240px;
    }
    .bottom-header .container nav .nav-links .allmenu{
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;

    }
    .open_menu{
        display: block;
        font-size: 25px;
    }
    .open_menu{
        height: 40px;
        border: 1px solid var(--main_color);
        width: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 3px;
    }
    header .bottom-header .nav-links.active{
        left: 0;
    }
    header .bottom-header .category-nav{
        width: auto;
    }
    header .bottom-header .category-nav p{
        font-size: 13px;
        margin: 0 10px;
    }
    header .bottom-header nav{
        gap: 20px;
    }
    .banner-4 .container{
        flex-wrap: wrap;
    }
    .banner-4 .container .box{
        width: 49%;
        margin-bottom: 20px;
        justify-content: space-around;
    }
}

@media (max-width : 1025px) {
    .slider .banner-2{
        display: none;
    }
    .slider .container .slide-swp{
        width: 100%;
    }
    footer .container{
        grid-template-columns: repeat(2 , 1fr);
    }
        .products .icons .btn-add-cart{
        font-size: 14px;
        padding: 10px;
    }
    .slider .container .slide-swp .swiper-wrapper .swiper-slide a img{
        border-radius: 5px;
    }
}

@media (max-width : 800px) {
    .top-slide h2{
        font-size: 16px;
        padding: 10px 25px;
    }
    .product .name-product{
        font-size: 14px;
    }
    .price p{
        font-size: 16px;
    }
    .price .old-price{
        font-size: 12px;
    }
    .products .icons .btn-add-cart{
        font-size: 14px;
        padding: 10px 5px;
    }
    .banners .banner-boxs{
        flex-wrap: wrap;
    }
    .banners .banner-boxs .box{
        width: 100%;
        margin-bottom: 20px;
    }
    .banners .banner-boxs.banner_3_img .box{
        width: 49%;
    }
    .checkout .maps h1{
        font-size: 35px !important;
    }
}

@media (max-width : 600px) {
    header .bottom-header .category-nav{
        display: none;
    }
    header .top-header .search-box{
        width: 100%;
    }
    header .top-header .search-box select{
        width: 140px;
    }
    header .top-header .search-box input{
        width: calc(100% - 140px);
    }
    header .bottom-header .nav-links{
        width: 100%;
        left: -100%;
    }
    .cart{
        width: 100%;
        right: -100%;
    }
    footer .container{
    grid-template-columns: repeat(1 , 1fr);
    }
    footer .bottom-footer{
        flex-wrap: wrap;
    }
    footer .bottom-footer p{
        text-align: center;
        font-size: 14px;
    }
    .banner-4 .container .box{
        width: 100%;
    }
    .products .icons .btn-add-cart{
        font-size: 13px;
        padding: 10px;
    }
    .banners .banner-boxs.banner_3_img .box{
        width: 100%;
    }
}

/* @media (max-width : 450px) {
    .products .icons .btn-add-cart{
        font-size: 10px;
        padding: 2px;
    } */

    .banner-4 .container .box h5,
    .banner-4 .container .box .sale p,
    .banner-4 .container .box .sale span{
        font-size: 14px;
    }
    .banner-4 .container .box h6{
        font-size: 13px;
    }

/* End Responsive */



/* Checkout Page  */
.checkout{
    margin: 50px 0;
}
.checkout .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout .ordersummary{
    width: 45%;
    padding: 0 20px;
    border: 2px solid var(--border_color);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.checkout .ordersummary h1{
    border-bottom: 1px solid var(--border_color);
    padding: 20px 0;
    margin-bottom: 20px;
    color: var(--main_color);
}
.checkout .ordersummary .items{
    height: 350px;
    overflow-y: auto;
}
.checkout .ordersummary .item_cart{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 125px;
    border-bottom: 1px solid var(--border_color);
    padding-right: 20px;
}
.checkout .ordersummary .item_cart:last-child{
    border-bottom: 0;
}

.checkout .ordersummary .item_cart .image-name{
    display: flex;
    align-items: center;
    gap: 20px;
}
.checkout .ordersummary .item_cart img{
    width: 80px;

}
.checkout .ordersummary .item_cart h4{
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.checkout .ordersummary .delete_item i{
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--color_heading);
}
.checkout .ordersummary .delete_item i:hover{
    color: var(--Sale_color);
    scale: 1.1;
}
.checkout .ordersummary .quantity_control{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}
.checkout .ordersummary .quantity_control span{
    font-size: 18px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_color);
    padding: 3px 0;
}
.checkout .ordersummary .quantity_control button{
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border-radius: 2px;
    border: 1px solid var(--border_color);
    color: var(--color_heading);
}
.checkout .ordersummary .bottom_summary{
    border-top: 1px solid var(--border_color);
    padding-top: 25px;

}
.checkout .ordersummary .shop_table{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout .ordersummary .shop_table p{
    font-size: 20px;
    color: var(--color_heading);
    text-transform: capitalize;
}
.checkout .ordersummary .shop_table span{
    font-weight: bold;
    font-size: 20px;
}
.checkout .ordersummary .button_div{
    border-top: 1px solid var(--border_color);
    padding: 30px 0;
}
.checkout .ordersummary .button_div button{
    width: 100%;
    background-color: var(--main_color);
    color: var(--white_color);
    border: 2px solid var(--main_color);
    padding: 15px 0;
    outline: none;
    border-radius: 3px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.checkout .ordersummary .button_div button:hover{
    background-color: transparent;
    color: var(--main_color);
}
.checkout .input-info{
    width: 45%;
}
.checkout .input-info h2{
    padding: 10px 20px;
    background-color: var(--main_color);
    text-transform: capitalize;
    color: var(--white_color);
}
.checkout .input-info .address,
.checkout .input-info .coupon{
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border_color);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.checkout .input-info .coupon .button_coupon{
    text-align: center;
    padding-bottom: 20px;
}
.checkout .input-info .coupon .button_coupon button{
    width: 50%;
    background-color: var(--main_color);
    color: var(--white_color);
    border: 2px solid var(--main_color);
    padding: 12px 0 ;
    outline: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.checkout .input-info .coupon .button_coupon button:hover{
    background-color: transparent;
    color: var(--main_color);
}
.checkout .input-info .inputs{
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
}
.checkout .input-info .inputs label{
    color: var(--color_heading);
    font-size: 14px;
    text-transform: capitalize;
}
.checkout .input-info .inputs input{
    margin: 8px 0 22px;
    padding: 15px 10px;
    outline: none;
    border: 1px solid var(--border_color);
    border-radius: 5px;
    transition: 0.3s;
}
.checkout .input-info .inputs input:focus{
    border-color: var(--main_color);
}

.checkout .maps iframe{
    width: 100%;
    height: 70%;
}
.checkout .maps{
    width: 80%;
    margin: 80px auto;
    height: 400px;
}
.checkout .maps h1{
    margin-bottom: 70px;
    font-size: 50px;
    text-align: center;
    background: -webkit-linear-gradient(50deg, var(--main_color), var(--color_heading));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media (max-width : 1000px) {
    .checkout .container{
        flex-direction: column;
        gap: 50px;
    }
    .checkout .ordersummary,
    .checkout .input-info{
        width: 80%;
    }
    .product .img-product a img{
        height: 200px !important;
    }
}



@media (max-width : 500px) {
    .checkout .ordersummary,
    .checkout .input-info{
        width: 100%;
    }
    .checkout .input-info h2{
        font-size: 18px;
    }
    .checkout .ordersummary .item_cart h4{
        font-size: 13px;
    }
}





















.container .test{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.btn2 {
 outline: none;
 cursor: pointer;
 border: 2px solid var(--main_color);
 padding: 0.9rem 2rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: var(--main_color);
 color: ghostwhite;
}

.btn2 span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
 color: var(--color_heading);
}

.btn2::before,
.btn2::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

.btn2::before {
 content: "";
 background: white;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn2:hover::before {
 transform: translate3d(100%, 0, 0);
}
.btn2:hover span{
    color: var(--bg_color);
}









/* From Uiverse.io by jolprince_5263 */ 
.card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.192),
    inset 0 0 5px rgba(255, 255, 255, 0.274),
    0 5px 5px rgba(0, 0, 0, 0.164);
  transition: 0.5s;
}

.card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}

.card ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.card ul li {
  cursor: pointer;
}

.svg {
  transition: all 0.3s;
  /* if you find some problems change w - h : 30px*/
  padding: 1rem;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  color: var(--main_color);
  fill: currentColor;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
}

.social {
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: var(--color_heading);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow:
    -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.082);
}

/*isometric prooyection*/
.iso-pro {
  transition: 0.5s;
}
.iso-pro:hover a > .svg {
  transform: translate(15px, -15px);
  border-radius: 100%;
}

.iso-pro:hover .social {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
}

.iso-pro:hover .svg {
  transform: translate(5px, -5px);
}

.iso-pro span {
  opacity: 0;
  position: absolute;
  color: #1877f2;
  border-color: #1877f2;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s;
  height: 60px;
  width: 60px;
}

.iso-pro:hover span {
  opacity: 1;
}

.iso-pro:hover span:nth-child(1) {
  opacity: 0.2;
}

.iso-pro:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.iso-pro:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}





































.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    /* إضافة تأثيرات ظهور واختفاء */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff; /* خلفية للصورة والكبشن */
    padding: 20px;
    border-radius: 8px;
    max-width: 80%; /* زيادة عرض المحتوى */
/*     max-height: 90vh; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8); /* تأثير تكبير عند الظهور */
    transition: transform 0.3s ease;
    padding-bottom: 40px; /* ترك مساحة لمؤشرات الصور */
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 95%; /* تكبير الصورة داخل المحتوى */
    max-height: 75vh; /* ضبط الارتفاع لترك مساحة للكبشن والأزرار */
    object-fit: contain; /* للحفاظ على نسبة العرض إلى الارتفاع */
    margin-bottom: 15px;
    transition: opacity 0.3s ease; /* تأثير تلاشي عند تغيير الصورة */
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333; /* لون مقارب للون الرمادي الغامق */
    font-size: 40px;
    cursor: pointer;
    z-index: 10000; /* لضمان ظهور الزر فوق كل شيء */
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.close-lightbox:hover {
    color: #fff;
    background-color: #dc3545; /* لون أحمر عند التمرير */
}

/* تعديل موقع أزرار التنقل لتكون خارج lightbox-content */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 2em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    width: 60px; /* حجم الأزرار */
    height: 60px;
    z-index: 1001; /* للتأكد من أنها فوق الخلفية السوداء */
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px; /* المسافة من اليسار */
}

.lightbox-next {
    right: 20px; /* المسافة من اليمين */
}

/* تنسيقات مؤشرات الصور */
.lightbox-indicators {
    position: absolute;
    bottom: 10px; /* مسافة من الأسفل داخل lightbox-content */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px; /* المسافة بين المؤشرات */
}

.lightbox-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc; /* لون المؤشر غير النشط */
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.lightbox-indicator.active {
    background-color: #007bff; /* لون المؤشر النشط */
    opacity: 1;
}








/* تعديل padding-bottom لـ lightbox-content إذا لزم الأمر */
.lightbox-content {
    /* .. الكود الموجود لديك .. */
    padding-bottom: 20px; /* يمكنك تقليل المساحة إذا لم تعد هناك مؤشرات */
    /* .. الكود الموجود لديك .. */
}

/* تنسيقات جديدة لمعلومات المنتج في اللايت بوكس */
.lightbox-details {
    color: #333;
    text-align: center;
    margin-top: 10px; /* مسافة من الكبشن */
    font-size: 1.1em;
}

.lightbox-details p {
    margin: 5px 0;
}

.lightbox-details .product-price {
    font-weight: bold;
    color: var(--main_color); /* لون مميز للسعر */
    font-size: 1.3em;
}

.lightbox-details .product-size {
    font-style: italic;
    color: #555;
}





/* تنسيقات زر إضافة للسلة داخل اللايت بوكس */
.lightbox-add-to-cart-btn {
    background-color: var(--main_color); /* لون أخضر مناسب للسلة */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px; /* مسافة من الأسفل */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-add-to-cart-btn:hover {
    background-color: var(--color_heading); /* لون أغمق عند التمرير */
    transform: translateY(-2px);
}

.lightbox-add-to-cart-btn.active { /* لتغيير مظهره إذا كان المنتج بالفعل في السلة */
    background-color: #6c757d; /* لون رمادي للإشارة إلى أنه في السلة */
    cursor: default;
}

.lightbox-add-to-cart-btn.active:hover {
    background-color: #6c757d; /* لا يتغير لونه عند التمرير إذا كان نشطًا */
    transform: translateY(0);
}
/* تعديلات للاستجابة على الشاشات الأصغر */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5em;
        padding: 10px;
        width: 45px;
        height: 45px;
        /* يمكن تعديل left/right إذا لزم الأمر */
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-img {
        max-width: 90%;
        max-height: 80vh;
    }
    .close-lightbox {
        font-size: 30px;
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    .lightbox-indicators {
        gap: 5px;
    }
    .lightbox-indicator {
        width: 8px;
        height: 8px;
    }
    .btns .btn{
        padding: 8px 10px;
    }
    .banner-4 .container .box img{
        width: 70px;
    }
}