/**
 * SFS Commerce OS — the "Delivery and return policies" box (under Add
 * to Cart) and the "Shipping & Returns" tab content on the WooCommerce
 * single-product page. Deliberately theme-neutral (not the admin
 * dashboard design system) since this renders inside whatever
 * storefront theme the store uses.
 */

.sfs-delivery-box {
	margin: 20px 0;
	padding: 18px 20px;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	background: #fff;
}

.sfs-delivery-box-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #222;
}

.sfs-delivery-box-list {
	list-style: none;
	margin: 0;
	padding: 0;
	/* Matches the theme's own variation-label typography, see
	   product-highlights-frontend.css's identical comment. */
	font-family: "Libre Caslon Text", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #333;
}

.sfs-delivery-box-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid #f0f0f0;
	line-height: 1.4;
}

.sfs-delivery-box-list li:first-child {
	border-top: none;
	padding-top: 0;
}

.sfs-delivery-box-list li:last-child {
	padding-bottom: 0;
}

.sfs-delivery-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f4f4f4;
	color: #555;
}

.sfs-delivery-icon svg {
	width: 17px;
	height: 17px;
}
