
.category{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
}
.category-item{
    display: block;
    width: 20%;
    text-decoration: none;
    color: #2d3748;
    cursor: pointer;
    line-height: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.category-item > img{
    height: 2rem;
    width: 2rem;
}
.category-item:hover{
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 476px) {
    .category-item{
        width: 45%;
    }
}

.hot-ico{
    width: 1rem !important;
    height: 1rem !important;
}