/* =========================================================
   BeanJars Mobile Notice Popup (Enterprise CSS)
   - No inline styles
   - No !important
   - Theme: orange, rounded, clean
   ========================================================= */

.bj-mobile-notice-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
}

.bj-mobile-notice-overlay.is-open {
    display: flex;
}

.bj-mobile-notice-card {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.bj-mobile-notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #ff6f3c;
    color: #ffffff;
}

.bj-mobile-notice-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 16px;
    line-height: 1;
}

.bj-mobile-notice-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.bj-mobile-notice-body {
    padding: 14px 16px 16px 16px;
    color: #222;
}

.bj-mobile-notice-text {
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.bj-mobile-notice-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 16px 16px 16px;
}

.bj-mobile-notice-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.bj-mobile-notice-btn--primary {
    background: #ff6f3c;
    color: #fff;
}

.bj-mobile-notice-btn--ghost {
    background: rgba(0, 0, 0, 0.06);
    color: #222;
}