*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media only screen and (max-width: 850px) 
{
    /* pro cat start */
    .product-categories {
        height: 70vh;
        margin-bottom: 50px;
    }

    .product-categories h1 {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;

        font-size: 22px;
    }

    .product-categories .pcats {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 50px;
        padding-right: 50px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #cat-prev {
        width: 118px;
        height: 22px;
        padding: 20px;
    }

    #cat-next {
        width: 118px;
        height: 22px;
        padding: 20px;
    }

    /* pro cat end */

    /* pros */

    .pro-heading h1{

        font-size: 22px;
    }

    .product {
        /* border: 1px solid red; */
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px 20px;
        margin-bottom: 100px;
    }

    .product .image {
        width: 100%;
        height: 100%;
        
        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;

        margin-bottom: 60px;
    }

    .product .image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pic-right {
        right: auto;
    }

    .product .details {
        width: 100%;
        height: 85%;
        /* border: 1px solid blue; */
    }

    .product .details .heading {
        color: #0b4f0b;
        margin-bottom: 15px;

        font-size: 22px;
        /* text-align: center; */
    }

    .load-more {
        width: 100%;
        height: 6vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
        margin-bottom: 150px;
    }

    /* floating box */

    #main-floating-window #floating-box .close-icon {
        position: absolute;
        top: 10px;
        right: 20px;
        color: rgb(164, 164, 164);
        font-size: 35px;
        cursor: pointer;
    }

    #main-floating-window #floating-box h1 {
        width: 93%;

        text-align: left;
        margin-bottom: 20px;

        font-size: 22px;
    }

    #main-floating-window #floating-box #paragraphs {
        width: 100%;
        height: 75%;
    }

    #main-floating-window #floating-box #paragraphs p{
        font-size: 12px;
    }

    #main-floating-window #floating-box #btn {
        position: absolute;
        bottom: 40px;
        right: auto;
        left: 50%;


        transform: translate(-50%);
        /* border: 1px solid red; */
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}