.angie-fpp-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    background-color: #ffffff;
    border-left: 5px solid #0056b3;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 340px;
    max-width: calc(100vw - 60px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    pointer-events: none;
}

.angie-fpp-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.angie-fpp-container.hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    pointer-events: none;
}

.angie-fpp-content {
    display: flex;
    align-items: center;
    padding: 16px;
    position: relative;
}

.angie-fpp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #f0f7ff;
    color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.angie-fpp-text {
    flex-grow: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-right: 15px;
}

.angie-fpp-text p {
    margin: 0;
    line-height: 1.4;
}

.angie-fpp-buyer {
    font-size: 13px;
    color: #555;
}

.angie-fpp-buyer span {
    font-weight: 600;
    color: #222;
}

.angie-fpp-product {
    font-size: 15px;
    font-weight: 700;
    color: #0056b3;
    margin: 4px 0 !important;
}

.angie-fpp-time {
    font-size: 12px;
    color: #888;
}

.angie-fpp-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.angie-fpp-close:hover {
    color: #666;
}
