/**
 * Zira Shipping — Checkout Styles
 *
 * @package Zira_Shipping
 * @since   2.0.0
 */

/* ── Shipping method row ─────────────────────────────────── */
.zira-shipping-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.zira-shipping-logo {
	vertical-align: middle;
	flex-shrink: 0;
}

.zira-shipping-label {
	flex: 1;
}

/* ── Zone badges ─────────────────────────────────────────── */
.zira-badge {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.zira-badge--best {
	background: #008C45;
	color: #fff;
}

.zira-badge--national {
	background: #e9e8e7;
	color: #555;
}

.zira-badge--remote {
	background: #bead9b;
	color: #fff;
}

/* ── City select (Select2 enhancement) ───────────────────── */
.select2-container .select2-selection--single {
	height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
	.zira-shipping-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
