/* ================================================
   Productos - AptonerVS
   ================================================ */

.miniatura {
    transition: all 0.2s ease;
    cursor: pointer;
    opacity: 0.6;
    height: 80px;
    width: 80px;
}

.miniatura:hover,
.miniatura.active {
    border-color: var(--sys-primary) !important;
    box-shadow: 0 0 0 2px rgba(var(--sys-primary-raw), 0.15);
    opacity: 1;
}

#contenedorMiniaturas::-webkit-scrollbar {
    display: none;
}

#contenedorMiniaturas {
    -ms-overflow-style: none;
    overflow-x: scroll;
    scrollbar-width: none;
}

.imagen-principal-container {
    position: relative;
    overflow: visible !important;
    cursor: crosshair;
    height: 100%;
}

.zoom-lens {
    position: absolute;
    border: 1.5px solid var(--sys-bg-surface);
    background-color: rgba(35, 118, 50, 0.1);
    width: 140px;
    height: 140px;
    cursor: crosshair;
    display: none;
    pointer-events: none;
    z-index: 10;
}

.zoom-result {
    position: fixed;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    overflow: hidden;
    z-index: 1050;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .zoom-lens,
    .zoom-result {
        display: none !important;
    }
}
