/* ==========================================================================
   HostingTags — Coupon Countdown Timer
   ========================================================================== */

.ht-countdown {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--ht-gray-600, #4b5563);
	white-space: nowrap;
}

.ht-countdown svg {
	flex-shrink: 0;
}

/* Urgent: less than 24h */
.ht-countdown--urgent {
	color: var(--ht-danger, #dc2626);
	font-weight: 700;
	animation: htCdPulse 1.5s ease-in-out infinite;
}

/* Expired */
.ht-countdown--expired {
	color: var(--ht-gray-400, #9ca3af);
	text-decoration: line-through;
}

/* Block format (large cards) */
.ht-countdown--block {
	display: flex;
	gap: 6px;
	justify-content: center;
}
.ht-cd__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 42px;
	padding: 6px 8px;
	background: var(--ht-gray-50, #f9fafb);
	border: 1px solid var(--ht-gray-200, #e5e7eb);
	border-radius: var(--ht-radius-sm, 6px);
}
.ht-cd__unit b {
	color: var(--ht-heading, #1a1a1a);
	line-height: 1.2;
}
.ht-cd__unit small {
	color: var(--ht-gray-500, #6b7280);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.ht-cd__sep {
	align-self: center;
	color: var(--ht-gray-400, #9ca3af);
	font-weight: 700;
}

.ht-countdown--urgent .ht-cd__unit {
	border-color: var(--ht-danger, #dc2626);
	background: var(--ht-danger-light, #fef2f2);
}

@keyframes htCdPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .7; }
}

@media (max-width: 480px) {
	.ht-cd__unit {
		min-width: 36px;
		padding: 4px 6px;
	}
}
