/* ── Modal Sin Stock ─────────────────────────────────────────────────────── */
.no-stock-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, 0.75); */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: #01426a;
}

.no-stock-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.no-stock-modal {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5); */
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.no-stock-overlay.is-visible .no-stock-modal {
    transform: scale(1);
}

.no-stock-modal__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}