/* Khung ngoài full */
.product-photo-wrapper {
    width: 100%;
    background: var(--color-white);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Khung chứa ảnh */
.product-photo-card {
    width: 100%;
    max-width: 300px;
}

/* Ảnh */
.product-photo-img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 18px;
}

/* Khung popup */
.product-photo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 999999;
}

.product-photo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.product-photo-lightbox-img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .5);
}

.product-photo-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--color-white);
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
}

.product-photo-img {
    cursor: zoom-in;
}

body.product-photo-lock {
    overflow: hidden;
}

/* Tablet */
@media (max-width:991px) {
    .product-photo-card {
        max-width: 360px;
    }
}

/* Mobile */
@media (max-width:767px) {
    .product-photo-wrapper {
        border-radius: 20px;
    }

    .product-photo-card {
        max-width: 300px;
    }

    .product-photo-img {
        border-radius: 14px;
    }
	
	.product-photo-lightbox-img {
        max-width: 95vw;
        max-height: 82vh;
    }

    .product-photo-close {
        font-size: 34px;
        top: 12px;
        right: 18px;
    }
}

/* Mobile nhỏ */
@media (max-width:480px) {
    .product-photo-card {
        max-width: 250px;
    }
}