/* ============================================
   PRODUCT IMAGE MAGNIFIER
   ============================================ */

/* Zoom Container */
.zoom-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    cursor: zoom-in;
}

.zoom-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: none;
}

/* Gallery Thumbnails */
.product_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.pgImg {
    flex: 0 0 calc(20% - 8px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.pgImg:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.pgImg.active {
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.pgImg img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .pgImg {
        flex: 0 0 calc(25% - 8px);
    }
}

@media (max-width: 480px) {
    .pgImg {
        flex: 0 0 calc(33.33% - 8px);
    }
}