/* London Appliance Services — Cart */

.las-services-panel {
	margin: 12px 0 6px;
}

.las-services-heading {
	font-size: 0.82em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #555;
	margin-bottom: 8px;
}

/* ── Bundle card list ── */
.las-bundle-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.las-bundle-card {
	background: #f5f6f8;
	border: 1.5px solid #dde1ea;
	border-radius: 8px;
	padding: 12px 14px;
	transition: border-color 0.15s, background 0.15s;
	cursor: pointer;
}

.las-bundle-card:hover {
	border-color: #b0b8c8;
}

.las-bundle-card.las-bundle-checked {
	border-color: #1a6e1a;
	background: #f0faf0;
}

.las-bundle-inner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.las-bundle-info {
	flex: 1;
	min-width: 0;
}

.las-bundle-title {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 0.92em;
	color: #1a1a1a;
	margin-bottom: 5px;
}

/* Save badge — red pill like Image 2 */
.las-save-badge {
	display: inline-block;
	background: #c0392b;
	color: #fff;
	font-size: 0.75em;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 20px;
	white-space: nowrap;
}

/* Tick list */
.las-bundle-ticks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.las-bundle-ticks li {
	font-size: 0.85em;
	color: #2e7d32;
	padding-left: 18px;
	position: relative;
	line-height: 1.5;
}

.las-bundle-ticks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: 700;
	color: #2e7d32;
}

/* Right side: price + checkbox */
.las-bundle-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	flex-shrink: 0;
}

.las-bundle-pricing {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}

.las-price-original {
	font-size: 0.82em;
	color: #888;
	text-decoration: line-through;
}

.las-price-sale {
	font-size: 1em;
	font-weight: 700;
	color: #c0392b;
}

.las-price-free {
	font-size: 0.88em;
	color: #888;
}

/* Custom checkbox */
.las-bundle-checkbox-wrap {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.las-bundle-checkbox-wrap input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.las-custom-checkbox {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #bbb;
	border-radius: 4px;
	background: #fff;
	flex-shrink: 0;
	transition: border-color 0.15s, background 0.15s;
	position: relative;
}

.las-bundle-card.las-bundle-checked .las-custom-checkbox {
	background: #1a6e1a;
	border-color: #1a6e1a;
}

.las-bundle-card.las-bundle-checked .las-custom-checkbox::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}

/* Saving spinner */
.las-saving {
	opacity: 0.6;
	pointer-events: none;
}

@keyframes las-spin {
	to { transform: rotate(360deg); }
}
