/* Náhľad videa v produktovej galérii */
.stevula-video-thumbnail {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.stevula-video-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.stevula-video-thumbnail::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

.stevula-video-thumbnail::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: calc(50% + 2px);
    top: 50%;
    transform: translate(-50%, -50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #111;
}

.stevula-product-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000;
}

.stevula-product-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.product-video-parameter-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .stevula-video-thumbnail::after {
        width: 36px;
        height: 36px;
    }
}