/* Premium Gen Z Style Notification */
.fp-notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.fp-notification {
    pointer-events: auto;
    width: 360px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 
                0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.fp-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #2F6EDB, #5C9FFF);
}

.fp-notification.show {
    transform: translateX(0);
}

.fp-notification.hide {
    transform: translateX(400px);
    opacity: 0;
}

.fp-notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #2F6EDB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(47, 110, 219, 0.2);
}

.fp-notification-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.fp-notification-content {
    flex-grow: 1;
    min-width: 0;
}

.fp-notification-title {
    font-weight: 700;
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-notification-body {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-notification-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.2s;
    flex-shrink: 0;
}

.fp-notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #4B5563;
}

/* Dark Mode support if needed */
@media (prefers-color-scheme: dark) {
    .fp-notification {
        background: rgba(31, 41, 55, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .fp-notification-title { color: #F9FAFB; }
    .fp-notification-body { color: #D1D5DB; }
}
