/* Styles pour le bouton de devis fixe */
.devis-fixed-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	background-color: #fcc125;
	color: #000;
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	font-weight: bold;
	font-size: 16px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.devis-fixed-button:hover {
	background-color: #e7af1a;
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Version mobile */
@media (max-width: 768px) {
	.devis-fixed-button {
		bottom: 15px;
		right: 15px;
		padding: 12px 20px;
		font-size: 14px;
	}
}

/* Version très petits écrans */
@media (max-width: 480px) {
	.devis-fixed-button {
		bottom: 10px;
		right: 10px;
		padding: 10px 16px;
		font-size: 12px;
	}
}