@charset "UTF-8";

.product-grid {
	display: grid;
	gap: 30px;
}

.grid-col-1 {
	grid-template-columns: repeat(1, 1fr);
}

.grid-col-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-col-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-col-5 {
	grid-template-columns: repeat(5, 1fr);
}

.grid-col-6 {
	grid-template-columns: repeat(6, 1fr);
}

.product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.product-image {
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin-bottom: 8px;
	aspect-ratio: 4/3;
}

.product-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin-bottom: 0.5rem;
	border-radius: inherit;
	max-width: 18.75rem;
}

.product-name {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 5px;
	text-align: center;
}

.product-price {
	font-size: 12px;
	font-weight: 700;
	color: #344ea3;
	margin-bottom: 15px;
}

.add-to-cart {
	background-color: #344ea3;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 9px 20px;
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
	width: 133px;
	height: 31px;
	transition: background-color 0.3s;
	text-wrap: nowrap;
}

.flex-center-column {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.navClassi .title {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #333333;
	margin-bottom: 1.25rem;
}

.navClassi .desc {
	align-items: bottom; font-size : 1.5rem;
	font-weight: 700;
	color: #344ea3;
	margin-bottom: 20px;
	font-size: 1.5rem;
}