/* ----------- SECTION PRODUITS ----------- */
.products-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.products-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

.products {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.product-card {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: 350px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: transform 0.3s;
	background-color: #fff;
}

.product-card:hover {
	transform: translateY(-5px);
}

.image-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.image-container img.background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.image-container img.product {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: auto;
	object-fit: contain;
	z-index: 2;
}

.product-card .overlay-text {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 15px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	z-index: 3;
}

@media(max-width: 768px) {
	.product-card {
		height: 300px;
	}

	.image-container img.product {
		width: 60%;
	}
}