/* FluentCart Random Notifications - Premium Styling */

#fc-notification-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 320px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    transform: translateY(150%);
    opacity: 0;
}

#fc-notification-popup.fc-notification-visible {
    transform: translateY(0);
    opacity: 1;
}

#fc-notification-popup .fc-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fc-notification-popup .fc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fc-notification-popup .fc-content {
    flex-grow: 1;
    min-width: 0;
    text-align: right; /* Move button to the right */
}

#fc-notification-popup .fc-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; /* Keep title left-aligned */
}

#fc-notification-popup .fc-price {
    font-size: 13px;
    color: #e74c3c;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left; /* Keep price left-aligned */
}

#fc-notification-popup .fc-link-btn {
    background: #e74c3c; /* Red color */
    color: #fff !important;
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

#fc-notification-popup .fc-link-btn:hover {
    background: #c0392b; /* Darker red */
    transform: translateY(-1px);
    color: #fff !important;
}

#fc-notification-popup .fc-add-to-cart:active {
    transform: translateY(0);
}

#fc-notification-popup .fc-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #999;
    transition: all 0.2s ease;
}

#fc-notification-popup .fc-close:hover {
    background: rgba(0,0,0,0.1);
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #fc-notification-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
    }
}
