/* Product Extractor & Importer — affiliate display.
 * Inherits the theme's `.button.alt` colors; adds shape, spacing, and an
 * external-link cue so it reads as an off-site offer. */

.pei-affiliate-wrap {
	margin-top: 1rem;
}

.pei-affiliate-button.button.alt {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-weight: 600;
	letter-spacing: 0.01em;
	padding: 0.85em 1.7em;
	border-radius: 8px;
	text-decoration: none;
	line-height: 1.2;
	transition: transform 0.08s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.pei-affiliate-button.button.alt::after {
	content: "\2197"; /* ↗ external-link cue */
	font-size: 0.95em;
	opacity: 0.75;
}

.pei-affiliate-button.button.alt:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
	opacity: 0.95;
}

.pei-affiliate-button.button.alt:active {
	transform: translateY(0);
}

.pei-affiliate-note {
	margin: 0.55rem 0 0;
	font-size: 0.85em;
	opacity: 0.7;
}

@media (max-width: 600px) {
	.pei-affiliate-button.button.alt {
		display: flex;
		justify-content: center;
		width: 100%;
	}
}
