/* Warehouse Gallery Styles */

.naxel-warehouse-gallery {
    display: flex;
    width: 100%;
    min-height: 500px;
    position: relative;
}

/* 满屏模式 - 只让右侧图片区域延伸到屏幕边缘 */
.naxel-warehouse-gallery.gallery-fullwidth {
    overflow: visible;
}

.naxel-warehouse-gallery.gallery-fullwidth .warehouse-gallery {
    position: relative;
    width: auto !important;
    margin-right: calc(-50vw + 50%);
    max-width: none;
}

.warehouse-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.warehouse-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.warehouse-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warehouse-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.warehouse-navigation {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    padding: 0;
    line-height: 1;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-arrow:focus {
    outline: none;
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.warehouse-gallery {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.gallery-slider {
    display: flex;
    height: 100%;
    position: relative;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex-shrink: 0;
    height: 100%;
    transition: opacity 0.5s ease;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    color: #999;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .naxel-warehouse-gallery {
        min-height: 400px;
    }
    
    .warehouse-title {
        font-size: 36px;
    }
    
    .warehouse-subtitle {
        font-size: 14px;
    }
    
    .warehouse-description {
        font-size: 13px;
    }
    
    .nav-arrow {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .naxel-warehouse-gallery {
        flex-direction: column;
        min-height: auto;
        gap: 0 !important;
    }
    
    .warehouse-content {
        width: 100% !important;
        padding: 30px 20px 20px !important;
        order: 1;
        text-align: left;
    }
    
    .warehouse-gallery {
        width: 100% !important;
        min-height: 400px;
        order: 2;
        margin-right: 0 !important;
    }
    
    /* 满屏模式在移动端取消 */
    .naxel-warehouse-gallery.gallery-fullwidth .warehouse-gallery {
        margin-right: 0 !important;
    }
    
    .warehouse-title {
        font-size: 36px;
        margin-bottom: 20px !important;
        font-weight: 700;
        letter-spacing: 0;
    }
    
    .warehouse-subtitle {
        font-size: 14px;
        margin-bottom: 10px !important;
        font-weight: 600;
    }
    
    .warehouse-description {
        font-size: 14px;
        margin-bottom: 25px !important;
        line-height: 1.6;
        color: #666;
    }
    
    .warehouse-navigation {
        justify-content: flex-start;
        gap: 12px !important;
    }
    
    .nav-arrow {
        font-size: 28px;
        padding: 8px 12px;
        min-width: 48px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-arrow img {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* 移动端图片显示调整 - 显示1.2张图片 */
    .gallery-slider {
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .naxel-warehouse-gallery {
        min-height: auto;
    }
    
    .warehouse-content {
        padding: 25px 15px 15px !important;
    }
    
    .warehouse-title {
        font-size: 32px;
        margin-bottom: 15px !important;
        font-weight: 700;
    }
    
    .warehouse-subtitle {
        font-size: 13px;
        margin-bottom: 8px !important;
        font-weight: 600;
    }
    
    .warehouse-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px !important;
    }
    
    .nav-arrow {
        font-size: 26px;
        padding: 6px 10px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-arrow img {
        width: 26px !important;
        height: 26px !important;
    }
    
    .warehouse-navigation {
        gap: 10px !important;
    }
    
    .warehouse-gallery {
        min-height: 350px;
    }
    
    .gallery-slider {
        gap: 12px !important;
    }
}

/* 移动端横屏优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .naxel-warehouse-gallery {
        flex-direction: row;
    }
    
    .warehouse-content {
        width: 40% !important;
        order: 1;
    }
    
    .warehouse-gallery {
        width: 60% !important;
        order: 2;
    }
}
