/*
 * Trust boxes under the buy button — one light rounded box per promise
 * ("Expressfrakt 1–2 dagar · Broderas i Sverige · Skicka som present"),
 * line icon + text, equal widths across the row (v2.14.0 style; toned
 * down in v2.14.1 per Erik: pale green-grey box with hairline border,
 * muted text, 12px / 11px on mobile). Rendered by
 * includes/class-tpux-trust-bullets.php right after the add-to-cart form
 * on every product page. Below 768px only the first two show.
 */
ul.tpux-trust {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin: 14px 0 6px !important;
	padding: 0 !important;
	list-style: none !important;
	color: #66706e;
	font-size: 12px;
	line-height: 1.25;
}

ul.tpux-trust li.tpux-trust__item {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 !important;
	padding: 8px 10px;
	box-sizing: border-box;
	border: 1px solid #f0f3f2;
	border-radius: 8px;
	background: #fafcfb;
	list-style: none !important;
	text-align: center;
	font-weight: 500;
}

/* A lone box (non-personalized products) keeps its natural width and
   sits left instead of stretching across the column. */
ul.tpux-trust li.tpux-trust__item:only-child {
	flex: 0 1 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.tpux-trust__icon {
	display: inline-flex;
	align-items: center;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: #71948e;
}

.tpux-trust__svg {
	display: block;
	width: 16px;
	height: 16px;
}

.tpux-trust__text {
	display: inline-block;
	min-width: 0;
}

.tpux-trust__text a {
	color: inherit;
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	ul.tpux-trust {
		font-size: 12px;
		gap: 8px;
	}
	ul.tpux-trust li.tpux-trust__item {
		padding: 8px 4px;
		min-height: 40px;
		gap: 6px;
	}
	ul.tpux-trust li.tpux-trust__item:nth-child(n + 3) {
		display: none;
	}
}
