*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    padding-top: 200px;
}
:root{
    --main-color: #ff8716;
    --p-color: #7b7b7b;
    --bg-color: #f3f3f3;
    --color-heading: #121416;
    --color-border: #e5e5e5d5;
    --color-sala: #e51a1a;
}
a{
    color: black;
}
span{
    color: var(--main-color);
}
p{
    color: var(--p-color);
}
h1,h2,h3,h4,h5,h6{
    color: var(--color-heading);
}

.container{
    width: 90%;
    margin: auto;
    max-width: 1350px;
}
@media (max-width: 1350px) {
    .container{
        width: 90%;
    }
}
/* start cart */
.cart{
    position: fixed;
    right: -350px;
    top: 0;
    z-index: 10000;
    background-color: white;
    bottom: 0;
    border-left: 2px solid var(--color-border);
    padding: 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}
.cart.show{
    right: 0;
}
.cart .top-cart{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart .top-cart .close{
    width: 35px;
    height: 35px;
    color: black;
    border: 3px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}
.cart .top-cart h3{
    text-transform: capitalize;
    font-size: 18px;
}
.cart .top-cart h3 .count-in-cart{
    color: var(--color-heading);
}
.cart .items-cart{
    padding: 20px 0;
    margin-block: 20px;
    border-block: 1px solid var(--color-border);
    height: 100%;
    overflow-y: auto;
}
.cart .items-cart .item-cart{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    height: 125px;
}
.cart .items-cart .item-cart:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.cart .items-cart .item-cart img{
    width: 90px;
}
.cart .items-cart .item-cart h4{
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cart .items-cart .item-cart .delet{
    border: none;
}
.cart .items-cart .item-cart .delet i{
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}
.cart .items-cart .item-cart .delet i:hover{
    color: #e51a1a;
}
.cart .items-cart .item-cart .control{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}
.cart .items-cart .item-cart .control span{
    font-size: 18px;
    min-width: 35px;
    text-align: center;
}
.cart .items-cart .item-cart .control button{
    width: 27px;
    height: 27px;
    border-radius: 2px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    cursor: pointer;
}
.cart .bottom-cart .total{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.cart .bottom-cart .total .total-cart{
    color: var(--main-color);
    font-size: 20px;
}
.cart .bottom-cart .btns-cart{
    display: flex;
    gap: 20px;
}
.cart .bottom-cart .btns-cart .btn-cart{
    padding: 10px 15px;
    border-radius: 6px;
    text-transform: uppercase;
    border-width: 2px;
}
.cart .bottom-cart .btns-cart .btn-cart.bg-trans{
    background-color: transparent;
    color:black;
}
/* end cart */
/* start love */
.love-section{
    position: fixed;
    background-color: white;
    width: 350px;
    right: -350px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--color-border);
    padding: 15px 20px;
    z-index: 1111;
    transition: .3s;
}
@media (max-width: 600px) {
    .love-section{
        width: 100%;
        right: -100%;
    }
}
.love-section.show{
    right: 0;
}
.love-section .top-love{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.love-section .top-love h3{
    text-transform: capitalize;
    font-size: 20px;
}
.love-section .top-love h3 span{
    color: var(--color-heading);
    font-weight: bold;
}
.love-section .top-love .close{
    width: 35px;
    height: 35px;
    border: 3px solid var(--color-heading);
    color: var(--color-heading);
    text-align: center;
    line-height: 28px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
}
.love-section .items-love{
    height: 100%;
    overflow-y: auto;
    padding: 20px 0;
    margin-block: 20px;
    border-block: 1px solid var(--color-border);
}
.love-section .items-love .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 125px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 10px;
}
.love-section .items-love .item:last-child{
    border: none;
    margin-bottom: 0;
}
.love-section .items-love .item  img{
    width: 90px;
    margin-right: 10px;
}
.love-section .items-love .item  h4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    width: 85%;
    -webkit-box-orient: vertical;
}
.love-section .items-love .item p{
    font-size: 16px;
}
.love-section .items-love .item .delet{
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
}
.love-section .items-love .item .delet:hover{
    color: #e51a1a;
}
.love-section .bottom-love button{
    width: 100%;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 10px 0;
    font-size: 20px;
    text-transform: capitalize;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.love-section .bottom-love button:hover{
    background-color: transparent;
    color: var(--main-color);
}
/* end love */
/* start header */
/* start header top*/
header{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background-color: white;
    box-shadow: 5px 8px 10px #d1d1d13b;
    z-index: 111;
}
header .top_header .container{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .top_header .logo{
    width: 180px;
}
header .top_header .logo img{
    width: 100%;
}
header .top_header form{
    display: flex;
    border-radius: 6px;
    align-items: center;
    position: relative;
    width: 610px;
    background-color: var(--bg-color);
}
header .top_header form .select{
    position: relative;
}
header .top_header form .select select{
    height: 55px;
    width: 190px;
    padding-left: 10px;
    margin-right: 10px;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    text-transform: capitalize;
}
header .top_header form .select::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--p-color);
}
header .top_header form input{
    border: none;
    outline: none;
    background-color: transparent;
    width: 400px;
    padding: 15px 5px;
    height: 55px;
}
header .top_header form button{
    border: none;
    width: 60px;
    height: 55px;
    background-color: var(--main-color);
    color: white;
    font-size: 25px;
    cursor: pointer;
    border-radius: 0px 6px 6px 0;
}
header .top_header .icons{
    display: flex;
    gap: 30px;
}
header .top_header .icons i{
    color: black;
    font-size: 24px;
}
header .top_header .icons .icon{
    position: relative;
    cursor: pointer;
}
header .top_header .icons span{
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: var(--main-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}
@media (max-width: 1100px) {
    header .top_header .logo{
        width: 140px;
    }
    header .top_header .container{
        flex-wrap: wrap;
    }
    header .top_header .container form{
        order: 3;
        width: 90%;
        margin: 20px auto;
    }
    header .top_header .container form select{
        width: 200px;
    }
    header .top_header .container form input{
        width: calc(100% - 200px);
    }
}
/* end header top*/
/* start header bottom*/
.bottom_header{
    border-top: 1px solid var(--color-border);
}
.bottom_header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom_header .nav{
    display: flex;
    gap: 50px;
    height: 60px;
    align-items: center;
}
.bottom_header .nav .category_nav{
    position: relative;
    width: 220px;
    height: 100%;
}
.bottom_header .nav .category_nav .btn{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-color);
    padding: 0 15px;
    color: white;
    cursor: pointer;
}
.bottom_header .nav .category_nav .btn p{
    color: white;
    font-weight: bold;
    font-size: 16px;
}
.bottom_header .nav .list{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #999;
    border-top: none;
    background-color: white;
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0);
    transition: .3s;
}
.bottom_header .nav .list.show{
    clip-path: polygon(0 0 , 100% 0 , 100% 100%, 0 100%);
}
.bottom_header .nav .list a{
    padding: 15px 10px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    transition: .3s;
}
.bottom_header .nav .list a:hover{
    background-color: #d0d0d0;
}
.bottom_header .nav .list a:last-child{
    border-bottom: none;
}
.bottom_header .nav .links{
    display: flex;
    gap: 30px;
    text-transform: capitalize;
}
.bottom_header .nav .links .close-mune{
    position: absolute;
    width: 40px;
    height: 40px;
    color: black;
    border: 3px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.bottom_header .nav .links li a{
    transition: .3s;
}
.bottom_header .nav .links li.active a,
.bottom_header .nav .links li a:hover{
    color: var(--main-color);
}
.bottom_header .log-sign{
    display: flex;
    gap: 20px;
    align-items: center;
}
.bottom_header .log-sign .btn{
    background-color: var(--main-color);
    padding: 10px 15px;
    color: white;
    display: flex;
    gap: 10px;
    text-transform: capitalize;
    align-items: center;
    font-weight: bold;
    border-radius: 4px;
    transition: .3s;
}
.bottom_header .log-sign .btn:hover{
    scale: 1.1;
}
.open-mune{
    display: none;
}
@media (max-width: 1100px) {
    .bottom_header .nav .links{
        position: fixed;
        top: 0;
        left: -400px;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        width: 400px;
        align-items: center;
        padding-top: 100px;
        border-right: 1px solid #b5b5b596;
        transition: .3s;
    }
    .bottom_header .nav .links.show{
        left: 0;
    }
    .bottom_header .nav .links li{
        font-size: 18px;
        height: auto;
    }
    .bottom_header .nav .links .close-mune{
        display: block;
        top: 20px;
        right: 20px;
        font-size: 25px;
    }
    .open-mune{
        display: block;
        cursor: pointer;
    }
    .open-mune i{
        width: 40px;
        height: 40px;
        border: 1px solid var(--main-color);
        color: var(--main-color);
        text-align: center;
        line-height: 36px;
        font-size: 20px;
    }
    .bottom_header .nav .category_nav{
        width: auto;
    }
    .bottom_header .nav .category_nav .btn-list{
        font-size: 14px;
    }
    .bottom_header .nav .category_nav .btn-list p{
        margin: 0 10px;
    }
    .bottom_header .nav{
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .bottom_header .nav .category_nav{
        display: none;
    }
    header .top_header form{
        width: 100%;
    }
    header .top_header form .select{
        width: 140px;
    }
    header .top_header form .select select{
        width: 100%;
    }
    header .top_header form input{
        width: calc(100% - 140px);
    }
    .bottom_header .nav .links.show{
        width: 100%;
    }
    .cart{
        width: 100%;
        right: -100%;
    }
}
/* end header bottom*/
/* end header */
/* start swiper */
.slide {
    position: relative;
}
.slide .container{
    display: flex;
    justify-content: space-between;
}
.slide .right{
    width: 23%;
    height: 100%;
}
.slide .right a img{
    width: 100%;
    height: 100%;
    transform: translateY(10px);
    z-index: 1;
}
.slide .slide-swiper{
    width: 75%;
    overflow: hidden;
    position: relative;
}
.slide .slide-swiper .swiper-slide img{
    width: 100%;
}
.swiper-wrapper{
    height: auto;
}

@media (max-width: 1000px) {
    .slide .right{
        display: none;
    }
    .slide .slide-swiper{
        width: 100%;
    }
}
.slide .container .slide-swiper .swiper-pagination span{
    background-color: white;
    transform: translateY(-10px);
    opacity: 1;
    transition: .3s;
}
.slide .container .slide-swiper .swiper-pagination span.swiper-pagination-bullet-active{
    background-color: var(--main-color);
    width: 30px;
    border-radius: 6px;
}
/* end swiper */
/* start banner-4 */
.banner-4{
    margin: 40px 0;
}
.banner-4 .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.banner-4 .container .box{
    flex-basis: 24%;
    background-image: url("../img/bg_banner3.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
}
.banner-4 .container .box:hover img{
    scale: 1.05;
}
.banner-4 .container .box img{
    width: 100px;
    transition: .3s;
}
.banner-4 .container .box h5{
    font-size: 16px;
}
.banner-4 .container .box .sale{
    display: flex;
    text-transform: uppercase;
    gap: 5px;
    align-items: center;
}
.banner-4 .container .box .sale span{
    font-size: 25px;
    font-weight: bold;
}
.banner-4 .container .box h6{
    font-size: 15px;
    font-weight: bold;
}
.banner-4 .container .box .link-btn{
    position: absolute;
    height: 100%;
    width: 100%;
}
@media (max-width: 1100px) {
    .banner-4 .container .box{
        flex-basis: 49%;
        justify-content: space-around;
    }
}
@media (max-width: 600px) {
    .banner-4 .container .box{
        flex-basis: 99%;
    }
    .banner-4 .container .box h5{
        font-size: 15px;
        font-weight: normal;
    }
}
/* end banner-4 */
/* start slide */
.slide{
    margin-bottom: 70px;
}
.top-slide{
    position: relative;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--main-color);
}
.top-slide h2{
    position: relative;
    background-color: var(--main-color);
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    width: max-content;
}
.top-slide h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    border-left: 20px solid transparent;
    border-bottom: 20px solid #e26e02;
}
.slide .container {
    position: relative;
}
.slide .container .mySwiper{
    padding: 10px 0;
}
.slide .container .mySwiper .btn-slid{
    position: absolute;
    top: 30px;
    font-weight: bold;
    background-color: var(--bg-color);
    color: black;
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
.slide .container .mySwiper .btn-slid::after{
    font-size: 14px;
}
.slide .container .mySwiper .btn-slid.swiper-button-prev{
    left: calc(100% - 90px);
}
/* end slide */
/* start products */
.slide-product{
    overflow: hidden;
}
.slide-product .product{
    background-color: white;
    padding: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 5px 8px 8px #94949428;
    border-radius: 5px;
    position: relative;
}
.slide-product .product .sale{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ed0505;
    padding: 4px 10px;
    color: white;
    font-size: 13px;
    z-index: 2;
}
.product .img-product{
    height: 180px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.product .img-product img{
    max-width:  190px;
}
.product:hover .img-product{
    scale: 1.1;
}
.product .name{
    margin-bottom: 10px;
    overflow: hidden;
    color: red;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product .name:hover a{
    text-decoration: underline;
}
.stars{
    margin-bottom: 10px;
}
.stars i{
    color: var(--main-color);
    font-size: 14px;
} 
.product .price-product{
    display: flex;
    align-items: center;
    gap: 10px;
}
.product .price-product p{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
}
.product .price-product .old-price{
    font-size: 14px;
    color: var(--p-color);
    font-weight: normal;
    text-decoration: line-through;
}
.product .icons{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.product .icons .love{
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    color: black;
    font-size: 14px;
    cursor: pointer;
}
.product .icons .love:hover{
    background-color: var(--main-color);
    border-color: transparent;
    color: white;
}
.product .icons .love.active{
    background-color: var(--main-color);
    border-color: transparent;
    color: white;
    pointer-events: none;
}
.btn{
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 5px 10px;
    text-transform: capitalize;
    gap: 5px;
    transition: .3s;
    border: 1px solid var(--main-color);
    cursor: pointer;
}
.btn:hover{
    scale: 1.05;
    background-color: #f47600;
}
.product .btn.active{
    background-color: transparent;
    color: var(--color-heading);
    pointer-events: none;
}
.product .btn.active i{
    color: var(--main-color);
}
@media (max-width: 800px) {
    .top-slide h2{
        font-size: 16px;
        padding: 10px 25px;
    }
    .product .name{
        font-size: 16px;
    }
    .product .btn-add-cart{
        font-size: 14px;
        padding: 3px 5px;
    }
}
@media (max-width: 600px){
    .product .name{
        font-size: 14px;
    }
    .product .img-product img{
        max-width: 140px;
    }
}
/* end products */
/* start banners */
.banners{
    margin: 50px 0;
}
.banners .banners-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.banners .banners-box .box{
    width: 49%;
}
.banners .banners-box .box img{
    width: 100%;
}
.banners .banners-2 .box{
    width: 32%;
    
}
@media (max-width: 800px) {
    .banners .banners-1{
        gap: 20px;
    }
    .banners .banners-1 .box{
        width: 100%;
    }
    .banners .banners-2{
        gap: 10px;
    }
    .banners .banners-2 .box{
        width: 49%;
    }
}
@media (max-width: 600px) {
    .banners .banners-2 .box{
        width: 99%;
    }
}
/* end banners */
/* start footer */
footer{
    background-color: var(--color-heading);
}
footer .container{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .container .big-row{
    width: 30%;
}
footer .container .big-row .footer-logo{
    width: 180px;
}
footer .container .big-row p{
    width: 90%;
    line-height: 1.5;
    color: #b1b1b1;
    font-size: 15px;
    margin: 15px 0;
}
footer .container .big-row .icons-footer{
    display: flex;
    gap: 10px;
}
footer .container .big-row .icons-footer a{
    color: white;
    background-color: var(--main-color);
    width: 40px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 5px;
    transition: .3s;
    font-size: 20px;
}
footer .container .big-row .icons-footer a:hover{
    transform: translateY(-5px);
}
footer .container .row{
    width: 22%;
}
footer .container .row h4{
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}
footer .container .row .links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .container .row .links a{
    color: #b1b1b1;
    font-size: 14px;
    transition: .3s;
}
footer .container .row .links i{
    margin-right: 5px;
    color: var(--main-color);
}
footer .container .row .links a:hover{
    transform: translateX(8px);
    color: var(--main-color);
}
footer .bottom-footer{
    background-color: #1d1f22;
}
footer .bottom-footer .container{
    align-items: center;
    padding: 5px 0;
}
footer .bottom-footer .container p{
    color: white;
}
footer .bottom-footer .container span{
    margin-left: 4px;
    text-transform: capitalize;
}
footer .bottom-footer .container .image img{
    width: 350px;
}
@media (max-width: 1000px) {
    footer .container .big-row{
        width: 40%;
        margin-bottom: 20px;
    }
    footer .container .row{
        width: 30%;
        margin-bottom: 20px;
    }
    footer .bottom-footer .container{
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
}
@media (max-width: 800px) {
    footer .container .big-row{
        width: 50%;
        margin-bottom: 30px;
    }
    footer .container .row{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) {
    footer .container .big-row{
        width: 100%;
    }
    footer .container .row{
        width: 100%;
    }
}
/* end footer */
/*start checkout page */
.checkout{
    margin: 50px 0;
}
.checkout .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout  .order-summary{
    width: 45%;
    padding: 0 20px;
    border: 2px solid var(--color-border);
    border-radius: 5px;
    box-shadow:  0 8px 10px #c0bfbf44;
}
.checkout  .order-summary h1{
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--main-color);
}
.checkout  .order-summary .items{
    height: 350px;
    overflow-y: auto;
}
.checkout  .order-summary .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 125px;
    border-bottom: 1px solid var(--color-border);
    padding-right: 15px;
}
.checkout  .order-summary .item:last-child{
    border-bottom: none;
    margin-bottom: none;
}
.checkout  .order-summary .item .img-name{
    display: flex;
    align-items: center;
    gap: 20px;
}
.checkout  .order-summary .item img{
    width: 80px;
}
.checkout  .order-summary .item h4{
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.checkout  .order-summary .item .delet{
    border: none;
}
.checkout  .order-summary .item .delet i{
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}
.checkout  .order-summary .item .delet i:hover{
    color: #e51a1a;
}
.checkout  .order-summary .item .control{
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
}
.checkout  .order-summary .item .control span{
    min-width: 40px;
    font-size: 18px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
    border-radius: 4px;
}
.checkout  .order-summary .item .control button{
    width: 27px;
    height: 27px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: 2px;
}
.checkout .bottom-summary{
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}
.checkout .bottom-summary .shiping-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.checkout .bottom-summary .shiping-box p{
    font-size: 20px;
    color: var(--color-heading);
    text-transform: capitalize;
}
.checkout .bottom-summary .shiping-box span{
    font-size: 20px;
    font-weight: bold;
}
.checkout .bottom-summary .btn-div{
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
}
.checkout .bottom-summary .btn-div button{
    width: 100%;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    outline: none;
    border-radius: 4px;
    color: white;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.checkout .bottom-summary .btn-div button:hover{
    background-color: transparent;
    color: var(--main-color);
}
body.checkout-body{
    padding-top: 150px;
}
@media (max-width: 1100px) {
    body{
        padding-top: 270px;
    }
    body.checkout-body{
        padding-top: 220px;
    }
}
.input-info{
    width: 45%;
}
.input-info h2{
    text-transform: capitalize;
    background-color: var(--main-color);
    color: white;
    padding: 10px 20px;
}
.input-info .address,
.input-info .coupon{
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 10px #c0bfbf44;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}
.input-info .inputs{
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}
.input-info .inputs label{
    text-transform: capitalize;
    font-size: 14px;
    color: var(--color-heading);
}
.input-info .inputs input{
    margin: 8px 0 22px;
    border: 1px solid var(--color-border);
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    transition: .3s;
}
.input-info .inputs input:focus{
    border-color: var(--main-color);
}
.input-info .inputs input::placeholder{
    text-transform: capitalize;
}
.input-info .coupon .btn-coupon{
    text-align: center;
    padding-bottom: 20px;
}
.input-info .coupon .btn-coupon button{
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: white;
    width: 50%;
    padding: 12px 0;
    border-radius: 2px;
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    outline: none;
    transition: .3s;
    cursor: pointer;
}
.input-info .coupon .btn-coupon button:hover{
    background-color: transparent;
    color: var(--main-color);
}
@media (max-width: 800px) {
    .checkout .container{
        flex-direction: column;
        gap: 20px;
    }
    .checkout .container .order-summary,
    .checkout .container .input-info{
        width: 100%;
    }
}
/*end checkout page */