/*КАТЕГОРИИ*/

.categories-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
	width: 100%;
}

.category-catalog{
width: 100%;
}



        .category-line{
            display: flex;
            justify-content:space-between;
            align-items: center;
            transition: transform 0.3s ease;
			width: 100%;

        }


.category-popular-box{
    width: 166px;
    height: 166px;
    border: solid 4px var(--colorLightGray);
    transform: rotate(45deg);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    transition: 0.5s;
    flex: 0 0 auto;
}

.category-popular-box img{
    transform: rotate(-45deg);
    height: 70%;
}

.category-popular-box h3{
    transform: rotate(-45deg);
    display: none;
    color: var(--colorRed);
}

.category-popular-box:hover{
    border: solid 4px var(--colorRed);
    cursor: pointer;
}

.category-popular-box:hover h3{
    display: block;
}

.category-popular-box:hover img{
    display: none;
}