/**
 * Home spotlight rows — image + featured product (All Natural style).
 */

.mto-home-spotlight {
	padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px);
	background: #ffffff;
}

.mto-home-spotlight + .mto-home-spotlight {
	padding-top: 0;
}

.mto-home-spotlight__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	max-width: min(1440px, 100%);
	margin: 0 auto;
}

.mto-home-spotlight--reverse .mto-home-spotlight__media {
	order: 2;
}

.mto-home-spotlight--reverse .mto-home-spotlight__product {
	order: 1;
}

.mto-home-spotlight__media {
	position: relative;
	min-height: clamp(420px, 52vh, 640px);
	border-radius: 20px;
	overflow: hidden;
	background: #ececec;
}

.mto-home-spotlight__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center;
}

.mto-home-spotlight__caption {
	position: absolute;
	left: clamp(20px, 3vw, 36px);
	bottom: clamp(20px, 3vw, 36px);
	z-index: 2;
	max-width: min(320px, calc(100% - 40px));
	margin: 0;
	font-family: Inter, sans-serif;
	font-size: clamp(14px, 1.6vw, 18px);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: #000000;
	text-shadow: none;
}

.mto-home-spotlight__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}

.mto-home-spotlight__product {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(420px, 52vh, 640px);
	padding: clamp(12px, 2vw, 24px);
}

.mto-spotlight-product-card {
	width: min(100%, 420px);
}

.mto-spotlight-product-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.mto-spotlight-product-card__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(300px, 38vw, 460px);
	padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 32px) clamp(20px, 3vw, 28px);
	border-radius: 18px;
	background: #f3f3f3;
	overflow: hidden;
}

.mto-spotlight-product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	background: #ffffff;
	color: #e01616;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mto-spotlight-product-card__wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.mto-spotlight-product-card__wishlist .wishlist-btn a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	background: transparent !important;
	box-shadow: none;
	border: 0;
	color: #000000 !important;
}

.mto-spotlight-product-card__wishlist .wishlist-btn a::before {
	font-size: 18px;
}

.mto-spotlight-product-card__image {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: clamp(220px, 30vw, 340px);
	object-fit: contain;
}

.mto-spotlight-product-card__meta {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	align-items: end;
	gap: 4px 16px;
	margin-top: 16px;
	padding: 0 4px;
}

.mto-spotlight-product-card__copy {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.mto-spotlight-product-card__title {
	margin: 0;
	font-family: Inter, sans-serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	line-height: 1.3;
	color: #000000;
}

.mto-spotlight-product-card__cat {
	display: block;
	margin-top: 4px;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000000;
}

.mto-spotlight-product-card__price {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	justify-self: end;
	text-align: right;
}

.mto-spotlight-product-card__price .amount {
	font-family: Inter, sans-serif;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.3;
	color: #000000;
}

.mto-spotlight-product-card__price del .amount {
	font-size: 13px !important;
	color: #9e9e9e;
}

.mto-spotlight-product-card__link:hover .mto-spotlight-product-card__title {
	color: #000000;
}

@media (max-width: 900px) {
	.mto-home-spotlight__inner {
		grid-template-columns: 1fr;
	}

	.mto-home-spotlight--reverse .mto-home-spotlight__media,
	.mto-home-spotlight--reverse .mto-home-spotlight__product {
		order: initial;
	}

	.mto-home-spotlight__media,
	.mto-home-spotlight__product {
		min-height: 0;
	}

	.mto-home-spotlight__media {
		min-height: clamp(320px, 62vw, 480px);
	}

	.mto-home-spotlight__product {
		padding-top: 0;
	}

	.mto-spotlight-product-card {
		width: min(100%, 380px);
		margin: 0 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mto-spotlight-product-card__link {
		transition: none;
	}
}
