/* LimageCMS v0.2 — F8 Categories menu */

.site-nav__categories {
    position: static;
    height: 100%;
}

.site-nav__category-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 100%;
    padding: 9px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease;
}

.site-nav__category-toggle:hover,
.site-nav__categories.is-open .site-nav__category-toggle,
.site-nav__categories.is-active .site-nav__category-toggle {
    background: #eef2f7;
    color: var(--text);
}

.site-nav__categories.is-active .site-nav__category-toggle {
    font-weight: 600;
}

.category-mega-menu {
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    right: 0;
    background: #55585b;
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.category-mega-menu[hidden] {
    display: none !important;
}

.category-mega-menu__desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding: 8px 18px 14px;
}

.category-mega-menu__column,
.category-mega-menu__mobile ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-mega-menu__column a {
    display: block;
    padding: 1px 0;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.28;
}

.category-mega-menu__column a:hover {
    color: #fff;
    text-decoration: underline;
}

.category-mega-menu__mobile {
    display: none;
}

@media (max-width: 720px) {
    .site-nav__categories {
        width: 100%;
        height: auto;
    }

    .site-nav__category-toggle {
        display: block;
        width: 100%;
        min-height: 0;
        padding: 10px 12px;
        border-radius: 0;
        text-align: left;
        font-size: 1rem;
    }

    .site-nav__categories.is-active .site-nav__category-toggle {
        background: transparent;
        color: var(--text);
    }

    .site-nav__categories.is-open .site-nav__category-toggle {
        background: #eef2f7;
        color: var(--text);
    }

    .category-mega-menu {
        position: static;
        box-shadow: none;
        background: #55585b;
    }

    .category-mega-menu__desktop {
        display: none;
    }

    .category-mega-menu__mobile {
        display: block;
    }

    .category-mega-menu__mobile a {
        display: block;
        padding: 10px 16px;
        border-top: 1px solid rgba(255, 255, 255, .13);
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        line-height: 1.35;
    }

    .category-mega-menu__mobile a:hover {
        color: #fff;
        background: rgba(255, 255, 255, .06);
    }
}
