/* Side-by-side product layout: image 70% / summary 30%.
   !important is needed here because most themes (Astra included) apply
   their own specific width/float rules to these exact same elements. */
.single-product div.images {
	width: 70% !important;
	float: left !important;
	clear: none !important;
}

.single-product div.summary {
	width: 28% !important;
	margin-left: 2% !important;
	float: left !important;
	clear: none !important;
}

@media (max-width: 768px) {
	.single-product div.images,
	.single-product div.summary {
		width: 100% !important;
		float: none !important;
		margin-left: 0 !important;
	}
}

/* Add-ons box */
.wcl-addons-box {
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 16px;
	margin-bottom: 16px;
	background: #fafafa;
}

.wcl-addons-title {
	margin: 0 0 12px;
	font-size: 15px;
}

.wcl-addons-list {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.wcl-addons-item {
	margin-bottom: 8px;
}

.wcl-addons-item label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.wcl-addon-price {
	color: #777;
	font-size: 13px;
}

.wcl-addons-total {
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	border-top: 1px solid #e2e2e2;
	padding-top: 10px;
}
