.product-detail__main-image {
    cursor: zoom-in;
}

.product-detail__zoom-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 6px;
}

.image-zoom-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(20, 18, 17, 0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-zoom-overlay--active {
    display: flex;
}

.image-zoom-overlay__stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
}

.image-zoom-overlay__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.05s ease-out;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.image-zoom-overlay__close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.image-zoom-overlay__close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .image-zoom-overlay__close {
        top: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
    }
}
