/* gallery-lightbox.css */
/* ギャラリーライトボックス用CSS */

.purimall-gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.purimall-gallery-lightbox-modal {
    position: relative;
    /* 画像が画面いっぱいになりすぎないように上限を調整 */
    max-width: min(90vw, 900px);
    max-height: 90vh;
    text-align: center;
    animation: zoomIn 0.3s ease-in-out;
}

.purimall-gallery-lightbox-image {
    /* モーダル内での画像サイズを適切に収める */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.purimall-gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 100000;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .purimall-gallery-lightbox-modal {
        /* スマホでは少し広めだが、フルスクリーンになりすぎない程度に調整 */
        max-width: 96% !important;
        max-height: 90vh !important;
    }
    
    .purimall-gallery-lightbox-close {
        top: -35px !important;
        font-size: 25px !important;
    }
}

