/* =========================================================
   BLISS COUNTDOWN — COMPACT BUT SLIGHTLY LARGER
   (No positioning, independent block)
   ========================================================= */
.hero-counter {
	max-width: 270px !important;
}

.bliss-countdown {
	text-align: center;
	color: #fff;
}

.bliss-countdown {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;

	text-align: center;
	color: #fff;

	background: rgba(0, 0, 0, 0.85);
	padding: 10px 12px;
	border-radius: 10px;
	backdrop-filter: blur(4px);
}


/* Label */
.bliss-countdown-label {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin-bottom: 5px;
}

/* Timer grid */
.bliss-countdown-timer {
	display: grid;
	grid-template-columns: repeat(4, minmax(46px, auto));
	gap: 7px;
	justify-content: center;
	align-items: center;
}

/* Individual units */
.bliss-unit {
	border: 1px solid rgb(131, 131, 131);
	border-radius: 7px;
	padding: 5px 5px;
	min-width: 46px;
}

/* Numbers */
.bliss-unit strong {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 2px;
}

/* Labels (Days, Hours, etc.) */
.bliss-unit span {
	display: block;
	font-size: 10px;
	opacity: 0.7;
}

/* -------------------------
   MOBILE — SLIGHTLY TIGHTER
   ------------------------- */
@media (max-width: 600px) {


	.hero-counter {
		margin-top: 110px  !important;
	}

	.bliss-countdown-label {
		font-size: 11px;
		margin-bottom: 4px;
	}

	.bliss-countdown-timer {
		grid-template-columns: repeat(4, minmax(40px, auto));
		gap: 5px;
	}

	.bliss-unit {
		padding: 4px 4px;
		border-radius: 6px;
		min-width: 40px;
	}

	.bliss-unit strong {
		font-size: 14px;
	}

	.bliss-unit span {
		font-size: 9px;
	}
}
