/*
 * Promo tease + unlock popups on the cart page.
 *
 * Sits in the bottom-right by default, slides up on show. Non-modal — doesn't
 * block the cart, just nudges. Auto-dismisses after 6s OR on close click.
 */

.iow-promo-popup {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	max-width: 360px;
	padding: 1rem 1.25rem;
	background: hsl(220 25% 10%);
	color: hsl(210 15% 95%);
	border-radius: 12px;
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
	z-index: 9999;
	transform: translateY(110%);
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	line-height: 1.5;
}
.iow-promo-popup.is-visible {
	transform: translateY(0);
}
.iow-promo-popup-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
}
.iow-promo-popup-body {
	margin: 0 0 0.5rem;
	color: hsl(220 10% 70%);
}
.iow-promo-popup-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: none;
	border: none;
	color: hsl(220 10% 70%);
	font-size: 1.25rem;
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
}
.iow-promo-popup-close:hover {
	color: hsl(210 15% 95%);
}

/* Unlocked variant: green accent for the "yay free items" moment */
.iow-promo-popup.is-unlocked {
	background: hsl(142 35% 16%);
	border: 1px solid hsl(142 50% 30%);
}
.iow-promo-popup.is-unlocked .iow-promo-popup-title {
	color: hsl(142 50% 80%);
}

@media (max-width: 480px) {
	.iow-promo-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iow-promo-popup {
		transition: none;
	}
}
