/* Berlight Features + Compare */

.berlight-features {
	display: flex;
	align-items: center;
	gap: 56px;
	flex-wrap: wrap;
}

.berlight-features--content-only .berlight-features__col--content,
.berlight-features--image-only .berlight-features__col--image {
	width: 100%;
}

.berlight-features--both .berlight-features__col {
	flex: 1 1 420px;
	min-width: 300px;
}

/* Default order: content left, image right */
.berlight-features--image-right .berlight-features__col--content { order: 1; }
.berlight-features--image-right .berlight-features__col--image   { order: 2; }
.berlight-features--image-left .berlight-features__col--content  { order: 2; }
.berlight-features--image-left .berlight-features__col--image    { order: 1; }

/* ---------- Text side ---------- */
.berlight-features__eyebrow {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #e8646f;
}

.berlight-features__heading {
	margin: 0 0 18px;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 700;
	color: #1a1a1a;
}

.berlight-features__heading em {
	font-style: normal;
	color: #e8646f;
}

.berlight-features__description {
	max-width: 520px;
	margin: 0 0 30px;
	line-height: 1.75;
	color: #5b5b5b;
}

.berlight-feature-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.berlight-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.berlight-feature-item__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ec6b76;
}

.berlight-feature-item__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.berlight-feature-item__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.berlight-feature-item__title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
}

.berlight-feature-item__desc {
	font-size: 14px;
	line-height: 1.6;
	color: #6b6b6b;
}

/* ---------- Before / After compare ---------- */
.berlight-features__col--image {
	display: flex;
}

.berlight-compare {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	border-radius: 16px;
	background: #f2f2f2;
	user-select: none;
	touch-action: none;
}

.berlight-compare__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.berlight-compare__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.berlight-compare__tag {
	position: absolute;
	bottom: 16px;
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #ffffff;
	color: #e8646f;
}

.berlight-compare__tag--before { left: 16px; }
.berlight-compare__tag--after  { right: 16px; }

.berlight-compare__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #e8646f;
	transform: translateX(-1px);
	pointer-events: none;
}

.berlight-compare__handle {
	position: absolute;
	top: 50%;
	width: 44px;
	height: 44px;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e8646f;
	cursor: ew-resize;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.berlight-compare__handle svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
	overflow: visible;
}

@media (max-width: 767px) {
	.berlight-features {
		gap: 32px;
	}
	.berlight-features__heading {
		font-size: 26px;
	}
	.berlight-compare {
		height: 320px;
	}
}
