/* ==============================================
   Hero Video Widget — базові стилі
   ============================================== */

.hvw-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
}

/* ---------- Відео на фоні ---------- */
.hvw-video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

/* Фолбек-зображення (якщо відео не задане) */
.hvw-poster-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

/* ---------- Накладання / затемнення ---------- */
.hvw-overlay {
	position: absolute;
	inset: 0;
	background-color: #000;
	opacity: 0.65;
	z-index: 1;
}

/* ---------- Контентний блок ---------- */
.hvw-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	padding: 80px 40px;
	text-align: center;
	box-sizing: border-box;
}

/* ---------- Заголовок ---------- */
.hvw-title {
	margin-top: 0;
}

/* ---------- Опис ---------- */
.hvw-description {
	color: #fff;
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.6;
}

/* ---------- Переваги ---------- */
.hvw-advantages {
	display: grid;
	grid-template-columns: repeat(var(--hvw-cols, 5), 1fr);
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.hvw-adv-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	text-align: left;
	position: relative;
}

.hvw-adv-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hvw-adv-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	/* Перефарбовує будь-яку SVG іконку у білий */
	filter: brightness(0) invert(1);
	display: block;
}

.hvw-adv-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}

.hvw-adv-title {
	color: #fff;
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.4;
	text-align: left;
}

.hvw-adv-hot {
	display: flex;
gap: 4px;
align-items: center;
	background: #fff;
	color: #000;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	padding: 3px 7px;
	border-radius: 20px;
	letter-spacing: 0.03em;
	text-transform: lowercase;
	position: absolute;
	left: 30px;
	top: -15px;
	transform: rotate(6deg);
}

/* ==============================================
   Адаптив — планшет
   ============================================== */
@media (max-width: 1024px) {
	.hvw-wrapper {
		min-height: 100vh;
	}

	.hvw-content {
		padding: 60px 32px;
	}

	.hvw-advantages {
		--hvw-cols: 3;
	}
}

/* ==============================================
   Адаптив — мобільний
   ============================================== */
@media (max-width: 767px) {
	.hvw-wrapper {
		min-height: 100vh;
	}

	.hvw-content {
		padding: 48px 20px;
	}

	.hvw-advantages {
		--hvw-cols: 2;
		gap: 20px;
	}

	/* На мобільних відео може не відтворюватися автоматично —
	   завдяки poster відображається зображення-заставка */
}
