/* Product Image Zoom Styles */
.product-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-zoom-container img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.product-zoom-container:hover img {
    transform: scale(1.5);
}

.product-zoom-container::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-zoom-container:hover::after {
    opacity: 1;
}

/* Enhanced zoom for better inspection */
.product-zoom-container.enhanced-zoom:hover img {
    transform: scale(2);
    transform-origin: center;
}

/* Smooth zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}

.product-zoom-container.animate-zoom:hover img {
    animation: zoomIn 0.3s ease forwards;
}