#page {
    min-height: 100svh;
    position: relative;
    overflow-x: hidden;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
}
#main-content{
    flex: 1;
}
::-webkit-scrollbar {
    width: 0;
}
h1{
    margin-top: 20px;
    margin-bottom: 30px;
    color: #101010;
    font-size: 37px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.cat-flex{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
    justify-content:left;
    padding-bottom: 30px;
}

/* КАРТОЧКИ КАТЕГОРИЙ */

.cat-block{
    background: #FFF;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 20px;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1);
}
.cat-img{
    width: min-content;
    height: -webkit-fill-available;
    max-height: 200px;
    margin-left: auto;
    margin-right: auto;
}
.cat-title{
    font-size: 20px;
    font-weight: 500;
    color: #010101 !important;
    text-align: center;
}
.cat-block:hover .cat-title{color: rgba(0, 91, 255, 1) !important; transition: 0.5s;} 
.cat-block:hover .cat-img{scale: 1.1; transition: 0.6s;}


/* КАРТОЧКИ ТОВАРА */

.product-block{
    background: #FFF;
    width: 300px;
    height: 365px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;

    row-gap: 2px;
    padding: 20px;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1);
}

.product-block img{
    width: min-content;
    height: -webkit-fill-available;
    max-height: 250px;
    margin-left: auto;
    margin-right: auto;
}
.product-title{
    font-size: 17px;
    font-weight: 500;
    color: #010101 !important;
    text-align: left;
    line-height: 25px;
}
.artikul{
    color: #d5bf44 !important;
    font-size: 14px;
}
.riki{
    opacity: 0;
    font-size: 14px;
}
.product-btn{
    width: 100%;
    height: 45px;
    padding: 0;
    border-radius: 8px;
    color: #FFF;
    font-weight: 500;
    background: rgba(0, 91, 255, 1);
}
.product-btn:hover{
    background: rgba(0, 91, 255, .85);
}
.product-block:hover .product-title {color: rgba(0, 91, 255, 1) !important; transition: 0.5s;} 
.product-block:hover img {scale: 1.05; transition: 0.6s;}

@media(max-width: 1369px){
    .cat-flex{justify-content: space-around;}
}