/* Video Facade Styles */
.video-facade {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    cursor: pointer;
    background-color: #000;
    overflow: hidden !important;
    display: block !important;
    z-index: 5;
}

.video-facade img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.video-facade:hover img {
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.video-facade-play {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 65px;
    height: 65px;
    background: #ffbc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 0 30px rgba(255, 188, 0, 0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    pointer-events: none;
    /* Let the facade handle the click */
}

.video-facade:hover .video-facade-play {
    transform: translate(-50%, -50%) scale(1.15) !important;
    background: #ffcc33;
}

.video-facade-play i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

.video-facade iframe,
.video-facade .video-facade-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
    z-index: 100 !important;
    pointer-events: none !important;
}

/* Hero slider Shorts — tam görünüm, zoom yok */
.video-facade--short {
    cursor: default;
}

.video-facade--short img,
.video-facade--short .video-facade-poster {
    object-fit: contain !important;
    background-color: #000;
}

.video-facade--short iframe,
.video-facade--short .video-facade-iframe {
    transform: translate(-50%, -50%) !important;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.video-facade--short.video-playing iframe,
.video-facade--short.video-playing .video-facade-iframe {
    opacity: 1;
}

.video-facade--short .video-facade-poster {
    z-index: 15 !important;
    opacity: 1 !important;
}

.video-facade--short.video-loading .video-facade-poster {
    opacity: 1 !important;
}

.video-facade--short.video-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 18;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
    background-size: 220% 100%;
    animation: videoFacadeShimmer 1.4s ease-in-out infinite;
}

@keyframes videoFacadeShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.video-facade--short.video-playing .video-facade-poster {
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.video-facade--short .video-facade-play {
    display: none !important;
}

.video-facade--short.video-playing:hover img,
.video-facade--short.video-playing:hover .video-facade-poster {
    transform: translate(-50%, -50%) !important;
}

@media (prefers-reduced-motion: reduce) {
    .video-facade--short.video-loading::after {
        animation: none;
        background: rgba(255, 255, 255, 0.04);
    }
}