/**
 * WhatsApp WooCommerce Button — Frontend Styles
 *
 * Dynamic styles (colors, font, spacing) are injected via wp_add_inline_style()
 * from the saved admin settings. This file only defines structural / transition rules.
 */

.waw-button {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.4;
	text-align: center;
	border: none;
	box-sizing: border-box;
	transition: background-color 0.25s ease, opacity 0.25s ease;
	/* Structural fallback — colors are overridden by inline CSS from settings */
	background-color: #25D366;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	padding: 12px 24px;
}

.waw-button:hover,
.waw-button:focus {
	background-color: #128C7E;
	color: #ffffff;
	opacity: 0.95;
	text-decoration: none;
	outline: none;
}

.waw-button:focus-visible {
	outline: 3px solid #25D366;
	outline-offset: 3px;
}
