/* WC Kenya Shipping — Checkout Styles */

/* ── Town/county wrap ─────────────────────────────────────────────────────── */

.wckts-town-wrap {
	margin-bottom: 16px;
}

.wckts-county-select,
.wckts-town-select {
	width: 100%;
}

/* Town field hidden until county is chosen */
#billing_wckts_town_field {
	display: none;
}

/* JS adds wckts-visible to show the town field — needs !important to override
   both our own hide rule and FunnelKit's .wfacp_billing_field_hide !important */
#billing_wckts_town_field.wckts-visible {
	display: block !important;
}

/* FK checkout: keep town field hidden regardless of FK's own field-show logic */
#wfacp-e-form #billing_wckts_town_field,
#wfacp-e-form #billing_wckts_town_field.wckts-visible {
	display: none !important;
}

/* Loading spinner while fetching towns */
#billing_wckts_town_field.wckts-loading label::after {
	content: " ⏳";
}

/* ── Status message lines ─────────────────────────────────────────────────── */

.wckts-carrier-msg,
.wckts-payment-msg {
	display: block;
	font-size: 0.85em;
	margin-top: 4px;
	line-height: 1.4;
	color: #555;
}

/* ── Available / unavailable states ──────────────────────────────────────── */

.wckts-available .wckts-carrier-msg,
.wckts-available .wckts-payment-msg {
	color: #2a7a2a;
}

.wckts-unavailable {
	opacity: 0.65;
}

.wckts-unavailable label {
	color: #888;
}

.wckts-unavailable input[type="radio"] {
	cursor: not-allowed;
}

.wckts-unavailable .wckts-carrier-msg,
.wckts-unavailable .wckts-payment-msg {
	color: #c07000;
}

/* ── Carrier logo ─────────────────────────────────────────────────────────── */

.wckts-carrier-logo {
	max-height: 24px;
	max-width: 60px;
	vertical-align: middle;
	margin-right: 8px;
	object-fit: contain;
}

/* ── COD nudge box ────────────────────────────────────────────────────────── */

.wckts-cod-nudge {
	background: #fff8e1;
	border: 1px solid #f0c040;
	border-left: 4px solid #f0c040;
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 3px;
}

.wckts-cod-nudge[hidden] {
	display: none;
}

.wckts-nudge-text {
	margin: 0 0 10px;
	font-weight: 500;
}

.wckts-switch-btn,
.wckts-online-btn {
	margin-right: 8px;
}

/* ── Shipping option list (WC default overrides) ──────────────────────────── */

#shipping_method li {
	padding: 8px 4px;
}

#shipping_method li.wckts-unavailable {
	background: #fafafa;
	border-radius: 3px;
}

/* ── Payment list ─────────────────────────────────────────────────────────── */

#payment ul.payment_methods li.wckts-unavailable {
	background: #fafafa;
}
