.h2h-sp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 15, 10, 0.72);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 16px;
	box-sizing: border-box;
}

.h2h-sp-overlay.h2h-sp-visible {
	display: flex;
}

.h2h-sp-modal {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 720px;
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	padding: 20px 20px 28px;
	box-sizing: border-box;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	text-align: center;
	animation: h2h-sp-pop 0.25s ease-out;
}

@keyframes h2h-sp-pop {
	from { transform: scale(0.94); opacity: 0; }
	to   { transform: scale(1); opacity: 1; }
}

.h2h-sp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	color: #333;
	cursor: pointer;
	padding: 4px 8px;
}

.h2h-sp-close:hover {
	color: #a5222d;
}

.h2h-sp-title {
	margin: 4px 0 12px;
	font-size: 22px;
}

.h2h-sp-banner {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	margin: 0 auto 18px;
}

.h2h-sp-countdown {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 18px;
}

.h2h-sp-countdown-unit {
	background: #1a1a1a;
	color: #fff;
	border-radius: 8px;
	min-width: 62px;
	padding: 8px 6px;
}

.h2h-sp-num {
	display: block;
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
}

.h2h-sp-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.8;
	margin-top: 4px;
}

.h2h-sp-cta {
	display: inline-block;
	background: #a5222d;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 18px;
	padding: 14px 32px;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.h2h-sp-cta:hover {
	background: #841b24;
	color: #fff;
}

@media (max-width: 480px) {
	.h2h-sp-countdown {
		gap: 8px;
	}
	.h2h-sp-countdown-unit {
		min-width: 52px;
		padding: 6px 4px;
	}
	.h2h-sp-num {
		font-size: 20px;
	}
	.h2h-sp-cta {
		width: 100%;
		box-sizing: border-box;
	}
}

/* ---------------------------------------------------------
   Minimized badge — shown top-left after the full popup
   has been closed once. Persists across pages until the
   sale ends or the visitor closes the badge itself.
   --------------------------------------------------------- */

.h2h-sp-mini {
	position: fixed;
	top: 90px;
	left: 16px;
	z-index: 999998;
	display: none;
	background: #1a1a1a;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	animation: h2h-sp-slide-in 0.25s ease-out;
	max-width: 200px;
}

.h2h-sp-mini.h2h-sp-mini-visible {
	display: block;
}

@keyframes h2h-sp-slide-in {
	from { transform: translateX(-16px); opacity: 0; }
	to   { transform: translateX(0); opacity: 1; }
}

.h2h-sp-mini-close {
	position: absolute;
	top: 2px;
	right: 4px;
	background: none;
	border: none;
	color: #ccc;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 6px;
	z-index: 1;
}

.h2h-sp-mini-close:hover {
	color: #fff;
}

.h2h-sp-mini-link {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 10px 22px 10px 12px;
}

.h2h-sp-mini-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ff6b6b;
	margin-bottom: 3px;
}

.h2h-sp-mini-countdown {
	display: block;
	font-size: 15px;
	font-weight: 900;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 6px;
}

.h2h-sp-mini-cta {
	display: block;
	background: #a5222d;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	padding: 6px 8px;
	border-radius: 6px;
}

.h2h-sp-mini-link:hover .h2h-sp-mini-cta {
	background: #841b24;
}

@media (max-width: 480px) {
	.h2h-sp-mini {
		top: auto;
		bottom: 16px;
		left: 16px;
		right: 16px;
		max-width: none;
	}
	.h2h-sp-mini-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 10px 30px 10px 12px;
	}
	.h2h-sp-mini-label,
	.h2h-sp-mini-countdown,
	.h2h-sp-mini-cta {
		margin: 0;
	}
}
