.cart_body{
    background-color: #eee;
}
.cart_cont{
    background-color: var(--color-white);
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    padding: 40px 30px;
    border-radius: 5px;
}
.product_title2{
    font-size: 24px;
    font-weight: 700;
}
.tags{
    gap: 10px;
}
.tags ul{
    gap: 5px;
}
 
.tags ul li a:hover{
    color: var(--color-red);
}
.social_icons_cart{
    gap: 10px !important;
}
.social_icons_cart li a{
    width: 25px;
    height: 25px;
    background-color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    color: white;
}
.social_icons_cart li a svg{
    fill: white;
}
.social_icons_cart li a i:hover{
    color: var(--color-white);
}
.cart_container{
    background-color: #eee;
    padding: 20px;
    border-radius: 5px;
}
.cart_stock{
    background-color: green;
    display: inline-flex;
    padding: 5px 15px;
    color: var(--color-white);
    border-radius: 5px;
}
.cart_list li{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    padding: 7px 0px;
}
.select_car{
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: var(--color-golden);
    font-size: 14px;
}
.product_hr{
    margin: 10px 0px;
}
.product_gal_cart{
    gap: 10px;
}
.product_img_cart{
    border: 1px solid rgba(0,0,0,0.5);
    padding: 10px;
    cursor: pointer;
}
.product_cart_img img{
    height: 350px;
    width: 100%;
    border-radius: 5px;
}
.product_img_cart img{
    height: 70px;
    width: auto;
}
.qt input{
    border: none;
    width: 30px;
    text-align: center;
}
.qt{
    background-color: var(--color-white);
    border-radius: 50px;
    padding: 5px 10px;
    border: 1px solid rgba(0,0,0,0.5);
    display: inline-flex;
    gap: 5px;
}

.qt button{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-golden);
}
.cart_btn img{
    height: 18px;
    width: auto;
}
.cart_btn{
    border: none;
    width: 100%;
    padding: 8px;
    border-radius: 50px;
    background:  var(--color-red);
    gap: 3px;
    color: var(--color-white);
}
.discount_card_1{
    height: 100%;
}
.dis_img img{
    height: 341px;
    object-fit: cover;
}
.discount_content{
    position: absolute;
    top: 0px;
    left: 0px;
    color: var(--color-white);
    padding: 20px;
}
.dis_title{
    font-weight: 700;
    font-size: 22px;
    font-family: var(--font-playfair);
}
.ratings_cont {
    color: rgb(239, 155, 0);
}
.price_pr_title{
    font-size: 24px; 
}
@media screen and (max-width: 568px){
    .cart_cont{
        padding: 20px 10px;
    }
}