.lovely-cross-sell {
	--lcs-border: #e8e3df;
	--lcs-text: #181515;
	--lcs-muted: #756f6b;
	--lcs-bg: #f8f5f2;
	box-sizing: border-box;
	clear: both;
	margin: 42px 0 16px;
	padding: clamp(20px, 3vw, 30px);
	width: 100%;
	max-width: 100%;
	background: var(--lcs-bg);
	color: var(--lcs-text);
	overflow: hidden;
}

.lovely-cross-sell *,
.lovely-cross-sell *::before,
.lovely-cross-sell *::after {
	box-sizing: border-box;
}

.lovely-cross-sell__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.lovely-cross-sell__header h2 {
	margin: 0 0 6px;
	color: var(--lcs-text);
	font-family: inherit;
	font-size: clamp(24px, 2.1vw, 34px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.lovely-cross-sell__header p {
	margin: 0;
	color: var(--lcs-muted);
	font-size: 14px;
	line-height: 1.5;
}

.lovely-cross-sell__navigation {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.lovely-cross-sell__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-height: 0;
	padding: 0;
	border: 1px solid var(--lcs-border);
	border-radius: 50%;
	background: #fff;
	color: var(--lcs-text);
	box-shadow: none;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.lovely-cross-sell__arrow:hover {
	border-color: var(--lcs-text);
	background: #fff;
	color: var(--lcs-text);
	transform: translateY(-1px);
}

.lovely-cross-sell__arrow:disabled {
	opacity: .35;
	cursor: default;
	transform: none;
}

.lovely-cross-sell__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 24px) / 3);
	gap: 12px;
	max-width: 100%;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.lovely-cross-sell__track::-webkit-scrollbar {
	display: none;
}

.lovely-cross-sell__track:focus-visible {
	outline: 1px solid var(--lcs-text);
	outline-offset: 4px;
}

.lovely-cross-sell__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	background: #fff;
	scroll-snap-align: start;
}

.lovely-cross-sell__image {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f1efed;
}

.lovely-cross-sell__image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .35s ease;
}

.lovely-cross-sell__image:hover img {
	transform: scale(1.025);
}

.lovely-cross-sell__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 13px 12px 12px;
}

.lovely-cross-sell__content h3 {
	display: -webkit-box;
	min-height: 38px;
	margin: 0 0 14px;
	overflow: hidden;
	color: var(--lcs-text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lovely-cross-sell__content h3 a {
	color: inherit;
	text-decoration: none;
}

.lovely-cross-sell__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.lovely-cross-sell__price {
	color: var(--lcs-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
}

.lovely-cross-sell__price del {
	display: none;
}

.lovely-cross-sell__button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	margin: 0;
	padding: 7px 10px;
	border: 1px solid var(--lcs-text);
	border-radius: 0;
	background: transparent;
	color: var(--lcs-text);
	box-shadow: none;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.lovely-cross-sell__button.button:hover,
.lovely-cross-sell__button.button:focus {
	background: var(--lcs-text);
	color: #fff;
}

@media (max-width: 1200px) {
	.lovely-cross-sell {
		margin-top: 32px;
		padding: 22px;
	}

	.lovely-cross-sell__track {
		grid-auto-columns: calc((100% - 12px) / 2);
	}
}

@media (max-width: 767px) {
	.lovely-cross-sell {
		margin: 30px 0 8px;
		padding: 20px 16px;
	}

	.lovely-cross-sell__header {
		align-items: center;
		margin-bottom: 18px;
	}

	.lovely-cross-sell__header h2 {
		font-size: 25px;
	}

	.lovely-cross-sell__navigation {
		display: none;
	}

	.lovely-cross-sell__track {
		grid-auto-columns: minmax(190px, 76%);
		gap: 10px;
		padding-right: 16px;
	}

	.lovely-cross-sell__content {
		padding: 12px 10px 10px;
	}
}

@media (max-width: 380px) {
	.lovely-cross-sell__track {
		grid-auto-columns: 84%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lovely-cross-sell__track {
		scroll-behavior: auto;
	}

	.lovely-cross-sell__image img,
	.lovely-cross-sell__arrow {
		transition: none;
	}
}

