/**
 * Мегаменю категорий для Elementor / шорткода [zverito_category_mega].
 *
 * Базовая сетка и цвета:
 * - родительские категории (верхний уровень) — синие ссылки;
 * - подкатегории — обычные чёрные ссылки.
 */

.zverito-category-mega {
    width: 100%;
}

.zverito-category-mega__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 40px;
}

.zverito-category-mega__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zverito-category-mega__parent {
    font-size: 20px;
    text-transform: capitalize;
    color: #3452EF;
    text-decoration: none;
}

.zverito-category-mega__parent:hover,
.zverito-category-mega__parent:focus {
    text-decoration: underline;
}

.zverito-category-mega__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zverito-category-mega__item + .zverito-category-mega__item {
    margin-top: 4px;
}

.zverito-category-mega__link {
    font-family: "Fredoka", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #242424;
    text-decoration: none;
}

.zverito-category-mega__link:hover,
.zverito-category-mega__link:focus {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .zverito-category-mega__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
    }
}

