/* Style pour les deux types de boutons (ouvert et fermé) */
.claudl-sales-button {
	display: inline-block;
	min-width: 300px;
	padding: 15px 30px;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	margin: 10px 0;
	letter-spacing: 1px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: rgb(206, 10, 121); /* Texte toujours blanc */
}

/* Style pour le bouton en état ouvert (rose) */
.claudl-sales-button.open-button {
	background-color: #D42B78 !important; /* Fond rose avec !important pour forcer le style */
	border: none;
}

.claudl-sales-button.open-button:hover {
	background-color: #B71C62 !important; /* Rose plus foncé au survol */
}

/* Style pour le bouton en état fermé (gris) */
.claudl-sales-button.closed-button {
	background-color: #585858 !important; /* Fond gris avec !important pour forcer le style */
	border: none;
}

.claudl-sales-button.closed-button:hover {
	background-color: #444444 !important; /* Gris plus foncé au survol */
}

/* Animation de clignotement pour le texte uniquement */
@keyframes blink-text {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}

/* Appliquer l'animation uniquement au texte du bouton fermé */
.claudl-sales-button.closed-button span {
	animation: blink-text 1.5s infinite;
	display: inline-block;
}