/* ======================================== */
/* СТИЛИ ДЛЯ ГАЛЕРЕИ ПРОИЗВОДСТВА */
/* ======================================== */

/* Контейнер галереи */
.production-gallery {
    margin: 25px 0;
    overflow: hidden;
}

/* Большое первое фото */
.production-gallery__main {
    margin-bottom: 15px;
}

.production-gallery__main-link {
    display: block;
    cursor: pointer;
}

.production-gallery__main-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.production-gallery__main-img:hover {
    opacity: 0.9;
}

/* Контейнер для миниатюр */
.production-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

/* Ссылки миниатюр */
.production-gallery__thumb-link {
    display: inline-block;
    cursor: pointer;
}

/* Миниатюры */
.production-gallery__thumb-img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.production-gallery__thumb-img:hover {
    opacity: 0.7;
    border-color: #188b30;
    transform: scale(1.03);
}

/* ======================================== */
/* СТИЛИ ДЛЯ ВИДЕО */
/* ======================================== */

.production-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0 30px;
}

.production-videos__item {
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s ease;
}

.production-videos__item:hover {
    transform: translateY(-5px);
}

.production-videos__iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.production-videos__caption {
    color: #188b30;
    text-align: left;
    margin-top: 12px;
    font-weight: 500;
    font-size: 14px;
}

/* ======================================== */
/* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */
/* ======================================== */

@media (max-width: 768px) {
    /* Миниатюры одинакового размера - по 3 в ряд */
    .production-gallery__thumb-img {
        width: calc(33.33% - 6px);
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    
    .production-gallery__thumbs {
        gap: 6px;
    }
    
    /* Видео в один столбец */
    .production-videos__item {
        min-width: 100%;
    }
    
    /* Скрываем миниатюры fancybox на мобильных */
    .fancybox-thumbs {
        display: none !important;
    }
    
    .fancybox-show-thumbs .fancybox-inner {
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Увеличиваем кнопки на мобильных */
    .fancybox-navigation .fancybox-button {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 550px) {
    /* На маленьких телефонах миниатюры по 2 в ряд */
    .production-gallery__thumb-img {
        width: calc(50% - 4px);
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
}