/* Block Product Video Top Text Styles */
.block-product-video-top-text {
    background: #000;
    position: relative;
    padding: 80px 0;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); 
    margin-top: -100px;
}

.block-product-video-top-text .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-block {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    color: #ff0000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

.description {
    color: #ffffff;
    line-height: 1.6;
}

.description strong {
    font-weight: 700;
}

.video-block {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .block-product-video-top-text {
        padding: 60px 0;
    }
    
    .text-block {
        margin-bottom: 60px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .title {
        font-size: 22px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .video-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .block-product-video-top-text {
        padding: 40px 0;
    }
    
    .text-block {
        margin-bottom: 40px;
    }
    
    .subtitle {
        font-size: 12px;
    }
    
    .title {
        font-size: 22px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .video-container {
        height: 250px;
    }
}
