.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* Сетка для подкатегорий внутри группы */
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

/* Плитки */
.square-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.square-tile i {
    flex-shrink: 0;
    margin-bottom: 8px;
}

/* Текст */
.square-tile span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ховер */
.square-tile:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Карточка группы */
.category-card {
    padding: 15px;
    border-radius: 1rem;
    /*border: 1px solid #eee;*/
}

/* Заголовок группы */
.category-title {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Цвета */
.text-pink { color: #e83e8c; }
.text-info { color: #17a2b8; }
.text-warning { color: #ffc107; }
.text-secondary { color: #6c757d; }
.text-primary { color: #007bff; }
.text-dark { color: #343a40; }