/* Carrier Transit Time Helper */

/*
 * Hidden per-rate marker span that stores transit days.
 * JS reads this value and renders a single summary line beneath the list.
 */
.ctth-transit-days-meta {
	display: none !important;
}

/* The requested UI: one line beneath .woocommerce-shipping-methods */
.woocommerce-shipping-methods + .ctth-estimated-delivery {
	display: flex;
	align-items: center;
	margin-top: 6px;
	line-height: 1.2;
	font-size: 12px;
	color: #000;
	font-weight: 600;
}

/* Calendar icon placed left of the Estimated Delivery text */
.ctth-estimated-delivery::before {
	content: '';
	width: 14px;
	height: 14px;
	background: url('calendar.png') center center / contain no-repeat;
	margin-right: 4px;
	flex: 0 0 auto;
}

/* Debug output (admin-only when enabled) */
.woocommerce-shipping-methods .ctth-debug,
.woocommerce-shipping-methods + .ctth-debug {
	display: block;
	margin-top: 6px;
	line-height: 1.2;
}

.woocommerce-shipping-methods .ctth-debug small {
	display: block;
	font-size: 11px;
	color: #000;
	opacity: 0.7;
}
