.ncr-popup-close {
    position: absolute;
    top: 6px;
    left: 10px;
    font-size: 24px;
    color: #e94e4e;
    cursor: pointer;
    z-index: 99;
    font-weight: bold;
    transition: color 0.2s;
}
.ncr-popup-close:hover {
    color: #222;
}
#ncr-popup-notify.ncr-popup-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 300px;
    height: 100px;
    background: #fff;
    box-shadow: 0 4px 24px 4px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.07); /* سایه کم رنگ مشکی */
    border-radius: 12px;
    display: flex;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    opacity: 0.98;
    direction: rtl;
    transition: box-shadow 0.2s;
}
#ncr-popup-notify.ncr-popup-push {
    animation: ncrPushRight 0.5s;
}
@keyframes ncrPushRight {
    0% { transform: translateX(-350px); opacity: 0;}
    100% { transform: translateX(0); opacity: 1;}
}
#ncr-popup-notify .ncr-popup-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.ncr-popup-image {
    width: 38%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}
.ncr-popup-image img {
    max-width: 96%;
    max-height: 92%;
    border-radius: 8px;
    display: block;
}
.ncr-popup-content {
    width: 62%;
    padding: 0 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ncr-popup-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ncr-popup-excerpt {
    font-size: 0.97em;
    color: #555;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
}
#ncr-popup-notify:hover {
    box-shadow: 0 8px 32px 8px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.09);
}
/* موبایل - عرض کامل پایین */
@media (max-width: 700px) {
    #ncr-popup-notify.ncr-popup-container {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        min-width: unset !important;
        max-width: unset !important;
        border-radius: 0;
        bottom: 0 !important;
        height: 90px;
    }
    .ncr-popup-image {
        width: 35%;
    }
    .ncr-popup-content {
        width: 65%;
        padding: 0 8px;
    }
}