.sales-urgency-popup-wrap {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999999;
            direction: rtl;
            text-align: right;
            max-width: 380px;
            width: calc(100% - 40px);
            font-family: inherit;
            animation: supSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .sup-content-card {
            background: rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
            padding: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
            position: relative;
            transition: all 0.3s ease;
        }
        [data-theme="dark"] .sup-content-card {
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }
        .sup-image-col {
            flex-shrink: 0;
            width: 54px;
            height: 54px;
            border-radius: 8px;
            overflow: hidden;
            background: #f1f5f9;
            border: 1px solid rgba(0,0,0,0.05);
        }
        [data-theme="dark"] .sup-image-col {
            background: #1e293b;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .sup-image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .sup-text-col {
            flex-grow: 1;
            padding-left: 15px;
        }
        .sup-title {
            font-size: 12px;
            color: #1e293b;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 4px;
        }
        [data-theme="dark"] .sup-title {
            color: #f1f5f9;
        }
        .sup-title a {
            color: var(--color-accent, #2563eb);
            text-decoration: none;
            font-weight: 600;
        }
        .sup-meta {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sup-verified {
            font-size: 10px;
            color: #10b981;
            font-weight: 700;
        }
        .sup-pulse-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #10b981;
            position: relative;
        }
        .sup-pulse-dot::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: 50%;
            background: #10b981;
            animation: supPulse 1.5s infinite;
        }
        .sup-close-btn {
            position: absolute;
            top: 8px;
            left: 8px;
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 16px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            transition: color 0.2s;
        }
        .sup-close-btn:hover {
            color: #ef4444;
        }
        @keyframes supSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        @keyframes supSlideOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
        }
        @keyframes supPulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(3); opacity: 0; }
        }