/* ============================================================
   AG Shipping Widget — matches House of Europa reference design
   ============================================================ */

.agsw-widget {
	margin: 24px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

/* ----------------------------------------------------------
   Info box
   ---------------------------------------------------------- */

.agsw-info-box {
	background: #f7f7f7;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	padding: 14px 18px;
	margin-bottom: 14px;
}

.agsw-info-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 7px;
}

.agsw-info-row:last-child {
	margin-bottom: 0;
}

/* Emoji icons */
.agsw-icon {
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1;
	width: 20px;
	text-align: center;
}

.agsw-icon-clock::before     { content: '⏰'; }
.agsw-icon-truck::before     { content: '🚚'; }
.agsw-icon-clipboard::before { content: '📋'; }

/* Coloured delivery dates inside info box */
.agsw-del-start,
.agsw-del-end {
	color: #1a3a6c;
}

/* ----------------------------------------------------------
   Timeline
   ---------------------------------------------------------- */

.agsw-timeline {
	display: flex;
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	padding: 22px 12px 20px;
}

/* Each step column */
.agsw-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Circle icon container */
.agsw-step-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #1a1a1a;
	border: 1px solid #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	margin-bottom: 10px;
	flex-shrink: 0;
}

.agsw-step-circle svg {
	width: 22px;
	height: 22px;
}

/* Labels & dates */
.agsw-step-label {
	font-weight: 700;
	font-size: 13px;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.agsw-step-date {
	font-size: 13px;
	color: #444444;
}

.agsw-step-arrow {
	font-size: 11px;
	color: #aaaaaa;
	line-height: 1;
	margin: 2px 0;
}

/* Connecting horizontal line between steps */
.agsw-connector {
	flex: 0 0 auto;
	width: 28px;
	height: 2px;
	background: #dde4ee;
	margin-top: 25px; /* vertically centres with the circles */
	align-self: flex-start;
}

/* ----------------------------------------------------------
   Responsive — narrow screens
   ---------------------------------------------------------- */

@media (max-width: 480px) {
	.agsw-connector {
		width: 14px;
	}

	.agsw-step-circle {
		width: 42px;
		height: 42px;
	}

	.agsw-step-circle svg {
		width: 18px;
		height: 18px;
	}

	.agsw-step-label,
	.agsw-step-date {
		font-size: 12px;
	}

	.agsw-info-box {
		padding: 12px 14px;
	}
}
