/* lakasg-product-share.css — Product Share Buttons widget */

.lakasg-share-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

/* Full-width stretch: each button fills equal space */
.lakasg-share-wrap.is-stretch .lakasg-share-btn {
	flex: 1 1 0;
	justify-content: center;
}

.lakasg-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background-color 250ms ease, color 250ms ease,
	            border-color 250ms ease, box-shadow 250ms ease,
	            border-radius 250ms ease;
	white-space: nowrap;
	box-sizing: border-box;
}

.lakasg-share-btn:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 2px;
}

/* WhatsApp defaults */
.lakasg-share-btn--wa {
	background-color: #25D366;
	color: #ffffff;
}
.lakasg-share-btn--wa:hover {
	background-color: #1ebe57;
	color: #ffffff;
}

/* Email defaults */
.lakasg-share-btn--email {
	background-color: #1a1a1a;
	color: #ffffff;
}
.lakasg-share-btn--email:hover {
	background-color: #333333;
	color: #ffffff;
}

/* Icon */
.lakasg-share-icon {
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* ── Responsive defaults ────────────────────────────────────────────────── */
@media ( max-width: 767px ) {
	/* On mobile, stacked by default via the Elementor responsive control.
	   When stacked, buttons should be full-width naturally. */
	.lakasg-share-wrap[style*="flex-direction: column"] .lakasg-share-btn,
	.lakasg-share-wrap[style*="flex-direction:column"] .lakasg-share-btn {
		width: 100%;
		justify-content: center;
	}
}
