/* UGC videó blokk a Kosárba gomb alatt: öt álló előnézet egy sorban,
   mobilon vízszintesen görgethető. Kattintásra lightbox. */
.festede-ugc {
	width: 100%;
	min-width: 0;
	margin: 18px 0;
}

.festede-ugc__title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 15px;
}

.festede-ugc__list {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.festede-ugc__list::-webkit-scrollbar {
	display: none;
}

.festede-ugc__item {
	position: relative;
	flex: 0 0 calc((100% - 40px) / 5);
	min-width: 96px;
	aspect-ratio: 9 / 16;
	padding: 0;
	border: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	cursor: pointer;
	scroll-snap-align: start;
}

.festede-ugc__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.festede-ugc__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .45);
	pointer-events: none;
}

.festede-ugc__play::after {
	content: "";
	position: absolute;
	left: 14px;
	top: 10px;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #fff;
}

.festede-ugc__item:focus-visible {
	outline: 3px solid #61ce70;
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.festede-ugc__item {
		flex-basis: 30%;
	}
}

/* Lightbox */
.festede-ugc-lb {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .92);
}

.festede-ugc-lb[hidden] {
	display: none;
}

.festede-ugc-lb video {
	max-width: min(92vw, 480px);
	max-height: 88vh;
	border-radius: 8px;
	background: #000;
	outline: none;
}

.festede-ugc-lb__btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

/* A nyilak CSS-ből rajzolva, hogy a betűkészlet ne tolja el őket a körben. */
.festede-ugc-lb__prev::before,
.festede-ugc-lb__next::before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.festede-ugc-lb__prev::before {
	transform: translateX(3px) rotate(-135deg);
}

.festede-ugc-lb__next::before {
	transform: translateX(-3px) rotate(45deg);
}

.festede-ugc-lb__btn:hover {
	background: rgba(255, 255, 255, .3);
}

.festede-ugc-lb__close {
	top: 16px;
	right: 16px;
}

.festede-ugc-lb__prev {
	left: 12px;
	top: 50%;
	margin-top: -22px;
}

.festede-ugc-lb__next {
	right: 12px;
	top: 50%;
	margin-top: -22px;
}

body.festede-ugc-open {
	overflow: hidden;
}
