.products-container {
	display: flex;
	flex-direction: row !important;
	justify-content: flex-start !important;
	align-items: center;
	flex-wrap: wrap !important;
	gap: 24px;
	direction: rtl;
	min-height: 100vh !important;
}

.collections-nav {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 20px 0;
	direction: rtl;
}

.collections-nav a {
	text-decoration: none;
	color: #333;
	padding-bottom: 5px;
}

.collections-nav a.active {
	border-bottom: 2px solid #000;
}

.product-card {
    width: 31%;
}

.product-card a {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.product-card a img {
	object-fit: cover;
	width: 100%;
	height: 360px;
}

.product-card a div {
	display: flex;
	flex-direction: column;
	color: black;
}

@media (max-width: 900px) {
    .product-card {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .product-card{
        width: 100%;
    }
}