/* Скрываем седьмую карточку продукта */
.products-grid .product-card:nth-child(7) {
    display: none !important;
}

/* Принудительно устанавливаем grid-template-columns для корректного отображения */
.products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
