/**
 * Share row sits directly under the buy buttons, so it intentionally
 * stays quiet/neutral (ink-on-cream outline) rather than competing with
 * the green accent reserved for purchase actions.
 */
.mam-share-buttons {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.mam-share-btn {
	border: 1.5px solid rgba( 26, 26, 26, 0.18 ) !important;
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 12.5px;
	font-weight: 600;
	background: transparent;
	cursor: pointer;
	text-decoration: none !important;
	color: #1a1a1a !important;
	transition: border-color 0.12s ease, background-color 0.12s ease;
}

.mam-share-btn:hover {
	border-color: #1a1a1a !important;
	background: rgba( 26, 26, 26, 0.04 );
	color: #1a1a1a !important;
}

.mam-embed-code-box {
	margin-top: 12px;
	max-width: 480px;
}

.mam-embed-code-box textarea {
	width: 100%;
	font-family: ui-monospace, "SF Mono", Consolas, monospace;
	font-size: 12px;
	border: 1.5px solid rgba( 26, 26, 26, 0.12 );
	border-radius: 8px;
	padding: 8px 10px;
	background: #fff;
	color: #1a1a1a;
}

.mam-embed-code-box[hidden] {
	display: none;
}
