body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F2F7FD;
}
.heading-container{
    background-color: #F2F7FD;
    width: 100%;
}
.heading-container h1{
    text-align: center;
    padding: 2% 0;
    margin: 0;
}
.product-appearence{
    display: flex;
}
.product-categories{
    background-color: white;
    width: 25%;
    padding:2%;
    margin: 0 0 5% 3%;
    border-radius: 10px;
    height: fit-content;
}
.product-categories li{
    list-style: none;
    margin: 0 0 5% 0;
    padding: 5%;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
    border: 2px solid #F2F7FD;
    transition: 0.3s;
    font-weight: 500;
}
.product-categories li:hover{
    background-color: cyan;
    border: 2px solid cyan;
    cursor: pointer;
    scale: 1.05;
    box-shadow: 5px 5px 5px gray;
}
.products-container{
    width: 75%;
    columns: 3;
    padding: 0 2%;
}
.product{
    width: 100%;
    margin: 0 0 5% 0;
    background-color: white;
    break-inside: avoid;
    padding: 5%;
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
    display: none ;
}
.product .image-container{
    overflow: hidden;
}
.product:hover{
    scale: 1.01;
    box-shadow: 5px 5px 5px gray;
}
.product:hover .image-container img{
    scale: 1;
}
.product .image-container img{
    width: 100%;
    height: auto;
    transition: 0.3s;
    scale: 0.9;
}
.product p{
    font-weight: bold;
    margin: 0;
}

/* --------------------------------------sample products ----------------------------- */
#product{
    width: 100%;
    margin: 0 0 5% 0;
    background-color: white;
    break-inside: avoid;
    padding: 5%;
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
    display: none ;
}
#product .image-container{
    overflow: hidden;
}
#product:hover{
    scale: 1.01;
    box-shadow: 5px 5px 5px gray;
}
#product:hover img{
    scale: 1;
}
#product img{
    width: 100%;
    height: auto;
    transition: 0.3s;
    scale: 0.9;
}
#product p{
    font-weight: bold;
    margin: 0;
}
.mobile-container{
    display: none;
}


@media (max-width: 767px){
    .desktop-container{
        display: none;
    }
    .mobile-view-container{
        padding: 5%;
    }
    .mobile-container{
        display: block;
    }
    .mobile-container h1{
        text-align: center;
        background-color: cyan;
        padding: 5%;
        font-weight: bold;
    }
    #product{
        display: block;
    }
    .mobile-view-container{
        columns: 2;

    }
    .product{
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1024px){
    .product-appearence{
        display: flex;
        flex-direction: row-reverse;
    }
    .mobile-container{
        display: none;
    }
    .mobile-container h1{
        text-align: center;
        background-color: cyan;
        padding: 5%;
        font-weight: bold;
    }
    #product{
        display: block;
    }
    .mobile-view-container{
        columns: 2;
    }
    .product{
        width: 100%;
    }
}