/* Alfa Digital - Bunny Video 1.0.0 */

.alfa-bv {
	position: relative;
	width: 100%;
	padding-top: var(--alfa-bv-pad, 56.25%);
	overflow: hidden;
	background: #0b0b0f;
	border-radius: var(--alfa-bv-radius, 0);
}

/* El disparador cubre todo el contenedor. Se resetean los estilos de botón
   del tema, que en Woodmart traen padding, border y background propios. */
.alfa-bv__trigger {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: inherit;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	line-height: 0;
	text-align: center;
	color: inherit;
	transition: none;
}

.alfa-bv__trigger:hover,
.alfa-bv__trigger:focus,
.alfa-bv__trigger:active {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: inherit;
}

.alfa-bv__trigger:focus-visible {
	outline: 3px solid #2b4bf2;
	outline-offset: 3px;
}

.alfa-bv__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
	border-radius: inherit;
}

.alfa-bv__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	display: block;
	pointer-events: none;
	transition: transform .18s ease;
}

.alfa-bv__play svg {
	width: 100%;
	height: 100%;
	display: block;
}

.alfa-bv__play-bg {
	fill: #0b0b0f;
	fill-opacity: .78;
	transition: fill .18s ease, fill-opacity .18s ease;
}

.alfa-bv__play-arrow {
	fill: #fff;
}

.alfa-bv__trigger:hover .alfa-bv__play {
	transform: translate(-50%, -50%) scale(1.08);
}

.alfa-bv__trigger:hover .alfa-bv__play-bg {
	fill: #2b4bf2;
	fill-opacity: 1;
}

.alfa-bv__title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 48px 20px 18px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
	color: #fff;
	text-align: left;
	background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
	pointer-events: none;
}

/* Reproductor inyectado */
.alfa-bv__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #0b0b0f;
	border-radius: inherit;
}

.alfa-bv.is-loading .alfa-bv__play {
	animation: alfa-bv-pulse 1s ease-in-out infinite;
}

@keyframes alfa-bv-pulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
	.alfa-bv__play,
	.alfa-bv__play-bg,
	.alfa-bv.is-loading .alfa-bv__play {
		transition: none;
		animation: none;
	}
}

@media (max-width: 575px) {
	.alfa-bv__play {
		width: 54px;
		height: 38px;
	}

	.alfa-bv__title {
		font-size: 13px;
		padding: 40px 14px 14px;
	}
}
