.m-home-product-wrapper .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #f1f1f1;
}

.m-home-product-wrapper .top-bar img {
    width: 65px;
    padding: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.m-home-product-wrapper .top-bar img.selected {
    border-color: #007bff;
}

.m-home-product-wrapper .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.m-home-product-wrapper .product-item {
    text-align: center;
}

.m-home-product-wrapper .product-item img {
    width: 100px;
    height: auto;
}

.m-home-product-wrapper .product-item p {
    word-wrap: break-word;
    margin: 10px 0 0;
}

.m-home-product-wrapper .more-button {
    text-align: center;
    padding: 20px;
}

.m-home-product-wrapper .more-button a {
    display: inline-block;
}

.m-home-product-wrapper .category {
    display: none;
}

.m-home-product-wrapper .category.active {
    display: grid;
}