.category-item-animation {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1;
}


.category-item-animation:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}



.telegram-button {
    position: fixed;
    bottom: 180px;
    right: 25px;
    z-index: 9999;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #0088cc;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-image: url('../img/tg-ico.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

}

.telegram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.35);
}