/* Commentaire */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	box-sizing: border-box;
}
.container {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 1700px; /* Largeur du container origine : 1200 */
	padding: 20px;
	box-sizing: border-box;
	gap: 20px;
}
.options-panel {
	flex: 1;
	min-width: 300px;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
	color: #333;
	margin-bottom: 20px;
}
.option-group {
	margin-bottom: 20px;
}
.option-group h3 {
	color: #666;
	margin-bottom: 10px;
}
.option-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.option-button {
	position: relative;
	padding: 10px 15px;
	background-color: #e0e0e0;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 14px;
	overflow: hidden; /* Assure que l'élément ne déborde pas */
}
.option-button:hover {
	background-color: #d0d0d0;
}
.option-button.active {
	background-color: #fd0;
	color: white;
}
.option-price {
	position: absolute;
	top: -3px; /* Ajusté pour être plus haut */
	right: 0px; /* Ajusté pour être plus à droite */
	background-color: rgba(255, 255, 255, 0.8); /* Fond légèrement transparent */
	color: #333;
	padding: 2px 5px;
	border-radius: 12px; /* Arrondir davantage pour un effet de badge */
	font-size: 10px;
	font-weight: bold;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	white-space: nowrap; /* Empêche le texte de se diviser en plusieurs lignes */
}
.hidden {
	display: none;
}
.product-view {
	width: 100%;
	max-width: 600px;
	position: sticky;
	height: 400px;
	top: 20px;
}
.product-view img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: none;
}
.product-view img.active {
	display: block;
}
.reference, .total-price {
	margin-top: 10px;
	padding: 10px;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: 94%;
	text-align: center;
}
.total-price {
	background-color: #e0f7fa;
	border: 1px solid #4CAF50;
	font-weight: bold;
}
@media (max-width: 768px) {
	.container {
		flex-direction: column;
		align-items: center;
	}
}
.golden-effect {
	/* Effet or plus équilibré */
	/* filter: sepia(0.6) hue-rotate(5deg) saturate(1.5) brightness(0.9) contrast(1.3); */
	filter: sepia(0.8) hue-rotate(1deg) saturate(1.1) brightness(0.9) contrast(1.3);
}