/* Основной контейнер галереи */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
}

/* Основное медиа */
.gallery-main {
    position: relative;
    width: 69%;
    max-width: 600px;
    margin-bottom: 20px;
    overflow: hidden;
}

.main-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
}

.main-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Кнопки навигации */
.gallery-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-button.prev {
    left: 10px;
}

.gallery-button.next {
    right: 10px;
}

/* Появление кнопок при наведении */
.gallery-main:hover .gallery-button {
    opacity: 1;
}

/* Миниатюры */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: #007bff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .gallery-main {
        width: 100%;
    }

    .thumbnail {
        width: 80px;
        height: 60px;
    }
}
