/**
 * Shipments list in My Account - Modern Bright, brand #26B170
 */

.azs-shipments {
	margin: 32px 0;
	padding: 24px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.azs-shipments--empty {
	background: #fefce8;
	border-color: #fde68a;
}
.azs-shipments--empty p {
	margin: 0;
	color: #78350f;
	font-size: 14px;
}

.azs-shipments__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px 0;
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
}

.azs-shipments__title svg {
	color: #26B170;
}

.azs-shipments__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.azs-shipment {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	flex-wrap: wrap;
}

.azs-shipment__main {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.azs-shipment__carrier {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background: #1e293b;
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.azs-shipment__carrier--inpost { background: #ffcc00; color: #000; }
.azs-shipment__carrier--dpd { background: #dc0032; }
.azs-shipment__carrier--dhl { background: #ffcc00; color: #d40511; }
.azs-shipment__carrier--gls { background: #061ab1; }
.azs-shipment__carrier--pocztex { background: #d40511; }
.azs-shipment__carrier--ups { background: #5a3611; }
.azs-shipment__carrier--unknown { background: #64748b; }

.azs-shipment__number {
	font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	background: #f1f5f9;
	padding: 4px 10px;
	border-radius: 6px;
	user-select: all;
}

.azs-shipment__cod {
	display: inline-flex;
	padding: 2px 8px;
	background: #fef3c7;
	color: #92400e;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
}

.azs-shipment__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	color: #64748b;
}

.azs-shipment__date {
	white-space: nowrap;
}

.azs-shipment__track {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #26B170;
	color: #fff !important;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none !important;
	transition: background 0.15s;
	white-space: nowrap;
}

.azs-shipment__track:hover {
	background: #1f9560;
	color: #fff !important;
}

@media (max-width: 600px) {
	.azs-shipments { padding: 16px; }
	.azs-shipment { padding: 12px; }
	.azs-shipment__meta { width: 100%; justify-content: space-between; }
}
