.container,
.product_list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.products-wrapper {
    margin-top: 30px;
    margin-bottom: 60px;
    padding: 0;
    box-sizing: border-box;
}

.products-wrapper .product-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}

.products-wrapper li.product-card {
	width: calc((100% - 40px) / 3);
	flex-direction: column;
	align-items: center;
	text-align: center;
	list-style: none;
	box-sizing: border-box;
}

.products-wrapper li.product-card img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.products-wrapper li.product-card .card__text {
    background-color: #f3f3f3;
    padding: 1.3rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-wrapper li.product-card a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
}

@media (max-width: 768px) {
    .products-wrapper .product-container {
        padding: 0 10px;
        gap: 10px;
    }
	.products-wrapper li.product-card {
		width: calc((100% - 10px) / 2);
	}
}