/* Purchase Notifications */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    opacity: 0;
}

.purchase-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notification-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.notification-product {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.notification-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 8px;
}

.notification-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notification-image {
    width: 100px;
    min-height: 100%;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notification-close {
    display: none;
}

/* Stack multiple notifications */
.purchase-notification {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease, bottom 0.3s ease;
}

.purchase-notification.stacked-1 {
    bottom: 130px;
}

.purchase-notification.stacked-2 {
    bottom: 260px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: calc(100% - 20px);
        bottom: 10px;
    }
    
    .purchase-notification.stacked-1 {
        bottom: 110px;
    }
    
    .purchase-notification.stacked-2 {
        bottom: 220px;
    }
    
    .notification-content {
        gap: 12px;
    }
    
    .notification-image {
        width: 80px;
        min-height: 100%;
    }
    
    .notification-title {
        font-size: 10px;
    }
    
    .notification-product {
        font-size: 14px;
    }
    
    .notification-time {
        font-size: 10px;
    }
    
    .notification-location {
        font-size: 10px;
    }
}
