/* Estilos para el indicador de carga */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    color: #fff;
    font-size: 3rem;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Animación para la aparición suave de la imagen del producto */
#productImage {
    transition: opacity 0.4s ease-in-out;
}

/* Estilo adicional para el placeholder de imagen */
.product-image-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.placeholder-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ccc;
}

.placeholder-text {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}
