.fl-product-cover__main {
	position: relative;
}

.fl-product-cover__main.is-video {
	display: grid;
	aspect-ratio: 2 / 3;
	place-items: center;
	overflow: hidden;
	border-radius: 3px;
	background: #020607;
	box-shadow: 30px 26px 0 rgba(217, 168, 95, .08), var(--fl-shadow);
}

.fl-product-cover__main.is-video > img {
	display: none;
}

.fl-product-cover__player {
	width: 100%;
	height: 100%;
}

.fl-product-cover__player[hidden] {
	display: none;
}

.fl-product-cover__player iframe,
.fl-product-cover__player video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #020607;
	object-fit: contain;
}

.fl-product-gallery__thumb--video {
	position: relative;
	background: #020607;
}

.fl-product-gallery__thumb--video img {
	opacity: .72;
}

.fl-product-gallery__video-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #172328, #020607);
}

.fl-product-gallery__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 50%;
	background: rgba(0, 0, 0, .66);
	color: #fff;
	font-size: 12px;
	line-height: 1;
	place-items: center;
	transform: translate(-50%, -50%);
}

.fl-product-gallery__play::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
}

.fl-product-gallery__thumb--video:hover .fl-product-gallery__play,
.fl-product-gallery__thumb--video.is-active .fl-product-gallery__play {
	border-color: var(--fl-gold);
	color: var(--fl-gold);
}

.fl-featured-product-video {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	width: min(100%, 690px);
	margin: 0 0 18px;
	padding: 8px 14px 8px 8px;
	border: 1px solid rgba(226, 193, 129, .5);
	border-radius: 7px;
	background: linear-gradient(110deg, rgba(226, 193, 129, .16), rgba(3, 10, 12, .42) 62%);
	color: #fff8ea;
	text-align: left;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.fl-featured-product-video:hover {
	border-color: var(--fl-gold);
	background: linear-gradient(110deg, rgba(226, 193, 129, .24), rgba(3, 10, 12, .5) 62%);
	transform: translateY(-1px);
}

.fl-featured-product-video:focus-visible {
	outline: 2px solid var(--fl-gold);
	outline-offset: 3px;
}

.fl-featured-product-video__media {
	position: relative;
	display: block;
	width: 104px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 4px;
	background: linear-gradient(145deg, #26363b, #020607);
}

.fl-featured-product-video__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .78;
}

.fl-featured-product-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .84);
	border-radius: 50%;
	background: rgba(0, 0, 0, .7);
	place-items: center;
	transform: translate(-50%, -50%);
}

.fl-featured-product-video__play::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #fff;
}

.fl-featured-product-video__copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.fl-featured-product-video__copy > span {
	color: var(--fl-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fl-featured-product-video__copy strong {
	overflow: hidden;
	font-family: var(--fl-serif);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fl-featured-product-video__action {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	color: #fff0de;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.fl-featured-product-video__action .fl-icon {
	width: 16px;
	height: 16px;
}

@media (max-width: 560px) {
	.fl-featured-product-video {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 12px;
	}

	.fl-featured-product-video__media {
		width: 88px;
	}

	.fl-featured-product-video__action {
		display: none;
	}
}
