.dct-timer {
	box-sizing: border-box;
	width: 100%;
	max-width: 1000px;
	margin: 40px auto;
	padding: 30px;
	background: #f9fdf9;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.dct-timer:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dct-timer *,
.dct-timer *::before,
.dct-timer *::after {
	box-sizing: inherit;
}

.dct-timer__title {
	margin: 0 0 25px;
	color: var(--e-global-color-primary, #2e7d32);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3;
}

.dct-timer__layout {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.dct-timer__countdown {
	display: flex;
	flex: 1 1 60%;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.dct-timer__unit {
	display: flex;
	flex: 1 1 90px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 90px;
	padding: 20px 15px;
	background: var(--e-global-color-primary, #2e7d32);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.dct-timer__unit:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dct-timer__value,
.dct-timer__unit-label,
.dct-timer__date {
	display: block;
}

.dct-timer__value {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
}

.dct-timer__unit-label {
	margin-top: 5px;
	font-size: 0.85rem;
	line-height: 1.4;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.9;
}

.dct-timer__details {
	display: flex;
	flex: 1 1 40%;
	flex-direction: column;
	gap: 20px;
	color: #555;
	text-align: left;
}

.dct-timer__detail-label {
	margin-bottom: 5px;
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
}

.dct-timer__date {
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
}

.dct-timer__description {
	margin-top: 24px;
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
}

.dct-timer__description > :first-child {
	margin-top: 0;
}

.dct-timer__description > :last-child {
	margin-bottom: 0;
}

.dct-elementor-placeholder {
	padding: 20px;
	border: 1px dashed #a7aaad;
	color: #50575e;
	text-align: center;
}

@media (max-width: 767px) {
	.dct-timer {
		margin: 24px auto;
		padding: 24px 20px;
	}

	.dct-timer__layout {
		flex-direction: column;
		align-items: center;
		gap: 25px;
		text-align: center;
	}

	.dct-timer__countdown {
		width: 100%;
		gap: 12px;
	}

	.dct-timer__unit {
		flex: 1 1 45%;
		min-width: 120px;
		max-width: 45%;
		padding: 15px 10px;
	}

	.dct-timer__value {
		font-size: 1.5rem;
	}

	.dct-timer__details {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 479px) {
	.dct-timer__unit {
		flex-basis: 48%;
		min-width: 100px;
		max-width: 48%;
	}

	.dct-timer__value {
		font-size: 1.3rem;
	}
}
