/**
 * File Path: assets/css/front/mbs-front-modal.css
 * Catalog Order Now Modal (unscoped from .mbs-wrapper)
 * Component of mbs-front.css — extracted Session 94.
 * Enqueued by MBS_Front_Assets with dep: mbs-front.
 */
/* ==========================================================================
   Catalog Order Now Modal — intentionally unscoped from .mbs-wrapper
   because position:fixed must escape any containing block.
   ========================================================================== */
.mbs-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbs-modal-content {
    background: var(--mbs-card-bg, #fff);
    max-width: 480px;
    width: 90%;
    padding: 24px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mbs-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--mbs-text-light, #666);
    background: none;
    border: none;
}
