.block-product-categories {
    margin: 24px 0;
}

.block-product-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 80px);
    justify-content: center;
    gap: 10px;
}

.block-product-categories__item {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0;
    text-decoration: none;
}

.block-product-categories__item-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.block-product-categories__item.theme-color-10 .block-product-categories__item-inner {
    background-color: #ffb3d0;
}

.block-product-categories__item.theme-color-11 .block-product-categories__item-inner {
    background-color: #ff7453;
}

.block-product-categories__item.theme-color-12 .block-product-categories__item-inner {
    background-color: #a3ed00;
}

.block-product-categories__item.theme-color-13 .block-product-categories__item-inner {
    background-color: #ffd23b;
}

.block-product-categories__item.theme-color-14 .block-product-categories__item-inner {
    background-color: #88e8ff;
}

.block-product-categories__item:hover .block-product-categories__item-inner {
    transform: translateY(-2px);
    opacity: 0.92;
}

.block-product-categories__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.block-product-categories__label {
    display: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 767px) {
    .block-product-categories__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

