.header-cocktail {
  position: relative;
  background-image: url('../img/cocktails/header-cocktails-zarova.webp');
  /* Cambia esto por tu imagen */
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  z-index: 1;
}

.header-cocktail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* Oscurece la imagen */
  z-index: 2;
}

.header-cocktail-content {
  position: relative;
  z-index: 3;
}


.cocktail-video-square {
  /* opcional, por si quieres fondo */
  background-color: transparent;
}

/* contenedor cuadrado */
.video-frame-square {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;        /* cuadrado */
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

/* el video rellena el cuadro como si fuera imagen */
.video-frame-square video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

