.wc-cat-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.wc-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.wc-cat-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    display: grid;
    place-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    transition: transform .15s, box-shadow .15s;
}

.wc-cat-thumb img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.wc-cat-card:hover .wc-cat-thumb {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.wc-cat-title {
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}
