/* QuickShipD Delivery Date — Frontend Styles
 * Target: <0.5 KB minified. No !important. Theme-agnostic.
 * Colors are set via inline style="" attributes in PHP so they
 * respect admin settings without extra CSS specificity wars.
 */

.quickshipd-delivery {
	margin: 12px 0;
	font-size: 14px;
	line-height: 1.5;
}

.quickshipd-estimate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}

.quickshipd-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.quickshipd-countdown {
	font-size: 13px;
	margin-top: 3px;
}

.quickshipd-countdown strong {
	font-weight: 700;
}

/* Shop / archive context — compact, no countdown */
.quickshipd-context-shop {
	font-size: 12px;
	margin: 6px 0;
}

.quickshipd-context-shop .quickshipd-countdown {
	display: none;
}

/* Checkout context */
.quickshipd-context-checkout {
	margin: 8px 0;
}

/* Block checkout skeleton — sits inside .wc-block-components-product-details */
.quickshipd-block-skeleton {
	margin-top: 4px;
}

/* Skeleton loader — matches WC's own price placeholder pills */
.quickshipd-checkout-skeleton {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 4px 0;
}

.quickshipd-skel-line {
	display: block;
	border-radius: 3px;
	background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
	background-size: 200% 100%;
	animation: qs-shimmer 1.4s ease-in-out infinite;
}

.quickshipd-skel-line--lg {
	height: 14px;
	width: 140px;
}

.quickshipd-skel-line--sm {
	height: 12px;
	width: 100px;
}

@keyframes qs-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}
