/*
 * Shipping Policy — Order Journey Timeline
 * Depends on: design-tokens.css, log-sp-quickfacts.css
 * Page: body.log-shipping-page
 */

.doc-dark-panel {
	background: linear-gradient(160deg, var(--plum-950), var(--plum-900));
	border-radius: var(--r-lg);
	padding: 26px 26px 20px;
	color: #fff;
}

.journey-rail { position: relative; max-width: 760px; margin: 0 auto; }

.journey-line-track {
	position: absolute;
	left: 11px;
	top: 4px;
	bottom: 4px;
	width: 2px;
	background: rgba(255, 255, 255, .12);
}

.journey-line-fill {
	position: absolute;
	left: 11px;
	top: 4px;
	width: 2px;
	height: 0%;
	background: linear-gradient(180deg, var(--sage-400), var(--sage-600));
	transition: height 1.1s var(--ease);
}

.journey-step { position: relative; padding-left: 42px; padding-bottom: 22px; }
.journey-step:last-child { padding-bottom: 2px; }

.journey-dot {
	position: absolute;
	left: 0;
	top: 1px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: var(--plum-800);
	border: 2px solid rgba(255, 255, 255, .22);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 2;
	transition: all .4s var(--ease);
}

.journey-dot .icon { width: 10px; height: 10px; opacity: 0; transition: opacity .3s var(--ease); }

.journey-step.active .journey-dot {
	background: var(--gold-500);
	border-color: var(--gold-400);
	box-shadow: 0 0 0 5px var(--gold-glass-20);
}

.journey-step.active .journey-dot .icon { opacity: 1; color: var(--plum-950); }

.journey-eyebrow {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sage-400);
	margin-bottom: 4px;
}

.journey-step h4 { font-family: var(--display); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.journey-step p { font-size: 12.5px; line-height: 1.55; color: var(--gray-light); max-width: 560px; }

.journey-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .13);
	color: var(--paper);
	padding: 5px 12px;
	border-radius: var(--r-pill);
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.2;
}

.journey-badge .icon { width: 11px; height: 11px; color: var(--sage-400); }
