.gallery-container{
  max-width:800px;
  margin:0px auto;
}

        .main-slider {
            width: 100%;
            margin-bottom: 20px;
        }
        
        .main-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .slide-image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            background: #000;
        }
        
        .slide-image {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .slide-content {
            width: 100%;
            padding: 15px;
            background: #222;
            text-align: center;
        }
        
        .slide-title {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            margin-bottom: 5px;
            color: #fff;
        }
        
        .slide-description {
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            color: #ddd;
        }
        
        .thumbnails-wrapper {
            width: 100%;
            background: rgba(0,0,0,0.7);
            padding: 10px 0;
            overflow: hidden;
        }
        
        .thumbnails-slider {
            width: 100%;
            height: 100px;
            padding: 0 20px;
        }
        
        .thumbnail-slide {
            height: 80px;
            width: 120px !important;
            opacity: 0.5;
            transition: opacity 0.3s;
            cursor: pointer;
            border-radius: 4px;
            margin-right: 10px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #000;
            flex-shrink: 0;
        }
        
        .thumbnail-slide:last-child {
            margin-right: 0;
        }
        
        .thumbnail-slide img {
            height: 100%;
            width: auto;
            max-width: none;
        }
        
        .thumbnail-slide:hover {
            opacity: 0.8;
        }
        
        .swiper-slide-thumb-active {
            opacity: 1 !important;
            border: 2px solid #fff;
        }
        
        .swiper-button-next, 
        .swiper-button-prev {
            color: #fff;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        
        .swiper-button-next:after, 
        .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .thumbnails-slider {
                height: 80px;
            }
            
            .thumbnail-slide {
                height: 60px;
                width: 90px !important;
            }
            
        }
        
        @media (max-width: 480px) {
            .gallery-container {margin:0;}

            .swiper-button-next, 
            .swiper-button-prev {
                display: none;
            }

            .thumbnails-slider {
                height: 70px;
                padding: 0 10px;
            }
            
            .thumbnail-slide {
                height: 50px;
                width: 70px !important;
                margin-right: 5px;
            }
        }
