/*
 * Shipping Policy — Speed Table + Policy Accordion
 * Depends on: design-tokens.css, log-sp-journey.css
 * Page: body.log-shipping-page
 */

/* ── Speed Comparison Table ── */
.table-scroll { overflow-x: auto; margin-top: 28px; }

.speed-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 560px;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
}

.speed-table th,
.speed-table td {
	padding: 16px 18px;
	text-align: left;
	font-size: 13.5px;
	border-bottom: 1px solid var(--line);
}

.speed-table tr:last-child td { border-bottom: none; }

.speed-table thead th {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gray-600);
	background: var(--paper-50);
	border-bottom: 1px solid var(--line);
}

.speed-table th.row-label-head { background: var(--white); }
.speed-table td.row-label { font-weight: 700; color: var(--ink-900); background: var(--paper-50); }
.speed-table th.col-featured, .speed-table td.col-featured { background: var(--blush-100); }

.speed-table .feat-badge {
	background: var(--plum-700);
	color: #fff;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: var(--r-pill, 999px);
}

.icon-check { width: 16px; height: 16px; color: var(--sage-600); }
.price-cell { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--plum-700); }

/* ── Policy Details Accordion ── */
.acc-wrap { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

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

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

.acc-q-left { display: flex; align-items: center; gap: 14px; }

.acc-icon {
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: var(--blush-100);
	color: var(--plum-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.acc-icon .icon { width: 17px; height: 17px; }

.q-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .3s var(--ease), background .3s var(--ease);
}

.q-toggle .icon { width: 13px; height: 13px; }

.faq-item.open .q-toggle,
.acc-item.open .q-toggle { transform: rotate(45deg); background: var(--sage-500); color: #fff; }

.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a-inner { padding: 0 22px 22px 74px; }

.acc-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }

.acc-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ink-700);
}

.acc-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sage-600);
	flex-shrink: 0;
	margin-top: 7px;
}
