/* Product Feature Sections Styles */

.v10-feature {
	position: relative;
	display: block;
	margin-top: clamp(100px, 8vw, 140px);
	border: 1px solid var(--line);
	overflow: hidden;
	background: #fff;
}

/* Feature Copy */
.v10-feature-copy {
	padding: clamp(30px, 3vw, 50px) clamp(46px, 6vw, 92px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 50%;
	position: relative;
	z-index: 1;
}

.v10-feature-copy h2 {
	margin-top: 15px;
	font: 300 clamp(42px, 4.8vw, 72px) / 1 var(--serif);
	letter-spacing: -0.05em;
	margin-bottom: 0;
}

.v10-feature-copy h2 span {
	font-weight: 300;
}

.v10-feature-copy p {
	max-width: 630px;
	margin-top: 25px;
	color: var(--body);
	font-size: 16px;
	line-height: 1.75;
}

/* Feature Price */
.v10-feature-price {
	margin-top: 32px;
	font-size: 25px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.v10-feature-price .price-current {
	font-size: 25px;
	font-weight: 400;
}

.v10-feature-price .price-old {
	color: var(--faint);
	font-size: 14px;
}

.v10-feature-price s {
	color: var(--faint);
	font-size: 14px;
	text-decoration: line-through;
}

.v10-feature-copy .btn {
	margin-top: 28px;
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink);
}

.v10-feature-copy .btn-outline:hover {
	opacity: 0.8;
	color: var(--ink);
}

/* Feature Media */
.v10-feature-media {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	overflow: hidden;
	background: #F6F0EB;
}

.v10-feature-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.v10-feature-lumera .v10-feature-media img {
	object-fit: contain;
	padding: 5%;
}

.v10-feature-ionic .v10-feature-media img {
	object-fit: cover;
}

/* Tablet — max-width 940px */
@media (max-width: 940px) {
	.v10-feature {
		display: block;
	}

	.v10-feature-copy {
		width: 100%;
	}

	.v10-feature-media {
		position: static;
		width: 100%;
		min-height: 420px;
	}

	.v10-feature-copy,
	.v10-feature-copy h2 {
		padding: 46px 22px;
		font-size: 40px;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.v10-feature,
	.v10-feature-copy {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
