/* Coupon Countdown – Styles */

.cc-box {
	background: #fff8e1;
	border: 2px solid #f9a825;
	border-radius: 8px;
	padding: 16px 20px;
	margin: 16px 0;
	font-family: inherit;
	line-height: 1.5;
}

.cc-box p {
	margin: 0 0 8px;
}

.cc-box p:last-child {
	margin-bottom: 0;
}

.cc-title {
	font-size: 1.1em;
	font-weight: 700;
	color: #e65100;
}

.cc-text {
	font-size: 1em;
	color: #333;
}

.cc-timer {
	display: inline-block;
	font-weight: 700;
	color: #e65100;
	font-variant-numeric: tabular-nums;
	min-width: 60px;
	text-align: center;
}

.cc-code-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
	flex-wrap: wrap;
}

.cc-code-label {
	font-size: 0.9em;
	color: #555;
}

.cc-code {
	display: inline-block;
	background: #fff;
	border: 2px dashed #f9a825;
	border-radius: 4px;
	padding: 4px 12px;
	font-size: 1.1em;
	font-weight: 700;
	letter-spacing: 2px;
	color: #e65100;
	user-select: all;
}

.cc-hint {
	font-size: 0.82em;
	color: #777;
	margin-top: 8px !important;
}

/* Expired state */
.cc-box--expired {
	background: #f5f5f5;
	border-color: #bdbdbd;
	color: #757575;
}

.cc-box--expired p {
	margin: 0;
}
