/* Flash Drops — badge */
.wcfd-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	padding: 6px 12px;
	color: #fff;
	background: #2d7188;
	border-radius: 2px;
}
.wcfd-badge--ended {
	background: #9ca3af;
}
/* Card overlay position (parent card image wrapper is position:relative) */
.wcfd-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
}
/* Flash Drops — countdown bar */
.wcfd-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	padding: 12px 16px;
	background: #2d7188;
	color: #fff;
	text-align: center;
}
.wcfd-bar__label {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.wcfd-unit {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	min-width: 44px;
}
.wcfd-unit b {
	font-size: 22px;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}
.wcfd-unit small {
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
}
.wcfd-sep {
	font-size: 18px;
	opacity: 0.6;
}
.wcfd-bar--ended .wcfd-bar__ended {
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
/* Mobile: "Ends in:" on its own row, then the whole timer wraps to the next row */
@media (max-width: 640px) {
	.wcfd-bar {
		gap: 10px;
	}
	.wcfd-bar__label {
		flex-basis: 100%;
	}
	.wcfd-unit {
		min-width: 40px;
	}
}
