.zoom-lens {
    position: absolute;
    border: 2px solid rgba(193, 163, 98, 0.8);
    background: rgba(193, 163, 98, 0.1);
    cursor: none;
    pointer-events: none;
    z-index: 100;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}

.zoom-result {
    position: absolute;
    border: 1px solid #e0e0e0;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
}

.zoomable-image,
.product-detail-image {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: zoom-in;
}

.zoomable-image:hover,
.product-detail-image:hover {
    position: relative;
    z-index: 10;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-image-container::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-image-container:hover::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

.zoom-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #c1a362;
    color: white;
}

.zoom-close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .zoom-lens,
    .zoom-result {
        display: none;
    }

    .zoomable-image,
    .product-detail-image {
        cursor: default;
    }
    
    .product-image-container::after {
        display: none;
    }
}

@media (hover: none) {
    .zoom-lens,
    .zoom-result {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zoomable-image,
    .product-detail-image {
        transition: none;
    }
    
    .zoom-overlay {
        transition: none;
    }
}

