.product-details-contianer{
    padding: 20px 140px;
}

.product-details-contianer .breadcrumb a{
   color: #665b86;
   text-decoration: none;
}

.product-details{
    display: flex;
}

.product-details-left , .product-details-right{
    width: 50%;
    padding: 20px;
}

.product-details-left{
    text-align: center;
    background: #fffafa;
    border-radius: 12px;
}

.product-details img{
    width: 65%;
    border-radius: 12px;
}

.price-add-to-cart .btn-fresh-red-Cta {
    padding: 16px 86px;
    background-color: var(--background-color);
    color: white;
    border: 0px;
    box-shadow: -4px 6px 8px 0px rgba(255, 255, 255, 0.4) inset;
}

.price-add-to-cart .btn-fresh-red-Cta:hover{
    background:white;
    color:  var(--button-color);
    border: 1px solid var(--border-color);
}

.weight-category{
    font-weight: 300;
    color: #626566;
    font-size: 14px;
}

.description{
    font-size: 14px;
    color: #9da0a2;
    font-weight: 300;
}

h5 strike{
    color: #9da0a2;
    font-size: 14px;
    margin-right: 10px;
}

.quantity-select div p{

margin-bottom: 0;

font-size: 18px;

font-weight: 500;

color: #9da0a2;
}

.quantity-select{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0px;
}

.inc-dec{
    display: flex;
    align-items: center;
    border: 1px solid #dfdadb;
    border-radius:8px
}

.inc-dec span{
    /* border: 1px solid grey; */
    padding: 12px 18px;

}

.inc-dec span:nth-child(2){
    border: 1px solid #dfdadb;
    border-top:0px;
    border-bottom:0px;
    width: 100px;
    text-align: center;
}



.inc-dec span:nth-child(1) , .inc-dec span:nth-child(3){
    cursor: pointer;
    font-size: 18px;
}




/* recommended-products */


.recommended-products{
    background-color: #fffafa;
    padding: 36px 120px;
}

/* .best-sellers{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
    background: #ffffff00;
} */



.recommended-products-header{
    margin-top: 16px;
}

.recommended-products-header h2 , 
.recommended-products-header p{
    background: #fffafa;
} 

.best-sellers .item , .item img{
    background-color: white;
    border-radius: 12px;
}




.quantity-control span , .quantity-control div{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f4efef;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
}

.quantity-control div:first-child{
    border-radius: 6px 0 0 6px;
}

.quantity-control div:last-child{
    border-radius: 0 6px 6px 0;
}    

.best-sellers{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.already-added{
    background-color: #ffffff;
    padding: 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {

    .price-add-to-cart{
        /* border-top: 1px solid #eee4e4; */
        /* position: fixed; */
        width: 100%;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        background-color: white;
        /* padding: 20px; */
        z-index: 100;
    }

    .price-add-to-cart h5{
        margin-bottom: 0;
        /* color: white; */
    }

    .product-details-right{
        padding: 20px 0px;
    }
    

    strike{
        color:grey;
        font-size:12px;
    }

    .product-details {
        flex-direction: column;
    }
    .product-details-left, .product-details-right {
        width: 100%;
    }

    .product-details-contianer {
        padding: 20px 0px;
    }
    .recommended-products {
        background-color: #fffafa;
        padding: 36px 0px;
    }
    .best-sellers {
        display: flex;
        width: 100%;
        gap: 10px;
        margin-bottom: 72px;
    }

    .price-add-to-cart .btn-danger {
    width: 100%;
    padding: 14px;
    }
    .item a {
        width: 250px;
        height: 330px;
    }
    .item a span {
        font-size: 14px;
        color: #9da0a2;
    }
}