/* Estilos da Notificação Flutuante */
#sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background-color: #fffceb; /* Cor de fundo creme suave conforme o modelo */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

#sales-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #f0f0f0;
}

.notification-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-content {
    flex-grow: 1;
}

.notification-header {
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.customer-name {
    font-weight: 700;
    color: #222;
}

.customer-location {
    color: #666;
    font-weight: 400;
    font-size: 13px;
}

.comprou {
    font-size: 14px;
    color: #8e7cc3; /* Cor roxa suave para o produto conforme o modelo */
    font-weight: 600;
    margin-bottom: 4px;
}

.product-info {
    font-size: 14px;
    color: #8e7cc3; /* Cor roxa suave para o produto conforme o modelo */
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-footer {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
    fill: #888;
    margin-right: 3px;
}

.close-notification {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    color: #aaa;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.close-notification:hover {
    color: #666;
}

/* Responsividade para Mobile */
@media (max-width: 480px) {
    #sales-notification {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
    }
}
