/* Native Elementor product showcase matching the supplied Feel Peptides section. */
.feel-product-showcase {
	--fps-card-width: 328px;
	--fps-card-height: 520px;
	--fps-hover-speed: 500ms;
	width: 100%;
	padding: 0 0 82px;
	overflow: hidden;
	background: #fff;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

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

.feel-product-showcase__header {
	width: 100%;
	padding: 0 32px 65px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.feel-product-showcase__title {
	max-width: 760px;
	margin: 0;
	color: #7e7a72;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 68px;
	font-weight: 400;
	line-height: .94;
	letter-spacing: -3.2px;
}

.feel-product-showcase__shop-all {
	flex: 0 0 auto;
	margin-top: 3px;
	padding: 11px 23px;
	border: 1px solid #c9d2c7;
	border-radius: 10px;
	background: #fff;
	color: #1e1e1e;
	font-family: "Courier New", monospace;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.feel-product-showcase__shop-all:hover {
	background: #252525;
	color: #fff;
	transform: translateY(-2px);
}

.feel-product-showcase__scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.feel-product-showcase__scroll::-webkit-scrollbar {
	display: none;
}

.feel-product-showcase__scroll.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.feel-product-showcase__track {
	width: max-content;
	min-width: 100%;
	padding: 0 32px;
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.feel-product-card {
	width: var(--fps-card-width);
	height: var(--fps-card-height);
	flex: 0 0 var(--fps-card-width);
	position: relative;
	overflow: hidden;
	border-radius: 25px;
	background: #d7d7d7;
	color: #fff;
	cursor: pointer;
	scroll-snap-align: start;
	isolation: isolate;
}

.feel-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent 44%, rgba(0, 0, 0, .48) 100%);
	transition: opacity var(--fps-hover-speed) ease;
}

.feel-product-card__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.feel-product-card__image {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	display: block;
	object-fit: cover;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
	transition: opacity var(--fps-hover-speed) ease, transform calc(var(--fps-hover-speed) * 1.15) cubic-bezier(.22, 1, .36, 1);
}

.feel-product-card__image--primary {
	object-position: var(--fps-primary-position, center center);
	opacity: 1;
	transform: scale(1);
}

.feel-product-card__image--hover {
	object-position: var(--fps-hover-position, center center);
	opacity: 0;
	transform: scale(1.035);
}

.feel-product-card:hover .feel-product-card__image--primary,
.feel-product-card:focus-within .feel-product-card__image--primary,
.feel-product-card.is-keyboard-focus .feel-product-card__image--primary {
	opacity: 0;
	transform: scale(1.025);
}

.feel-product-card:hover .feel-product-card__image--hover,
.feel-product-card:focus-within .feel-product-card__image--hover,
.feel-product-card.is-keyboard-focus .feel-product-card__image--hover {
	opacity: 1;
	transform: scale(1);
}

.feel-product-card__badge {
	position: absolute;
	top: 11px;
	left: 11px;
	z-index: 5;
	padding: 8px 15px;
	border-radius: 7px;
	background: rgba(255, 255, 255, .88);
	color: #111;
	font-family: "Courier New", monospace;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .35px;
	text-transform: uppercase;
}

.feel-product-card__category {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 5;
	display: none;
	padding: 6px 9px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 6px;
	background: rgba(0, 0, 0, .12);
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 10px;
	line-height: 1;
	backdrop-filter: blur(6px);
}

.feel-product-showcase.show-category .feel-product-card__category {
	display: inline-flex;
}

.feel-product-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	padding: 20px 20px 23px;
	text-align: center;
}

.feel-product-card__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}

.feel-product-card__title {
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -.6px;
}

.feel-product-card__tag {
	flex: 0 0 auto;
	padding: 4px 7px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 4px;
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
}

.feel-product-card__description {
	max-width: 290px;
	margin: 6px auto 0;
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-wrap: balance;
}

.feel-product-card__shop-btn {
	width: 100%;
	height: 38px;
	margin: 12px auto 0;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	color: #111;
	font-family: "Courier New", monospace;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 260ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1), color 220ms ease, background-color 220ms ease;
}

.feel-product-card:hover .feel-product-card__shop-btn,
.feel-product-card:focus-within .feel-product-card__shop-btn,
.feel-product-card.is-keyboard-focus .feel-product-card__shop-btn,
.feel-product-showcase.show-shop-button .feel-product-card__shop-btn {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.feel-product-card__shop-btn:hover {
	background: #1f1f1f;
	color: #fff;
}

.feel-product-card:focus-visible,
.feel-product-showcase__shop-all:focus-visible,
.feel-product-card__shop-btn:focus-visible {
	outline: 2px solid #7e7a72;
	outline-offset: 4px;
}

.feel-product-showcase__scroll.is-dragging .feel-product-card,
.feel-product-showcase__scroll.is-dragging .feel-product-card * {
	cursor: grabbing;
	user-select: none;
}

@media (max-width: 1024px) {
	.feel-product-showcase {
		--fps-card-width: 300px;
		--fps-card-height: 480px;
	}

	.feel-product-showcase__header {
		padding-bottom: 48px;
	}

	.feel-product-showcase__title {
		font-size: 56px;
	}
}

@media (max-width: 767px) {
	.feel-product-showcase {
		--fps-card-width: 82vw;
		--fps-card-height: 130vw;
		padding-bottom: 54px;
	}

	.feel-product-showcase__header {
		padding: 0 18px 34px;
		align-items: flex-end;
		gap: 18px;
	}

	.feel-product-showcase__title {
		max-width: 72%;
		font-size: 42px;
		line-height: .98;
		letter-spacing: -2px;
	}

	.feel-product-showcase__shop-all {
		padding: 10px 14px;
		font-size: 11px;
	}

	.feel-product-showcase__track {
		padding-right: 18px;
		padding-left: 18px;
	}

	.feel-product-card__title {
		font-size: 21px;
	}

	.feel-product-card__description {
		font-size: 11px;
	}
}

@media (hover: none) {
	.feel-product-card__shop-btn {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.feel-product-showcase__scroll {
		scroll-behavior: auto;
	}

	.feel-product-card__image,
	.feel-product-card__shop-btn,
	.feel-product-showcase__shop-all {
		transition-duration: .01ms !important;
	}
}
