
.hp-hero-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 9;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Icons */
  .hp-hero-toggle.playing::before {
    content: '❚❚'; /* pause icon */
  }

  .hp-hero-toggle.paused::before {
    content: '▶'; /* play icon */
  }


  .hp-hero-poster img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 300ms ease-out;
    pointer-events: none;
  }

  .hp-hero-video.is-visible {
    opacity: 1;
  }
