/* SEO / Core Web Vitals helper: lazy YouTube facade.
   Loaded on product pages via the Kuler header styles. */

/* ---------------------------------------------------------------------------
   YouTube click-to-load facade
   --------------------------------------------------------------------------- */
.yt-facade {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 4px auto 7px;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.yt-facade__poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.yt-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin: -24px 0 0 -34px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(33, 33, 33, 0.8);
    cursor: pointer;
    transition: background 0.2s ease;
}

.yt-facade:hover .yt-facade__play {
    background: #f00;
}

/* CSS triangle "play" glyph */
.yt-facade__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -6px;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.yt-facade iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
