/*
 * Shipping Policy — Tracking Steps + FAQ Accordion
 * Depends on: design-tokens.css, log-sp-sections.css
 * Page: body.log-shipping-page
 */

/* ── Tracking Steps (horizontal) ── */
.tracksteps-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 56px;
	position: relative;
	gap: 14px;
}

.trackstep {
	flex: 1;
	text-align: center;
	position: relative;
}

.trackstep-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	border: 2px solid rgba(255, 255, 255, .16);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 22px;
	color: #fff;
	margin: 0 auto 18px;
	position: relative;
	z-index: 2;
	transition: all .45s var(--ease);
}

.trackstep.active .trackstep-circle {
	background: var(--sage-500);
	border-color: var(--sage-400);
	color: var(--plum-950);
	box-shadow: 0 0 0 8px rgba(155, 185, 138, .14);
}

.trackstep h5 {
	font-size: 14.5px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.trackstep p {
	font-size: 12.5px;
	line-height: 1.65;
	color: #d6c4cd;
	max-width: 220px;
	margin: 0 auto;
}

.trackline {
	position: absolute;
	top: 32px;
	left: 9%;
	right: 9%;
	height: 2px;
	background: rgba(255, 255, 255, .12);
	z-index: 1;
}

.trackline-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--sage-400), var(--sage-600));
	transition: width 1.6s var(--ease);
}

.track-demo {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 26px auto 0;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--r-pill, 999px);
	padding: 6px 6px 6px 20px;
	align-items: center;
}

.track-demo input {
	flex: 1;
	background: none;
	border: none;
	color: #fff;
	font-size: 13.5px;
	padding: 8px 0;
	outline: none;
	font-family: inherit;
}

.track-demo input::placeholder {
	color: #bda3ad;
}

.track-demo button {
	background: var(--sage-500);
	color: var(--plum-950);
	font-weight: 700;
	font-size: 12.5px;
	padding: 11px 20px;
	border-radius: var(--r-pill, 999px);
	transition: background .25s var(--ease);
	white-space: nowrap;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.track-demo button:hover {
	background: var(--sage-400);
}

/* ── FAQ Accordion ── */
.faq-wrap {
	max-width: 760px;
	margin: 46px auto 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--white);
	overflow: hidden;
}

.faq-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 22px;
	font-weight: 700;
	font-size: 14.5px;
	text-align: left;
	color: var(--ink-900);
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	gap: 14px;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ease);
	font-size: 13px;
	padding: 0px 22px;
}

.faq-a p {
	padding: 0 22px 20px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--gray-600);
	margin: 0;
}