.dge-stock-hidden {
    display: none !important;
}

/* Loading shimmer on stock-qty container */
.dge-stock-loading {
    position: relative;
    min-height: 36px;
    overflow: hidden;
}

.dge-stock-loading > * {
    visibility: hidden;
}

.dge-stock-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: dge-stock-shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes dge-stock-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
