.myst-categories-nav{
    display:grid;
    grid-template-columns:repeat(9,minmax(0,1fr));
    gap:12px;
    margin:20px 0 30px;
}

.myst-category-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-align:center;
    text-decoration:none;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:14px;
    min-height:110px;
    padding:14px 10px;
    color:#222;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.myst-category-card:not(.active):hover{
    transform:translateY(-2px);
    border-color:#C8A24A;
    color:#C8A24A;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.myst-category-icon{
    width:42px;
    height:42px;
    display:block;
    transition:.25s ease;
}

.myst-category-card span{
    font-size:14px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:-0.2px;
    color:inherit;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* ---------------- IPAD ---------------- */

@media (max-width:1024px){

    .myst-categories-nav{
        grid-template-columns:repeat(3,1fr);
        gap:12px;
    }

    .myst-category-card{
        min-height:95px;
        padding:12px 8px;
        gap:8px;
    }

    .myst-category-icon{
        width:36px;
        height:36px;
    }

    .myst-category-card span{
        font-size:12px;
        line-height:1.2;
    }

}

/* ---------------- MOBILE ---------------- */

@media (max-width:767px){

    .myst-categories-nav{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .myst-category-card{
        min-height:84px;
        padding:8px 5px;
        border-radius:12px;
        gap:5px;
    }

    .myst-category-icon{
        width:28px;
        height:28px;
    }

    .myst-category-card span{
        font-size:10px;
        line-height:1.15;
        font-weight:600;

        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

}

/* ---------------- ACTIVE ---------------- */

.myst-category-card.active{
    background:#C8A24A;
    border-color:#C8A24A;
    color:#fff;
    box-shadow:0 12px 30px rgba(200,162,74,.25);
}

.myst-category-card.active .myst-category-icon{
    filter:brightness(0) invert(1);
}

.myst-category-card.active:hover{
    background:#C8A24A;
    border-color:#C8A24A;
    color:#fff;
    transform:none;
    box-shadow:0 12px 30px rgba(200,162,74,.25);
}

.myst-category-card.active:hover .myst-category-icon{
    filter:brightness(0) invert(1);
}