/* Product Page & Image Zoom Lightbox Styles */
.product-gallery-container {
    position: relative;
}

.main-image-zoom-box {
    width: 100%;
    height: 380px;
    background-color: #ffffff;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-zoom-img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
}

.lightbox-trigger-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--purple-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb-img:hover, 
.product-thumb-img.active {
    border-color: var(--purple-primary);
    transform: scale(1.05);
}

.lightbox-modal-img {
    transition: transform 0.3s ease;
    max-height: 75vh;
}