/* ========== PRODUCT IMAGE SLIDER WITH SWIPER ========== */
.gobius-landing .model-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gobius-landing .product-swiper {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.gobius-landing .product-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.gobius-landing .product-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Стрелки Swiper - скрыты по умолчанию */
.gobius-landing .model-image:hover .swiper-button-prev,
.gobius-landing .model-image:hover .swiper-button-next {
    opacity: 1;
}

.gobius-landing .product-swiper .swiper-button-prev,
.gobius-landing .product-swiper .swiper-button-next {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.gobius-landing .product-swiper .swiper-button-prev::after,
.gobius-landing .product-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.gobius-landing .product-swiper .swiper-button-prev:hover,
.gobius-landing .product-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Pagination Swiper */
.gobius-landing .product-swiper .swiper-pagination {
    bottom: 20px;
}

.gobius-landing .product-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgb(39, 34, 34);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.gobius-landing .product-swiper .swiper-pagination-bullet-active {
    background: white;
    border-color: #1c5fa1;
    transform: scale(1.3);
}

/* Иконка увеличения */
.gobius-landing .model-image:hover .zoom-icon {
    opacity: 1;
}

.gobius-landing .zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.gobius-landing .zoom-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.15);
}

/* ========== LIGHTBOX (Полноэкранный режим) ========== */
.gobius-landing .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gobius-landing .lightbox.active {
    display: flex;
}

.gobius-landing .lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
}

.gobius-landing .lightbox-swiper {
    width: 100%;
    height: 100%;
}

.gobius-landing .lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gobius-landing .lightbox-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Кнопка закрытия */
.gobius-landing .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gobius-landing .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Стрелки lightbox */
.gobius-landing .lightbox-swiper .swiper-button-prev,
.gobius-landing .lightbox-swiper .swiper-button-next {
    color: white;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.gobius-landing .lightbox-swiper .swiper-button-prev::after,
.gobius-landing .lightbox-swiper .swiper-button-next::after {
    font-size: 30px;
}

.gobius-landing .lightbox-swiper .swiper-button-prev:hover,
.gobius-landing .lightbox-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Счетчик слайдов в lightbox */
.gobius-landing .lightbox-swiper .swiper-pagination {
    color: white;
    font-size: 18px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .gobius-landing .product-swiper .swiper-button-prev,
    .gobius-landing .product-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .gobius-landing .product-swiper .swiper-button-prev::after,
    .gobius-landing .product-swiper .swiper-button-next::after {
        font-size: 16px;
    }
    
    .gobius-landing .lightbox-swiper .swiper-button-prev,
    .gobius-landing .lightbox-swiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .gobius-landing .lightbox-swiper .swiper-button-prev::after,
    .gobius-landing .lightbox-swiper .swiper-button-next::after {
        font-size: 24px;
    }
    
    .gobius-landing .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
