.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-product-grid > .product-card { height: 100%; }

@media (max-width: 991px) {
    .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

@media (max-width: 575px) {
    .home-product-grid { gap: 11px; }
    .home-product-grid .product-card { min-height: 318px; border-radius: 17px; }
    .home-product-grid .product-card .product-card__image { height: 142px; padding: 12px; }
    .home-product-grid .product-card .product-card__content { padding: 12px 9px 13px; }
    .home-product-grid .product-card .product-card__title { min-height: 39px; font-size: .81rem; line-height: 1.25; }
    .home-product-grid .product-card .product-card__price h6 { font-size: 1rem; }
    .home-product-grid .product-card__add { min-height: 37px; padding: 8px 6px; font-size: .69rem; gap: 5px; }
    .home-product-grid .product-card__add img { width: 15px; }
    .home-product-grid .stock-status { font-size: .65rem; }
}
