/* Sales Popup Notification Styles */
.sales-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
}

.sales-popup.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Success Circular Tick Icon */
.sales-popup-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: sales-tick-pulse 2s infinite;
}

@keyframes sales-tick-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.sales-popup-icon i {
    color: #22c55e;
    font-size: 16px;
}

/* Content Area */
.sales-popup-content {
    flex-grow: 1;
    text-align: left;
}

.sales-popup-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 3px;
    font-weight: 500;
}

.sales-popup-title strong {
    font-weight: 700;
    color: #ffffff;
}

.sales-popup-title span.highlight {
    color: #22c55e;
    font-weight: 700;
}

.sales-popup-time {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    display: block;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .sales-popup {
        bottom: 16px;
        left: 16px;
        max-width: calc(100vw - 32px);
        padding: 12px 14px;
        gap: 12px;
    }
    
    .sales-popup-title {
        font-size: 12.5px;
    }
    
    .sales-popup-icon {
        width: 36px;
        height: 36px;
    }
    
    .sales-popup-icon i {
        font-size: 14px;
    }
}
