.lpps-showcase {
	box-sizing: border-box;
	width: 100%;
	padding: var(--lpps-padding);
}

.lpps-showcase *,
.lpps-showcase *::before,
.lpps-showcase *::after {
	box-sizing: border-box;
}

.lpps-grid {
	display: grid;
	grid-template-columns: repeat(var(--lpps-columns), minmax(0, 1fr));
	gap: var(--lpps-gap);
	max-width: var(--lpps-max);
	width: 100%;
}

.lpps-align-center .lpps-grid {
	margin-inline: auto;
}

.lpps-align-left .lpps-grid {
	margin-right: auto;
}

.lpps-align-right .lpps-grid {
	margin-left: auto;
}

.lpps-card {
	position: relative;
	display: flex;
	min-height: var(--lpps-height);
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(22px, 4vw, 42px);
	border-radius: var(--lpps-radius);
	background: var(--lpps-bg);
	color: var(--lpps-text);
	font-family: var(--lpps-font);
	text-decoration: none;
	transition: box-shadow 220ms ease, transform 220ms ease;
	isolation: isolate;
}

a.lpps-card:hover,
a.lpps-card:focus {
	color: var(--lpps-text);
	text-decoration: none;
}

a.lpps-card:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
}

.lpps-top-word {
	position: relative;
	z-index: 2;
	max-width: 100%;
	font-size: clamp(42px, 8vw, var(--lpps-top-size));
	font-weight: var(--lpps-top-weight);
	line-height: 0.86;
	letter-spacing: var(--lpps-top-spacing);
	text-transform: capitalize;
	overflow-wrap: anywhere;
}

.lpps-product-stage {
	position: absolute;
	inset: 18% 7% 22%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.lpps-image-left .lpps-product-stage {
	justify-content: flex-start;
}

.lpps-image-right .lpps-product-stage {
	justify-content: flex-end;
}

.lpps-product-image {
	display: block;
	width: min(var(--lpps-image-size), 560px);
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: filter 220ms ease, transform 220ms ease;
}

.has-product-shadow .lpps-product-image,
.has-product-shadow .lpps-image-placeholder {
	filter: drop-shadow(var(--lpps-shadow-x) var(--lpps-shadow-y) var(--lpps-shadow-blur) var(--lpps-shadow-color));
}

.lpps-image-placeholder {
	width: min(var(--lpps-image-size), 360px);
	aspect-ratio: 0.72;
	border: 1px solid color-mix(in srgb, currentColor 25%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, currentColor 10%, transparent);
	opacity: 0.5;
}

.lpps-card-bottom {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 14px;
	align-items: end;
	margin-top: min(42vh, 280px);
}

.lpps-reviews {
	display: flex;
	gap: 9px;
	align-items: center;
	font-size: 13px;
	line-height: 1.2;
}

.lpps-stars {
	letter-spacing: 1px;
	white-space: nowrap;
}

.lpps-review-text {
	opacity: 0.82;
}

.lpps-product-title,
.lpps-product-subtitle,
.lpps-product-price {
	margin: 0;
	color: inherit;
}

.lpps-product-title {
	max-width: 22ch;
	font-size: var(--lpps-title-size);
	font-weight: 700;
	line-height: 1.1;
}

.lpps-product-subtitle {
	margin-top: 6px;
	font-size: var(--lpps-subtitle-size);
	line-height: 1.35;
	opacity: 0.78;
}

.lpps-product-price {
	margin-top: 10px;
	font-size: var(--lpps-price-size);
	font-weight: 700;
	line-height: 1.2;
}

.lpps-card-button {
	display: inline-flex;
	width: fit-content;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.lpps-hover-lift .lpps-card:hover {
	transform: translateY(-6px);
}

.lpps-hover-zoom .lpps-card:hover .lpps-product-image {
	transform: scale(1.035);
}

.lpps-hover-glow .lpps-card:hover {
	box-shadow: 0 20px 60px color-mix(in srgb, var(--lpps-text) 22%, transparent);
}

@media (max-width: 760px) {
	.lpps-showcase {
		padding: max(16px, calc(var(--lpps-padding) * 0.66));
	}

	.lpps-grid {
		grid-template-columns: 1fr;
	}

	.lpps-card {
		min-height: min(var(--lpps-height), 620px);
	}

	.lpps-product-stage {
		inset: 20% 6% 25%;
	}

	.lpps-card-bottom {
		margin-top: 240px;
	}
}

/* ============================================================
   Masonry layout
   ============================================================ */
.lpps-masonry {
	column-count: var(--lpps-columns);
	column-gap: var(--lpps-gap);
	max-width: var(--lpps-max);
	width: 100%;
}

.lpps-align-center .lpps-masonry {
	margin-inline: auto;
}

.lpps-align-right .lpps-masonry {
	margin-left: auto;
}

.lpps-masonry .lpps-card {
	display: inline-flex;
	width: 100%;
	margin-bottom: var(--lpps-gap);
	break-inside: avoid;
}

@media (max-width: 1024px) {
	.lpps-masonry {
		column-count: min(var(--lpps-columns), 2);
	}
}

@media (max-width: 760px) {
	.lpps-masonry {
		column-count: 1;
	}
}

/* ============================================================
   Rhode Style Carousel
   ============================================================ */
.lpps-carousel {
	position: relative;
	max-width: var(--lpps-max);
	width: 100%;
}

.lpps-campaign-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(18px, 3vw, 34px);
	color: #5f5853;
	font-family: var(--lpps-font);
	text-transform: capitalize;
}

.lpps-campaign-kicker,
.lpps-campaign-title {
	margin: 0;
	color: inherit;
}

.lpps-campaign-kicker {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	opacity: 0.68;
}

.lpps-campaign-title {
	max-width: 14ch;
	font-size: clamp(34px, 5vw, 72px);
	font-weight: 600;
	letter-spacing: -2px;
	line-height: 0.92;
}

.lpps-swipe-hint {
	display: inline-flex;
	min-width: 52px;
	justify-content: flex-end;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	opacity: 0.62;
}

.lpps-align-center .lpps-carousel {
	margin-inline: auto;
}

.lpps-align-right .lpps-carousel {
	margin-left: auto;
}

.lpps-carousel-row {
	position: relative;
}

.lpps-carousel-row + .lpps-carousel-row {
	margin-top: calc(var(--lpps-gap) + 12px);
}

.lpps-track-wrap {
	position: relative;
}

.lpps-track {
	display: flex;
	gap: var(--lpps-gap);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
	scroll-padding-inline: 2px;
	touch-action: pan-x pan-y;
	cursor: grab;
	user-select: none;
}

.lpps-track::-webkit-scrollbar {
	display: none;
}

.lpps-track:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.lpps-track.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.lpps-track .lpps-card,
.lpps-track img,
.lpps-track a {
	-webkit-user-drag: none;
	user-select: none;
}

.lpps-slide {
	scroll-snap-align: start;
	flex: 0 0 auto;
	display: flex;
}

.lpps-track > * {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.lpps-slide > .lpps-card {
	width: 100%;
	min-height: var(--lpps-height);
}

/* Card width: responsive (visible-count driven) */
.lpps-cw-responsive .lpps-slide {
	flex-basis: calc((100% - var(--lpps-gap) * (var(--lpps-cards-d) - 1)) / var(--lpps-cards-d));
}

@media (max-width: 1024px) {
	.lpps-cw-responsive .lpps-slide {
		flex-basis: calc((100% - var(--lpps-gap) * (var(--lpps-cards-t) - 1)) / var(--lpps-cards-t));
	}
}

@media (max-width: 760px) {
	.lpps-cw-responsive .lpps-slide {
		flex-basis: calc((100% - var(--lpps-gap) * (var(--lpps-cards-m) - 1)) / var(--lpps-cards-m));
	}
}

/* Card width: fixed pixel width */
.lpps-cw-fixed .lpps-slide {
	flex-basis: var(--lpps-card-fixed);
}

/* Card width: full viewport (one card per view) */
.lpps-cw-viewport .lpps-slide {
	flex-basis: 100%;
}

/* ----- Navigation: floating circular arrows (Style B) ----- */
.lpps-nav {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	cursor: pointer;
}

.lpps-nav-floating {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 30px rgba(40, 33, 28, 0.18);
	color: #2b2521;
	font-size: 24px;
	line-height: 1;
	transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.lpps-nav-floating:hover {
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 14px 38px rgba(40, 33, 28, 0.24);
}

.lpps-nav-floating.lpps-nav-prev {
	left: 10px;
}

.lpps-nav-floating.lpps-nav-next {
	right: 10px;
}

.lpps-nav[disabled] {
	opacity: 0;
	pointer-events: none;
}

/* ----- Navigation: minimal bottom arrows (Style C) ----- */
.lpps-nav-bottom {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 18px;
}

.lpps-nav-minimal {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
	border-radius: 999px;
	font-size: 20px;
	line-height: 1;
	transition: background 200ms ease, opacity 200ms ease;
}

.lpps-nav-minimal:hover {
	background: color-mix(in srgb, currentColor 8%, transparent);
}

/* ----- Navigation: dots (Style D) ----- */
.lpps-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 18px;
}

.lpps-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: color-mix(in srgb, currentColor 28%, transparent);
	cursor: pointer;
	transition: width 220ms ease, background 220ms ease;
}

.lpps-dot.is-active {
	width: 24px;
	background: currentColor;
}

/* ----- Scroll effect: smooth ----- */
.lpps-scroll-smooth .lpps-track {
	scroll-behavior: smooth;
}

/* ----- Luxury Mode (inspired by Rhode) ----- */
.lpps-luxury .lpps-track {
	padding-block: 0;
}

.lpps-luxury .lpps-slide {
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lpps-luxury .lpps-card {
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lpps-luxury .lpps-slide.is-active {
	transform: none;
}

.lpps-luxury .lpps-slide.is-active .lpps-product-image {
	transform: none;
}

.lpps-luxury .lpps-card:hover {
	transform: none;
}

.lpps-luxury .lpps-product-image {
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease;
}

@media (prefers-reduced-motion: reduce) {
	.lpps-track {
		scroll-behavior: auto;
	}

	.lpps-luxury .lpps-slide,
	.lpps-luxury .lpps-card,
	.lpps-luxury .lpps-product-image {
		transition: none;
	}

	.lpps-luxury .lpps-slide.is-active,
	.lpps-luxury .lpps-slide.is-active .lpps-product-image {
		transform: none;
	}
}

/* ============================================================
   Editorial card — luxury campaign gallery (Rhode / The Row / Aesop)
   The product is the design. Three quiet rows: headline, product, text.
   ============================================================ */
.lpps-card-editorial {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto auto;
	gap: clamp(14px, 2vw, 24px);
	min-height: clamp(590px, 58vw, 720px);
	padding: clamp(22px, 2.7vw, 34px);
	border: 0;
	border-radius: 0;
	background: #DDD5CF;
	box-shadow: none;
	cursor: pointer;
}

/* Headline — large, tight, muted. Never wraps (JS scales it to fit). */
.lpps-card-editorial .lpps-headline {
	max-width: 100%;
	overflow: hidden;
	color: #8b7e92;
	font-size: clamp(50px, 4.8vw, 64px);
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: -2px;
	text-transform: capitalize;
	white-space: nowrap;
}

/*
 * Every product fills ~82% of its canvas regardless of real-world size.
 * object-fit: contain equalises the bounding envelope, so a hair clip and a
 * pouch read as equally dominant — no physical-size scaling.
 */
.lpps-card-editorial .lpps-product-image {
	align-self: center;
	justify-self: center;
	width: auto;
	height: auto;
	max-width: 82%;
	max-height: 82%;
	object-fit: contain;
	object-position: center;
	filter: none;
	transform: none;
}

.lpps-card-editorial .lpps-image-placeholder {
	align-self: center;
	justify-self: center;
	width: 60%;
	height: 60%;
	aspect-ratio: auto;
	border: none;
	border-radius: 0;
	background: color-mix(in srgb, currentColor 8%, transparent);
	opacity: 0.4;
}

/* Minimal text — maximum whitespace. */
.lpps-card-editorial .lpps-editorial-text {
	display: grid;
	gap: 4px;
	align-self: end;
	color: #504b48;
	text-transform: capitalize;
}

.lpps-card-editorial .lpps-product-badge {
	margin: 0 0 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	opacity: 0.58;
}

.lpps-card-editorial .lpps-product-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: baseline;
}

.lpps-card-editorial .lpps-product-title {
	max-width: none;
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: 0;
}

.lpps-card-editorial .lpps-product-subtitle {
	margin: 0;
	font-size: clamp(12px, 1.1vw, 14px);
	line-height: 1.22;
	opacity: 0.62;
}

.lpps-card-editorial .lpps-product-price {
	margin: 0;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0.82;
}

.lpps-card-editorial .lpps-cta-ribbon {
	display: flex;
	width: calc(100% + clamp(44px, 5.4vw, 68px));
	min-height: 42px;
	align-items: center;
	gap: 20px;
	justify-self: center;
	margin: 4px calc(clamp(22px, 2.7vw, 34px) * -1) calc(clamp(22px, 2.7vw, 34px) * -1);
	overflow: hidden;
	background: #5d5550;
	color: #f5f0ec;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
	white-space: nowrap;
}

.lpps-card-editorial .lpps-cta-ribbon span {
	flex: 0 0 auto;
	animation: lpps-ribbon-slide 18s linear infinite;
}

@keyframes lpps-ribbon-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.lpps-card-editorial:hover,
.lpps-card-editorial:focus {
	box-shadow: none;
}

.lpps-hover-lift .lpps-card-editorial:hover,
.lpps-hover-glow .lpps-card-editorial:hover,
.lpps-hover-zoom .lpps-card-editorial:hover,
.lpps-hover-zoom .lpps-card-editorial:hover .lpps-product-image {
	transform: none;
	box-shadow: none;
}

@media (max-width: 1024px) {
	.lpps-card-editorial {
		min-height: clamp(540px, 74vw, 680px);
	}
}

@media (max-width: 760px) {
	.lpps-campaign-head {
		align-items: start;
		margin-bottom: 16px;
	}

	.lpps-campaign-title {
		max-width: 12ch;
		font-size: 40px;
	}

	.lpps-card-editorial {
		min-height: min(660px, 128vw);
		padding: 22px;
	}

	.lpps-card-editorial .lpps-headline {
		font-size: 52px;
	}

	.lpps-card-editorial .lpps-cta-ribbon {
		width: calc(100% + 44px);
		margin-right: -22px;
		margin-bottom: -22px;
		margin-left: -22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lpps-card-editorial .lpps-cta-ribbon span {
		animation: none;
	}
}

/* ============================================================
   Full-image product cards
   ============================================================ */
.lpps-image-card,
.lpps-card-editorial.lpps-image-card {
	position: relative;
	display: block;
	min-height: var(--lpps-height);
	padding: 0;
	overflow: hidden;
	border-radius: var(--lpps-radius);
	background: var(--lpps-bg);
	color: var(--lpps-text);
	font-family: var(--lpps-font);
	isolation: isolate;
}

.lpps-slide > .lpps-image-card {
	min-height: var(--lpps-height);
}

.lpps-card-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
	filter: none;
	transform: none;
	transition: opacity 420ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lpps-image-card .lpps-image-placeholder {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border: none;
	border-radius: inherit;
	background: var(--lpps-bg);
	opacity: 1;
}

.lpps-card-image-hover {
	z-index: 1;
	opacity: 0;
}

.lpps-image-card:hover .lpps-card-image-hover,
.lpps-image-card:focus .lpps-card-image-hover,
.lpps-image-card:focus-within .lpps-card-image-hover {
	opacity: 1;
}

.lpps-image-card.has-hover-image:hover .lpps-card-image-default,
.lpps-image-card.has-hover-image:focus .lpps-card-image-default,
.lpps-image-card.has-hover-image:focus-within .lpps-card-image-default {
	opacity: 0;
}

.lpps-card-shade {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	height: var(--lpps-gradient-height);
	background: linear-gradient(
		to top,
		color-mix(in srgb, var(--lpps-gradient-color) var(--lpps-gradient-opacity), transparent),
		transparent
	);
	opacity: 0;
	pointer-events: none;
}

.lpps-image-card.has-bottom-gradient .lpps-card-shade {
	opacity: 1;
}

.lpps-overlay-item {
	position: absolute;
	z-index: 3;
	margin: 0;
	max-width: min(56ch, calc(100% - 28px));
	color: inherit;
	pointer-events: none;
	text-wrap: balance;
}

.lpps-image-card .lpps-top-word,
.lpps-card-editorial .lpps-top-word,
.lpps-image-card .lpps-product-badge,
.lpps-card-editorial .lpps-product-badge,
.lpps-image-card .lpps-product-title,
.lpps-card-editorial .lpps-product-title,
.lpps-image-card .lpps-product-subtitle,
.lpps-card-editorial .lpps-product-subtitle {
	text-transform: capitalize;
}

.lpps-image-card .lpps-top-word,
.lpps-card-editorial .lpps-top-word {
	top: var(--lpps-top-y);
	left: var(--lpps-top-x);
	max-width: min(62%, calc(100% - 28px));
	font-size: clamp(28px, 4.7vw, var(--lpps-top-size));
	font-weight: var(--lpps-top-weight);
	line-height: 0.9;
	letter-spacing: var(--lpps-top-spacing);
}

.lpps-image-card .lpps-product-badge,
.lpps-card-editorial .lpps-product-badge {
	top: var(--lpps-badge-y);
	left: var(--lpps-badge-x);
	max-width: min(40%, calc(100% - 28px));
	transform: translateX(-100%);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
	text-align: right;
	opacity: 0.9;
}

.lpps-image-card .lpps-product-title,
.lpps-card-editorial .lpps-product-title {
	top: var(--lpps-name-y);
	left: var(--lpps-name-x);
	max-width: min(58%, calc(100% - 28px));
	font-size: var(--lpps-title-size);
	font-weight: 650;
	line-height: 1.08;
	letter-spacing: 0;
	transition: opacity 220ms ease;
}

.lpps-image-card .lpps-product-subtitle,
.lpps-card-editorial .lpps-product-subtitle {
	top: var(--lpps-description-y);
	left: var(--lpps-description-x);
	max-width: min(58%, calc(100% - 28px));
	font-size: var(--lpps-subtitle-size);
	line-height: 1.24;
	opacity: 0.86;
	transition: opacity 220ms ease;
}

.lpps-image-card .lpps-product-price,
.lpps-card-editorial .lpps-product-price {
	top: var(--lpps-price-y);
	left: var(--lpps-price-x);
	max-width: min(36%, calc(100% - 28px));
	transform: translate(-100%, -100%);
	font-size: var(--lpps-price-size);
	font-weight: 650;
	line-height: 1.1;
	text-align: right;
	white-space: nowrap;
	opacity: 0.95;
	transition: opacity 220ms ease;
}

.lpps-image-card .lpps-card-button,
.lpps-card-editorial .lpps-card-button {
	top: var(--lpps-cta-y);
	left: var(--lpps-cta-x);
	display: inline-flex;
	width: auto;
	max-width: min(52%, calc(100% - 28px));
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	color: #25211f;
	font-size: 13px;
	font-weight: 650;
	line-height: 1;
	opacity: 0;
	pointer-events: auto;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease, opacity 240ms ease, transform 240ms ease;
}

.lpps-image-card .lpps-swipe-circle {
	top: var(--lpps-swipe-y);
	left: var(--lpps-swipe-x);
	display: inline-flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	border: 1px solid currentColor;
	border-radius: 999px;
	background: color-mix(in srgb, #fff 18%, transparent);
	backdrop-filter: blur(14px);
	font-size: 11px;
	font-weight: 650;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease, transform 240ms ease;
}

.lpps-image-card:hover .lpps-card-button,
.lpps-image-card:focus .lpps-card-button,
.lpps-image-card:focus-within .lpps-card-button,
.lpps-image-card:hover .lpps-swipe-circle,
.lpps-image-card:focus .lpps-swipe-circle,
.lpps-image-card:focus-within .lpps-swipe-circle {
	opacity: 1;
}

.lpps-image-card:hover .lpps-product-title,
.lpps-image-card:focus .lpps-product-title,
.lpps-image-card:focus-within .lpps-product-title,
.lpps-image-card:hover .lpps-product-subtitle,
.lpps-image-card:focus .lpps-product-subtitle,
.lpps-image-card:focus-within .lpps-product-subtitle,
.lpps-image-card:hover .lpps-product-price,
.lpps-image-card:focus .lpps-product-price,
.lpps-image-card:focus-within .lpps-product-price,
.lpps-image-card:hover .lpps-reviews,
.lpps-image-card:focus .lpps-reviews,
.lpps-image-card:focus-within .lpps-reviews {
	opacity: 0;
	pointer-events: none;
}

.lpps-image-card .lpps-card-button:hover,
.lpps-image-card .lpps-card-button:focus {
	border-color: #25211f;
	background: #25211f;
	color: #fff;
}

.lpps-hover-lift .lpps-image-card:hover {
	transform: translateY(-4px);
}

.lpps-hover-zoom .lpps-image-card:hover .lpps-card-image-hover,
.lpps-hover-zoom .lpps-image-card:not(.has-hover-image):hover .lpps-card-image-default {
	transform: scale(1.025);
}

.lpps-hover-glow .lpps-image-card:hover {
	box-shadow: 0 20px 60px color-mix(in srgb, var(--lpps-text) 18%, transparent);
}

.lpps-luxury .lpps-image-card,
.lpps-luxury .lpps-image-card:hover {
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease;
}

.lpps-luxury .lpps-slide.is-active .lpps-card-image,
.lpps-luxury .lpps-product-image {
	transform: none;
}

@keyframes lpps-mobile-image-flip {
	0%,
	42% {
		opacity: 0;
		transform: scale(1);
	}

	50%,
	92% {
		opacity: 1;
		transform: scale(1.015);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}

@media (max-width: 760px) {
	.lpps-image-card,
	.lpps-card-editorial.lpps-image-card {
		min-height: min(var(--lpps-height), 660px);
	}

	.lpps-image-card.has-hover-image .lpps-card-image-default {
		opacity: 1;
	}

	.lpps-slide:not(.is-active) .lpps-image-card.has-hover-image .lpps-card-image-hover,
	.lpps-slide:not(.is-active) .lpps-image-card.has-hover-image:hover .lpps-card-image-hover,
	.lpps-slide:not(.is-active) .lpps-image-card.has-hover-image:focus .lpps-card-image-hover,
	.lpps-slide:not(.is-active) .lpps-image-card.has-hover-image:focus-within .lpps-card-image-hover {
		animation: none;
		opacity: 0;
	}

	.lpps-slide.is-active .lpps-image-card.has-hover-image .lpps-card-image-hover {
		animation: lpps-mobile-image-flip 5.5s ease-in-out infinite;
	}

	.lpps-image-card.has-hover-image:hover .lpps-card-image-default,
	.lpps-image-card.has-hover-image:focus .lpps-card-image-default,
	.lpps-image-card.has-hover-image:focus-within .lpps-card-image-default {
		opacity: 1;
	}

	.lpps-image-card .lpps-top-word,
	.lpps-card-editorial .lpps-top-word {
		font-size: clamp(28px, 11vw, var(--lpps-top-size));
	}
}

@media (prefers-reduced-motion: reduce) {
	.lpps-card-image,
	.lpps-image-card .lpps-card-button,
	.lpps-image-card .lpps-swipe-circle {
		transition: none;
	}

	.lpps-image-card.has-hover-image .lpps-card-image-hover {
		animation: none;
	}
}
