.products-grid .product-item {
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 4); /* Adjust the '4' to set the number of columns you want in the grid layout */
    box-sizing: border-box;
    padding: 10px;
}

.hidden-item {
    display: none !important;
}

