/*
 * Shipping Policy — Policy Details + FAQ Accordions
 * Depends on: design-tokens.css, log-sp-speed.css
 * Page: body.log-shipping-page
 */

.acc-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.acc-item,
.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--white);
	overflow: hidden;
	transition: border-color .25s var(--ease);
}

.acc-item:hover,
.faq-item:hover {
	border-color: var(--gold-glass-40);
}

.acc-q,
.faq-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	font-weight: 700;
	font-size: 13.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: 12px;
}

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

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

.q-toggle {
	width: 26px;
	height: 26px;
	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), color .3s var(--ease);
}

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

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

.acc-a,
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ease);
}

.acc-a-inner {
	padding: 0 18px 18px 64px;
}

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

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

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

.faq-a p,
.faq-a ul {
	padding: 0 18px 18px !important;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--gray-600);
	margin: 0;
}