/**
 * ATL WhatsApp Marketing — Frontend Styles
 */

.atl-wm-floating-button {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	z-index: 99999;
	transition: transform 0.2s ease;
}

.atl-wm-floating-button:hover {
	transform: scale(1.08);
	color: #fff;
}

.atl-wm-subscribe-form {
	max-width: 420px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 20px;
}

.atl-wm-subscribe-title {
	margin: 0 0 14px;
	font-size: 16px;
}

.atl-wm-field-row {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
}

.atl-wm-field-row input {
	flex: 1;
	padding: 9px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 13px;
}

.atl-wm-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 14px;
}

.atl-wm-form-message {
	font-size: 12px;
	margin-top: 10px;
}

@media (max-width: 480px) {
	.atl-wm-field-row {
		flex-direction: column;
	}
}
