.cfy-push-popup {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 340px;
    background: #ffffff;
    border: 1px solid #e8e0d8;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    padding: 14px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.cfy-push-popup-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cfy-push-popup-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.cfy-push-popup-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
}

.cfy-push-popup-actions {
    display: flex;
    gap: 8px;
}

.cfy-push-btn {
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.cfy-push-btn-allow {
    background: #ff6b35;
    color: #fff;
}

.cfy-push-btn-allow:hover {
    background: #e55a2b;
}

.cfy-push-btn-later {
    background: #f5f5f5;
    color: #555;
}

.cfy-push-btn-later:hover {
    background: #eee;
}

body.dark .cfy-push-popup {
    background: #1e1e1e;
    border-color: #333;
}

body.dark .cfy-push-popup-title {
    color: #fff;
}

body.dark .cfy-push-btn-later {
    background: #2a2a2a;
    color: #ccc;
}

body.dark .cfy-push-btn-later:hover {
    background: #333;
}

@media (max-width: 480px) {
    .cfy-push-popup {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}
