/* =========================================
   WooCommerce WhatsApp Enquiry Button
   wwe-style.css
   ========================================= */

/* Wrapper */
.wwe-wrapper {
	display: inline-block;
	margin: 10px 0;
	width: 100%;
}

/* Base button — icon + text style (like the reference image) */
.wwe-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	line-height: 1;
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
}

.wwe-button:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.wwe-button:active {
	transform: translateY(0);
}

.wwe-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.wwe-label {
	white-space: nowrap;
}

/* ── Style: WhatsApp Green (filled) ──────── */
.wwe-style-whatsapp .wwe-button {
	background: #25D366;
	color: #ffffff;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.wwe-style-whatsapp .wwe-button:hover {
	background: #20c05c;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

/* ── Style: Outline ───────────────────────── */
.wwe-style-outline .wwe-button {
	background: transparent;
	color: #25D366;
	border: 2px solid #25D366;
	box-shadow: none;
}

.wwe-style-outline .wwe-button:hover {
	background: rgba(37, 211, 102, 0.06);
	color: #20c05c;
	border-color: #20c05c;
}

/* ── Style: Minimal link ─────────────────── */
.wwe-style-minimal .wwe-button {
	background: transparent;
	color: #25D366;
	border: none;
	box-shadow: none;
	padding: 0;
	width: auto;
	font-size: .95rem;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wwe-style-minimal .wwe-button:hover {
	color: #20c05c;
	transform: none;
}

/* ── Responsive ───────────────────────────── */
@media ( max-width: 600px ) {
	.wwe-button {
		font-size: .9rem;
		padding: 12px 16px;
	}
}

/* ── Reduced motion ───────────────────────── */
@media ( prefers-reduced-motion: reduce ) {
	.wwe-button {
		transition: none;
	}
}
