/* ---------------------------------------------------------------------- */
/*  Share button + Share modal (single product page)                      */
/*  Notun, alada file — existing style.css/layout ke touch kora hoyni.    */
/* ---------------------------------------------------------------------- */

.spo-single-actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin-top: 4px;
}
.spo-single-actions .spo-order-btn {
	flex: 1;
	width: auto;
	margin-top: 0;
}
.spo-share-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 0;
	padding: 11px 16px;
	white-space: nowrap;
}
.spo-share-btn svg { display: inline-block; vertical-align: -3px; }

.spo-share-title {
	margin: 0 0 14px;
	padding-right: 24px;
	font-size: 16px;
}

.spo-share-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.spo-share-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1.5px solid var(--spo-glass-border, rgba(255,255,255,.55));
	background: var(--spo-glass-bg-strong, rgba(255,255,255,.68));
	color: var(--spo-text, #10172a);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	font-family: inherit;
	transition: box-shadow .15s ease, transform .1s ease, border-color .15s ease;
}
.spo-share-option:hover {
	border-color: var(--spo-neon, #12e8c6);
	box-shadow: 0 0 0 3px var(--spo-neon-glow, rgba(18,232,198,.5));
}
.spo-share-option:active { transform: scale(.97); }
.spo-share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.spo-share-whatsapp .spo-share-icon { color: #25d366; }
.spo-share-messenger .spo-share-icon { color: #0084ff; }
.spo-share-telegram .spo-share-icon { color: #229ed9; }
.spo-share-copy .spo-share-icon { color: var(--spo-muted, #55607a); }

.spo-share-copied {
	margin: 12px 0 0;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--spo-primary-dark, #15803d);
}

@media (max-width: 380px) {
	.spo-share-btn span.spo-share-label { display: none; }
}
