/* ===== PRODUCT VIDEO GALLERY ===== */
.vpg-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
    margin: 0 auto;
    max-width: 1400px;
}

.vpg-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.vpg-header {
    text-align: center;
    margin-bottom: 60px;
}

.vpg-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: transparent;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.vpg-divider {
    width: 120px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: var(--border-radius-sm);
}

.vpg-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Галлерея видео - АДАПТИВНАЯ СЕТКА */
.vpg-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
    width: 100%;
}

.vpg-item {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid var(--color-gold);
    background: #000;
    transition: all 0.3s ease;
}

.vpg-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 144, 36, 0.2);
}

.vpg-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.vpg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Анимации (совместимость с animate.js) */
[data-animate] {
    opacity: 0;
    visibility: hidden;
}

[data-animate].animated {
    opacity: 1;
    visibility: visible;
}

[data-animate="fadeInDown"].animated {
    animation: fadeInDown 0.8s ease forwards;
}

[data-animate="fadeInUp"].animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .vpg-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    /* .vpg-item {
        height: 350px;
    } */
    
    .vpg-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .vpg-section {
        padding: 60px 0;
    }
    
    .vpg-header {
        margin-bottom: 40px;
    }
    
    .vpg-title {
        font-size: 2rem;
    }
    
    .vpg-subtitle {
        font-size: 1.1rem;
    }
    
    /* .vpg-item {
        height: 300px;
    } */
    
    .vpg-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .vpg-section {
        padding: 40px 0;
    }
    
    .vpg-title {
        font-size: 1.8rem;
    }
    
    .vpg-subtitle {
        font-size: 1rem;
    }
    
    /* .vpg-item {
        height: 250px;
    } */
    
    .vpg-container {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .vpg-title {
        font-size: 1.6rem;
    }
    
    /* .vpg-item {
        height: 220px;
    } */
}