/* Modern Fake Sale Notification - Bottom Left Corner (Cross-Browser) */
.fake-sale-notification {
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 280px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.08);
    padding: 12px;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    z-index: 99999;
    transform: translateX(-120%);
    transition: transform 0.5s ease-out, opacity 0.4s ease;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    opacity: 0;
    display: flex;
    animation: none !important; /* Remove conflicting animations */
}

.fake-sale-notification.active {
    transform: translateX(0);
    opacity: 1;
}

/* Notification content layout */
.fake-sale-notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Product image styling */
.fake-sale-notification-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Product details area */
.fake-sale-notification-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* Product name */
.fake-sale-notification-product {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
}

/* Meta information container */
.fake-sale-notification-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #555555;
    line-height: 1.4;
}

/* Price highlight - RED */
.fake-sale-notification-price {
    font-weight: 700;
    color: #ff0000;
    white-space: nowrap;
}

/* Time badge */
.fake-sale-notification-time {
    color: #666666;
    white-space: nowrap;
}

/* Purchaser info - City in BLUE */
.fake-sale-notification-purchaser {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #555555;
    margin-top: 3px;
}

.fake-sale-notification-purchaser i {
    margin-right: 4px;
    color: #555555;
}

.fake-sale-notification-purchaser .city {
    color: #0066cc;
    font-weight: 600;
    margin-left: 3px;
}

/* Close button */
.fake-sale-notification-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
    background: rgba(0, 0, 0, 0.05);
    color: #666666;
    border: none;
    outline: none;
    padding: 0;
    line-height: 1;
}

.fake-sale-notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .fake-sale-notification {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        max-width: 260px;
        padding: 10px;
    }
    
    .fake-sale-notification-image {
        width: 45px;
        height: 45px;
    }
    
    .fake-sale-notification-product {
        font-size: 12px;
    }
    
    .fake-sale-notification-meta {
        font-size: 10px;
    }
    
    .fake-sale-notification-purchaser {
        font-size: 10px;
    }
}

/* Edge/Firefox specific fixes */
@supports (-ms-ime-align:auto) {
    /* Edge specific fixes */
    .fake-sale-notification {
        transition: transform 0.5s ease-out;
    }
}

@-moz-document url-prefix() {
    /* Firefox specific fixes */
    .fake-sale-notification {
        transition: transform 0.5s ease-out;
    }
}