/* Sales Notification */
.aws-sales-notification {
    position: fixed;
    z-index: 9999;
    max-width: 450px;
    background: var(--aws-sn-bg, #fff);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.aws-sales-notification.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aws-sales-notification--bottom-left { bottom: 20px; left: 20px; }
.aws-sales-notification--bottom-right { bottom: 20px; right: 20px; }
.aws-sales-notification--top-left { top: 20px; left: 20px; }
.aws-sales-notification--top-right { top: 20px; right: 20px; }

.aws-sales-notification__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.aws-sales-notification__close:hover { color: #333; }

.aws-sales-notification__link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.aws-sales-notification__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.aws-sales-notification__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.aws-sales-notification__content {
    flex: 1;
    min-width: 0;
}

.aws-sales-notification__customer {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.aws-sales-notification__product {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aws-sales-notification__time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .aws-sales-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
