/**
 * Price-lock countdown widget styling.
 *
 * Minimal, theme-agnostic styling — we aim to blend into whatever
 * theme the dealer is running. Colors use dark neutrals so the
 * widget stays legible on light and dark checkout templates.
 */

.gc-price-lock-row td {
	background: #f7f7f7;
	border-top: 1px solid #e0e0e0;
}

.gc-price-lock-countdown {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9em;
	gap: 0.5em;
	padding: 0.5em 0;
}

.gc-price-lock-countdown__label {
	color: #555;
}

.gc-price-lock-countdown__timer {
	background: #e8f5e9;
	border-radius: 3px;
	color: #1b5e20;
	font-family: ui-monospace, Menlo, Monaco, Consolas, monospace;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	padding: 0.15em 0.5em;
}

.gc-price-lock-countdown.is-warning .gc-price-lock-countdown__timer {
	background: #fff3e0;
	color: #e65100;
}

.gc-price-lock-countdown.is-expired .gc-price-lock-countdown__timer {
	background: #ffebee;
	color: #b71c1c;
}

.gc-price-lock-countdown.is-expired .gc-price-lock-countdown__expired {
	color: #b71c1c;
}

/**
 * Reconfirmation block: renders above Place Order when the server
 * has flagged the lock as awaiting acknowledgement. Uses a warm
 * border + padding to visually separate it from the rest of the
 * review table.
 */
.gc-price-lock-reconfirm {
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 4px;
	margin: 0.75em 0;
	padding: 0.75em 1em;
}

.gc-price-lock-reconfirm__label {
	align-items: flex-start;
	color: #3e2723;
	cursor: pointer;
	display: flex;
	font-size: 0.95em;
	gap: 0.5em;
	line-height: 1.4;
}

.gc-price-lock-reconfirm__checkbox {
	flex-shrink: 0;
	margin-top: 0.15em;
}

