/**
 * The "mint patch" ship-by countdown panel — Piddle Patch's own brand
 * styling (colours, Poppins, the asymmetric "patch corner" radius), per the
 * design spec signed off for this store. A different site installing this
 * plugin will want its own look here — see the checkout calendar's CSS
 * (checkout-datepicker.css) for the same reasoning, applied there first.
 *
 * Poppins is assumed already loaded by the theme (it's this brand's body
 * font site-wide) — not @import'd here, to avoid loading it twice.
 */

.shipsched-countdown {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 18px 0;
	padding: 18px 22px;
	background: #E3F7E2; /* --splodge-mint */
	border-radius: 40px 20px 40px 20px; /* the patch corner */
}

.shipsched-countdown-icon {
	flex: none;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.shipsched-countdown-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.shipsched-countdown-line {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.55;
	color: #4C4C4C;
}

.shipsched-countdown-value {
	font-weight: 600;
	color: #FF5F7E; /* piddle pink */
}

.shipsched-countdown-day {
	font-weight: 600;
	color: #4C4C4C;
}

.shipsched-countdown-sub {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #999999;
}

@media ( max-width: 480px ) {
	.shipsched-countdown-icon {
		width: 32px;
		height: 32px;
	}
	.shipsched-countdown-line {
		font-size: 16px;
	}
}
