/* =========================================================
 * LSHOP TARNEKAST
 * ========================================================= */

.lshop-delivery-box {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 0 0 1.3em;
	padding: 14px 16px;
	box-sizing: border-box;
	overflow: hidden;

	background: linear-gradient(135deg, #fffbd5 0%, #fff3ba 100%);
	border: 1px solid #efd46d;
	border-left: 4px solid #e9ad00;
	border-radius: 11px;

	color: #211c0d;
	font-size: 0.95rem;
	line-height: 1.45;

	box-shadow: 0 5px 14px rgba(74, 58, 0, 0.07);
}

.lshop-delivery-box[hidden] {
	display: none !important;
}

/* Veokiikoon */

.lshop-delivery-box .lshop-delivery-box__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;

	flex: 0 0 34px;
	width: 34px;
	height: 34px;

	margin: 0;
	padding: 0;

	background: rgba(233, 173, 0, 0.13);
	border-radius: 50%;

	color: #9a7000;
	line-height: 1;
	box-sizing: border-box;
}

.lshop-delivery-box .lshop-delivery-box__icon svg {
	display: block;
	width: 14px;
	height: 14px;
	margin: 0;
	padding: 0;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Tekstiosa */

.lshop-delivery-box__content {
	flex: 1 1 auto;
	min-width: 0;
}

.lshop-delivery-box__line {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

.lshop-delivery-box__line + .lshop-delivery-box__line {
	margin-top: 2px;
}

/* Taimer */

.lshop-delivery-box__countdown {
	display: inline-block;
	margin: 0 2px;
	padding: 1px 5px;

	background: #fff;
	border: 1px solid rgba(226, 74, 74, 0.2);
	border-radius: 4px;

	color: #e33232;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1.25;
	white-space: nowrap;
}

/* Eritähtajaline teade */

.lshop-delivery-box--special {
	background: linear-gradient(135deg, #fff4c8 0%, #ffe6a8 100%);
	border-color: #e9bd4a;
	border-left-color: #d88a00;
}

.lshop-delivery-box--special .lshop-delivery-box__icon {
	background: rgba(216, 138, 0, 0.14);
	color: #925c00;
}

/* Mobiil */

@media (max-width: 600px) {
	.lshop-delivery-box {
		gap: 11px;
		padding: 12px 13px;
		font-size: 0.9rem;
	}

	.lshop-delivery-box .lshop-delivery-box__icon {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.lshop-delivery-box .lshop-delivery-box__icon svg {
		width: 13px;
		height: 13px;
	}

	.lshop-delivery-box__countdown {
		padding: 1px 4px;
	}
}
