.msw-order-lookup {
	--msw-lookup-border: #e5e7eb;
	--msw-lookup-muted: #6b7280;
	--msw-lookup-text: #111827;
	--msw-lookup-badge-bg: #f3f4f6;
	--msw-lookup-badge-text: #374151;
	--msw-lookup-link: #2563eb;
	--msw-lookup-link-hover: #1d4ed8;
	--msw-lookup-error: #b91c1c;
	--msw-lookup-empty: #6b7280;
}

.msw-order-lookup__card {
	background: #fff;
	border: 1px solid var(--msw-lookup-border);
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	padding: 24px;
}

.msw-order-lookup__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 16px;
	padding: 10px 0;
	border-bottom: 1px solid var(--msw-lookup-border);
}

.msw-order-lookup__row:first-child {
	padding-top: 0;
}

.msw-order-lookup__row--status {
	border-bottom: none;
	padding-bottom: 0;
}

.msw-order-lookup__label {
	color: var(--msw-lookup-muted);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.msw-order-lookup__value {
	color: var(--msw-lookup-text);
	font-size: 0.9375rem;
	font-weight: 600;
}

.msw-order-lookup__status {
	display: inline-block;
	background: var(--msw-lookup-badge-bg);
	border-radius: 999px;
	color: var(--msw-lookup-badge-text);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 6px 12px;
}

.msw-order-lookup__section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--msw-lookup-border);
}

.msw-order-lookup__section-title {
	color: var(--msw-lookup-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.msw-order-lookup__items,
.msw-order-lookup__tracking {
	list-style: none;
	margin: 0;
	padding: 0;
}

.msw-order-lookup__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
}

.msw-order-lookup__item + .msw-order-lookup__item {
	border-top: 1px solid var(--msw-lookup-border);
}

.msw-order-lookup__item-name {
	color: var(--msw-lookup-text);
	flex: 1;
	font-size: 0.9375rem;
}

.msw-order-lookup__item-qty {
	color: var(--msw-lookup-muted);
	font-size: 0.875rem;
	white-space: nowrap;
}

.msw-order-lookup__tracking-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	padding: 8px 0;
}

.msw-order-lookup__tracking-item + .msw-order-lookup__tracking-item {
	border-top: 1px solid var(--msw-lookup-border);
}

.msw-order-lookup__tracking-link {
	color: var(--msw-lookup-link);
	font-weight: 600;
	text-decoration: none;
}

.msw-order-lookup__tracking-link:hover {
	color: var(--msw-lookup-link-hover);
	text-decoration: underline;
}

.msw-order-lookup__tracking-carrier {
	color: var(--msw-lookup-muted);
	font-size: 0.8125rem;
}

.msw-order-lookup__message {
	margin: 0;
	padding: 16px 0;
}

.msw-order-lookup__message--empty {
	color: var(--msw-lookup-empty);
}

.msw-order-lookup__message--error {
	color: var(--msw-lookup-error);
}
